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

Merge branch 'convergenceTestsMonodomain' of git.scc.kit.edu:mpp/cardmech into...

Merge branch 'convergenceTestsMonodomain' of git.scc.kit.edu:mpp/cardmech into convergenceTestsMonodomain
parents 7c9705d3 ab5b2d5b
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 #124969 passed
......@@ -129,7 +129,7 @@ def table8():
listEvaluationPoints=[]
l0Path=pathBV+'SI0004/vtu/AT_l0j0.vtu'
#read.changeNumberOFCellsiInVTU(SI+'data/',[4],[1,2,3,4],1)
#plotTact:
plot=Plot(lL,tL,sdt,endTime,1,listEvaluationPoints)
backupArray=[[-1.0,59.295870358255655,57.96067339027709,57.5545764529468,57.468872878475665],[49.749577731126486,45.46817896679911,43.798303227582146,43.28796384626254,43.16367877136338],[44.95291943209599,40.81325902629804,39.09870508453703,38.55494553911038,38.41666873598738],[43.36173025251009,38.80735467113771,36.91194880075053,36.30816906164418,36.15129271842806],[42.583927617282406,37.81610107773048,35.8441826475743,35.229766544910895,35.07516596693433]]
......
......@@ -394,7 +394,6 @@ def RMSRefError(refDict,path,pathLevel0):
diff=abs(dict1[key]-refDict[key])
sumDiffSquares+=diff*diff
rmse=math.sqrt((1/len(evalPoints))*sumDiffSquares)
return rmse
def computeMeanTact(p,pathLevel0):
......
......@@ -67,7 +67,7 @@ def decideTime(level,j):
h=int(m/60)
m=m%60
elif level ==3:
h=2**(j+1)
h=2**(j)
elif level == 4:
h=2**(j)
if j==4:
......@@ -159,12 +159,20 @@ def startLI():
lL=[1]
tL=[0,1,2,3,4]
nL=['LI']
startJobs(lL,tL,nL,'',{'ElphyProblem':'BiVentricleWAProblem'})
sdt=0.0001
startJobs(lL,tL,nL,sdt,'',{'ElphyProblem':'BiVentricleWAProblem'})
def startGS():
lL=[3]
tL=[0,1,2,3,4]
nL=['GS']
sdt=0.0004
startJobs(lL,tL,nL,sdt,'',{'ElphyProblem':'BiVentricleWAProblem'})
if __name__=="__main__":
startSI()
#startSI()
#startLI()
startGS()
......
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