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

debugging on Horeka

parent 38d06006
No related branches found
No related tags found
1 merge request!273fixed hopefully problem with computing displacement by depending mechassamble...
Pipeline #355327 failed
......@@ -103,7 +103,10 @@ def modifyJobskript(name,sdtN,j,sdt,args,add=0):
#output_file.write('module load compiler/gnu/8 mpi/openmpi/4.1\n')
output_file.write('export MPIRUN_OPTIONS="--bind-to core --map-by core -report-bindings"\n')
output_file.write('echo "${executable} running on ${SLURM_NTASKS_PER_NODE} tasks per node with ${SLURM_NNODES} nodes"\n')
args.update({'MechDeltaTime':sdt*2**(-j)})
if 'MechDeltaTime'in args:
args.update({'MechDeltaTime':args['MechDeltaTime']})
else:
args.update({'MechDeltaTime':sdt*2**(-j)})
args.update({'ElphyDeltaTime':sdt*2**(-j)})
output_file.write(Start(args))
#if args['ElphyProblem']=='BiVentricleWAProblem':
......@@ -205,13 +208,21 @@ def startAll():
startJobs(lL,tL,nL,sdt,'',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.6})
#startJobs(lL,tL,['GS'],sdt,'theta1/',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.5, 'CrankNicolsonTheta':1.0})
def startTimeStepTest():
pathToSave='../../data/Kopplung/TimeStepTest/'
lL=[1]
tL=[2]
nL=['SI']
startJobs(lL,tL,nL,sdt,'',{'Mesh':'TestBiventricleSimpleExcitation_smooth','ElphyProblem':'DeformedBiventricleCoarse','EndTime':0.16,'MechDeltaTime':0.0016,'AdaptiveTimeStepForMech':'true','AdaptiveTimeStepForMech':'true'})
if __name__=="__main__":
#startSIOC()
#startSI()
#startGS()
startAll()
startTimeStepTest()
......
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