Skip to content
Snippets Groups Projects
Commit 11c88d9f authored by Laura Lindner's avatar Laura Lindner
Browse files

hack to use biventricle_smooth but all others tackled as before

parent f084ce17
No related branches found
No related tags found
2 merge requests!181actual status of monodomain,!179added possibility to use different time integration schemes for ion...
Pipeline #124884 failed
......@@ -23,8 +23,8 @@ ElphySplittingMethod =Godunov #Strang, Stein,Godunov
#BiVentricleProblem,BiVentricleWAProblem,EllipsoidWAProblem
#ElphyProblem =FullHeartProblem
#ElphyProblem=EllipsoidProblem
ElphyProblem=BiVentricleWAProblem
ElphyProblem=BiVentricleProblem
#ElphyProblem=BiVentricleWAProblem
#ElphyProblem=EllipsoidWAProblem
#ElphyProblem =HexaTestProblem
......@@ -37,7 +37,7 @@ IextInPDE=1
#Glaettung von Anregung in Zeit: Stepfunction,Arctan,Tanh
ExternalCurrentSmoothingInTime = Arctan;
#Glättung Anregung im Raum: discrete, linear
ExternalCurrentSmoothingInSpace =discrete;
ExternalCurrentSmoothingInSpace =linear;
......
......@@ -431,9 +431,9 @@ void interpolateLagrangeData(Vector &vec, int degree) {
const auto &meshes = vec.GetDisc().GetMeshes();
std::string interpolation{};
config.get("ExternalCurrentSmoothingInSpace", interpolation);
//if (interpolation != "discrete"){
// smoothMeshData(meshes.coarseMesh(), vec);
//}
if (interpolation != "discrete" && meshes[0].Name()!="BiVentricle_smoothed"){
smoothMeshData(meshes.coarseMesh(), vec);
}
for (int i = 1, l = 2; i <= meshes.Level(); ++i, l *= 2) {
interpolateCellData(meshes[i - 1], meshes[i]);
......
Subproject commit 9ba1ccaad9e26d24b17eeca22a2f7713876e45a6
Subproject commit 5da9de89c9a3f57126881e993d9bae5fde75b798
......@@ -5,10 +5,3 @@ ventricle-test:
script:
- salloc -p cpuonly -t 00:10:00 -n 4 mpirun Elphy-M++ BiVentricleTest/start
ellipsoid-test:
extends: .benchmark_on_horeka
variables:
CMAKE_ARGS: '-DMPP_BUILD_TYPE=MppRelease'
script:
- salloc -p cpuonly -t 00:01:00 -n 4 mpirun Elphy-M++ TetraTest/start
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment