Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
2eca16f7
Commit
2eca16f7
authored
Jun 26, 2016
by
Matthieu Schaller
Browse files
Same for the 50Mpc EAGLE box
parent
6346e2d8
Changes
3
Hide whitespace changes
Inline
Side-by-side
examples/EAGLE_50/eagle_50.yml
0 → 100644
View file @
2eca16f7
# Define the system of units to use internally.
InternalUnitSystem
:
UnitMass_in_cgs
:
1
# Grams
UnitLength_in_cgs
:
1
# Centimeters
UnitVelocity_in_cgs
:
1
# Centimeters per second
UnitCurrent_in_cgs
:
1
# Amperes
UnitTemp_in_cgs
:
1
# Kelvin
# Parameters for the task scheduling
Scheduler
:
cell_sub_size
:
6000
# Value used for the original scaling tests
cell_split_size
:
300
# Value used for the original scaling tests
# Parameters governing the time integration
TimeIntegration
:
time_begin
:
0.
# The starting time of the simulation (in internal units).
time_end
:
1.
# The end time of the simulation (in internal units).
dt_min
:
1e-7
# The minimal time-step size of the simulation (in internal units).
dt_max
:
1e-2
# The maximal time-step size of the simulation (in internal units).
# Parameters governing the snapshots
Snapshots
:
basename
:
eagle
# Common part of the name of output files
time_first
:
0.
# Time of the first output (in internal units)
delta_time
:
0.05
# Time difference between consecutive outputs (in internal units)
UnitMass_in_cgs
:
1
# Grams
UnitLength_in_cgs
:
1
# Centimeters
UnitVelocity_in_cgs
:
1
# Centimeters per second
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).
delta_neighbours
:
0.1
# The tolerance for the targetted number of neighbours.
max_smoothing_length
:
0.1
# Maximal smoothing length allowed (in internal units).
CFL_condition
:
0.1
# Courant-Friedrich-Levy condition for time integration.
# Parameters related to the initial conditions
InitialConditions
:
file_name
:
./EAGLE_ICs_50.hdf5
# The file to read
examples/EAGLE_50/getIC.sh
0 → 100755
View file @
2eca16f7
#!/bin/bash
wget http://icc.dur.ac.uk/swift/Files/EAGLE_ICs_50.hdf5
examples/EAGLE_50/run.sh
0 → 100755
View file @
2eca16f7
#!/bin/bash
# Generate the initial conditions if they are not present.
if
[
!
-e
EAGLE_ICs_50.hdf5
]
then
echo
"Fetching initial conditions for the EAGLE 50Mpc example..."
./getIC.sh
fi
../swift
-s
-t
16 eagle_50.yml
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment