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

start all SIOC

parent b142d78c
No related branches found
No related tags found
1 merge request!273fixed hopefully problem with computing displacement by depending mechassamble...
Pipeline #300228 failed
import os
pathToSave='../../data/Kopplung/'
pathToSave='../../data/Kopplung/FullTest/'
dataPath='../'+pathToSave
......@@ -75,13 +75,16 @@ def decideTime(level,j):
h=0
m=0
if level <=3:
h=2**(j+2)
h=2**(j+1)+2
elif level==4:
h=2**(j+2)+2
else:
print('no level time defined')
#print(h,m)
#h=h*4
m=4*m
#m=4*m
if m>60:
h=h+int(m/60)
m=m%60
......@@ -182,12 +185,23 @@ def startGS():
nL=['GS']
sdt=0.0004
#startJobs(lL,tL,nL,sdt,'',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.5})
startJobs(lL,tL,nL,sdt,'theta1',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.5, 'CrankNicolsonTheta':1.0})
startJobs(lL,tL,nL,sdt,'theta1/',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.5, 'CrankNicolsonTheta':1.0})
def startAll():
lL=[1,2,3,4]
tL=[1,2,3,4]
sdt=0.0004
#nL=['SI','GS']
nL=['SIOC']
startJobs(lL,tL,nL,sdt,'',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.5})
#startJobs(lL,tL,['GS'],sdt,'theta1/',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.5, 'CrankNicolsonTheta':1.0})
if __name__=="__main__":
#startSIOC()
#startSI()
startGS()
#startGS()
startAll()
......
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