Compare commits
9 commits
main
...
tests/Grav
Author | SHA1 | Date | |
---|---|---|---|
3e81a3bd10 | |||
a12e1a5ab4 | |||
bd0e5f9ffc | |||
fdaf5e9086 | |||
1ca9b4fb09 | |||
78e1b4cacf | |||
b0c106bd8b | |||
9d6f8f9de2 | |||
928ea5eee8 |
1 changed files with 51 additions and 0 deletions
|
@ -47,6 +47,15 @@ def register_arguments_card(parser:ArgumentParser):
|
|||
parser.add_argument("--OutputFCsDensity", type=str, default=None, help="Output FCs density file.")
|
||||
parser.add_argument("--OutputFCsSnapshot", type=str, default=None, help="Output FCs snapshot file.")
|
||||
parser.add_argument("--OutputRngStateLPT", type=str, default=None, help="Output RNG state file.")
|
||||
## Tests with phiBCs and density
|
||||
parser.add_argument("--WriteGravPot", type=bool, default=False, help="Write gravitational potential.")
|
||||
parser.add_argument("--OutputGravitationalPotentialBase", type=str, default=None, help="Output gravitational potential base.")
|
||||
parser.add_argument("--MeshGravPot", type=int, default=None, help="Mesh for gravitational potential.")
|
||||
parser.add_argument("--WriteDensity", type=bool, default=False, help="Write density.")
|
||||
parser.add_argument("--OutputDensityBase", type=str, default=None, help="Output density base.")
|
||||
parser.add_argument("--MeshDensity", type=int, default=None, help="Mesh for density.")
|
||||
parser.add_argument("--LoadPhiBCs", type=bool, default=False, help="Load phiBCs.")
|
||||
parser.add_argument("--InputPhiBCsBase", type=str, default=None, help="Input phiBCs file base.")
|
||||
|
||||
|
||||
def register_arguments_card_for_ICs(parser:ArgumentParser):
|
||||
|
@ -118,6 +127,16 @@ def parse_arguments_card(parsed_args):
|
|||
OutputFCsDensity=parsed_args.OutputFCsDensity,
|
||||
OutputFCsSnapshot=parsed_args.OutputFCsSnapshot,
|
||||
OutputRngStateLPT=parsed_args.OutputRngStateLPT,
|
||||
## Tests with phiBCs and density
|
||||
WriteGravPot=parsed_args.WriteGravPot,
|
||||
OutputGravitationalPotentialBase=parsed_args.OutputGravitationalPotentialBase,
|
||||
MeshGravPot=parsed_args.MeshGravPot,
|
||||
WriteDensity=parsed_args.WriteDensity,
|
||||
OutputDensityBase=parsed_args.OutputDensityBase,
|
||||
MeshDensity=parsed_args.MeshDensity,
|
||||
LoadPhiBCs=parsed_args.LoadPhiBCs,
|
||||
InputPhiBCsBase=parsed_args.InputPhiBCsBase,
|
||||
## Cosmological parameters
|
||||
h=cosmo_dict["h"],
|
||||
Omega_m=cosmo_dict["Omega_m"],
|
||||
Omega_b=cosmo_dict["Omega_b"],
|
||||
|
@ -203,6 +222,17 @@ def parse_arguments_card(parsed_args):
|
|||
card_dict["OutputFCsSnapshot"] = main_dict["resultdir"]+"final_particles_"+main_dict["simname"]+".gadget3"
|
||||
if card_dict["OutputRngStateLPT"] is None:
|
||||
card_dict["OutputRngStateLPT"] = main_dict["workdir"]+"rng_state.h5"
|
||||
## Tests with phiBCs and density
|
||||
if card_dict["OutputGravitationalPotentialBase"] is None:
|
||||
card_dict["OutputGravitationalPotentialBase"] = main_dict["workdir"]+"gravpot_"+main_dict["simname"]
|
||||
if card_dict["MeshGravPot"] is None:
|
||||
card_dict["MeshGravPot"] = card_dict["N_PM_mesh"]
|
||||
if card_dict["OutputDensityBase"] is None:
|
||||
card_dict["OutputDensityBase"] = main_dict["workdir"]+"density_"+main_dict["simname"]
|
||||
if card_dict["MeshDensity"] is None:
|
||||
card_dict["MeshDensity"] = card_dict["N_PM_mesh"]
|
||||
if card_dict["InputPhiBCsBase"] is None:
|
||||
card_dict["InputPhiBCsBase"] = main_dict["workdir"]+"gravpot_tCOLA"
|
||||
|
||||
return card_dict
|
||||
|
||||
|
@ -321,6 +351,16 @@ def create_parameter_card_dict(
|
|||
OutputFCsDensity:str = 'fcs_density.h5',
|
||||
OutputFCsSnapshot:str = 'fcs_particles.gadget3',
|
||||
|
||||
## Tests with phiBCs and density
|
||||
WriteGravPot:bool = True,
|
||||
OutputGravitationalPotentialBase:str = 'gravitational_potential.h5',
|
||||
MeshGravPot:int = 128,
|
||||
WriteDensity:bool = False,
|
||||
OutputDensityBase:str = 'density.h5',
|
||||
MeshDensity:int = 128,
|
||||
LoadPhiBCs:bool = False,
|
||||
InputPhiBCsBase:str = 'gravitational_potential.h5',
|
||||
|
||||
## Cosmological parameters
|
||||
h:float = 0.6732,
|
||||
Omega_m:float = 0.302,
|
||||
|
@ -381,6 +421,17 @@ def create_parameter_card_dict(
|
|||
OutputLPTPotential1=OutputLPTPotential1,
|
||||
OutputLPTPotential2=OutputLPTPotential2,
|
||||
OutputTilesBase=OutputTilesBase,
|
||||
|
||||
# Tests with phiBCs and density
|
||||
WriteGravPot=int(WriteGravPot),
|
||||
OutputGravitationalPotentialBase=OutputGravitationalPotentialBase,
|
||||
MeshGravPot=MeshGravPot,
|
||||
WriteDensity=int(WriteDensity),
|
||||
OutputDensityBase=OutputDensityBase,
|
||||
MeshDensity=MeshDensity,
|
||||
LoadPhiBCs=int(LoadPhiBCs),
|
||||
InputPhiBCsBase=InputPhiBCsBase,
|
||||
|
||||
h=h,
|
||||
Omega_m=Omega_m,
|
||||
Omega_b=Omega_b,
|
||||
|
|
Loading…
Add table
Reference in a new issue