From 50d7590bb351425971f4ef85c949a52f8082c96e Mon Sep 17 00:00:00 2001 From: Matthieu Schaller <matthieu.schaller@durham.ac.uk> Date: Sun, 22 May 2016 19:17:04 +0100 Subject: [PATCH] Added the new parameter to all YAML files. --- examples/CosmoVolume/cosmoVolume.yml | 5 ++++- examples/ExternalPointMass/externalPointMass.yml | 5 ++++- examples/SedovBlast/sedov.yml | 6 +++--- examples/SodShock/sodShock.yml | 4 ++-- examples/UniformBox/uniformBox.yml | 5 ++++- examples/parameter_example.yml | 5 ++++- 6 files changed, 21 insertions(+), 9 deletions(-) diff --git a/examples/CosmoVolume/cosmoVolume.yml b/examples/CosmoVolume/cosmoVolume.yml index b857ce4a1e..56dca66839 100644 --- a/examples/CosmoVolume/cosmoVolume.yml +++ b/examples/CosmoVolume/cosmoVolume.yml @@ -1,4 +1,3 @@ - # Define the system of units to use internally. InternalUnitSystem: UnitMass_in_cgs: 1 # Grams @@ -32,6 +31,10 @@ Snapshots: UnitCurrent_in_cgs: 1 # Amperes UnitTemp_in_cgs: 1 # Kelvin +# Parameters governing the conserved quantities statistics +Statistics: + delta_time: 1e-2 # Time between statistics output + # Parameters for the hydrodynamics scheme SPH: resolution_eta: 1.2348 # Target smoothing length in units of the mean inter-particle separation (1.2348 == 48Ngbs with the cubic spline kernel). diff --git a/examples/ExternalPointMass/externalPointMass.yml b/examples/ExternalPointMass/externalPointMass.yml index 6d05cb5b43..cfc6f0ae6d 100644 --- a/examples/ExternalPointMass/externalPointMass.yml +++ b/examples/ExternalPointMass/externalPointMass.yml @@ -1,4 +1,3 @@ - # Define the system of units to use internally. InternalUnitSystem: UnitMass_in_cgs: 1.9885e33 # Grams @@ -32,6 +31,10 @@ Snapshots: UnitCurrent_in_cgs: 1 # Amperes UnitTemp_in_cgs: 1 # Kelvin +# Parameters governing the conserved quantities statistics +Statistics: + delta_time: 1e-2 # Time between statistics output + # Parameters for the hydrodynamics scheme SPH: resolution_eta: 1.2348 # Target smoothing length in units of the mean inter-particle separation (1.2348 == 48Ngbs with the cubic spline kernel). diff --git a/examples/SedovBlast/sedov.yml b/examples/SedovBlast/sedov.yml index 330ea51f4b..1f491c248f 100644 --- a/examples/SedovBlast/sedov.yml +++ b/examples/SedovBlast/sedov.yml @@ -1,4 +1,3 @@ - # Define the system of units to use internally. InternalUnitSystem: UnitMass_in_cgs: 1 # Grams @@ -32,9 +31,10 @@ Snapshots: UnitCurrent_in_cgs: 1 # Amperes UnitTemp_in_cgs: 1 # Kelvin +# Parameters governing the conserved quantities statistics Statistics: - delta_time: 1e-3 - + delta_time: 1e-3 # Time between statistics output + # Parameters for the hydrodynamics scheme SPH: resolution_eta: 1.2348 # Target smoothing length in units of the mean inter-particle separation (1.2348 == 48Ngbs with the cubic spline kernel). diff --git a/examples/SodShock/sodShock.yml b/examples/SodShock/sodShock.yml index 8818d4b826..d61c593f10 100644 --- a/examples/SodShock/sodShock.yml +++ b/examples/SodShock/sodShock.yml @@ -1,4 +1,3 @@ - # Define the system of units to use internally. InternalUnitSystem: UnitMass_in_cgs: 1 # Grams @@ -32,9 +31,10 @@ Snapshots: UnitCurrent_in_cgs: 1 # Amperes UnitTemp_in_cgs: 1 # Kelvin +# Parameters governing the conserved quantities statistics Statistics: delta_time: 1e-2 # Time between statistics output - + # Parameters for the hydrodynamics scheme SPH: resolution_eta: 1.2348 # Target smoothing length in units of the mean inter-particle separation (1.2348 == 48Ngbs with the cubic spline kernel). diff --git a/examples/UniformBox/uniformBox.yml b/examples/UniformBox/uniformBox.yml index ce989d22ad..15d956a5d7 100644 --- a/examples/UniformBox/uniformBox.yml +++ b/examples/UniformBox/uniformBox.yml @@ -1,4 +1,3 @@ - # Define the system of units to use internally. InternalUnitSystem: UnitMass_in_cgs: 1 # Grams @@ -32,6 +31,10 @@ Snapshots: UnitCurrent_in_cgs: 1 # Amperes UnitTemp_in_cgs: 1 # Kelvin +# Parameters governing the conserved quantities statistics +Statistics: + delta_time: 1e-2 # Time between statistics output + # Parameters for the hydrodynamics scheme SPH: resolution_eta: 1.2348 # Target smoothing length in units of the mean inter-particle separation (1.2348 == 48Ngbs with the cubic spline kernel). diff --git a/examples/parameter_example.yml b/examples/parameter_example.yml index 761e2f67c1..b3b9b52ad7 100644 --- a/examples/parameter_example.yml +++ b/examples/parameter_example.yml @@ -1,4 +1,3 @@ - # Define the system of units to use internally. InternalUnitSystem: UnitMass_in_cgs: 1 # Grams @@ -32,6 +31,10 @@ Snapshots: UnitCurrent_in_cgs: 1 # Unit system for the outputs (Amperes) UnitTemp_in_cgs: 1 # Unit system for the outputs (Kelvin) +# Parameters governing the conserved quantities statistics +Statistics: + delta_time: 1e-2 # Time between statistics output + # Parameters for the hydrodynamics scheme SPH: resolution_eta: 1.2348 # Target smoothing length in units of the mean inter-particle separation (1.2348 == 48Ngbs with the cubic spline kernel). -- GitLab