split simulating and evaluating and stuff

This commit is contained in:
Dominik Demuth
2024-12-01 19:24:19 +01:00
parent 5b5aacff0b
commit e90c4c9543
5 changed files with 76 additions and 40 deletions

14
start_sims.py Normal file
View File

@@ -0,0 +1,14 @@
from python.helpers import *
#Simulation parameter
motion = 'IsotropicAngle'
distribution = 'Delta'
parameter = {
"angle": [10, 109.47],
}
parameter = prepare_rw_parameter(parameter)
for variation in parameter:
print(f"\nRun RW for {motion}/{distribution} with arguments {variation}\n")
run_sims(motion, distribution, ste=True, spectrum=False, **variation)