Loading 3_density_offset/density_offset.py +2 −2 Original line number Diff line number Diff line Loading @@ -8,9 +8,9 @@ from lib.push_data import push_data_to, copy_py_file_to def get_parametercollection(seed, offset): par = mn.ParameterCollection() nx = 8 # needs to == el**h nx = 64 # needs to == el**h ny = nx nz = 9 # need to be >= h +2 + o_set (+2 bc bound cond) nz = 8 + offset # need to be >= h +2 + o_set (+2 bc bound cond) n = nx*ny*nz par.set_N(n) par.set_Nx(nx) Loading Loading
3_density_offset/density_offset.py +2 −2 Original line number Diff line number Diff line Loading @@ -8,9 +8,9 @@ from lib.push_data import push_data_to, copy_py_file_to def get_parametercollection(seed, offset): par = mn.ParameterCollection() nx = 8 # needs to == el**h nx = 64 # needs to == el**h ny = nx nz = 9 # need to be >= h +2 + o_set (+2 bc bound cond) nz = 8 + offset # need to be >= h +2 + o_set (+2 bc bound cond) n = nx*ny*nz par.set_N(n) par.set_Nx(nx) Loading