Skip to content

Commit

Permalink
rename fluid params
Browse files Browse the repository at this point in the history
  • Loading branch information
dinatraykova committed Jul 28, 2023
1 parent 9e54fdd commit 82783ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Examples/PerfectFluid/SimulationParameters.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ class SimulationParameters : public SimulationParametersBase
center; // already read in SimulationParametersBase
pp.load("G_Newton", G_Newton,
0.0); // for now the example neglects backreaction
pp.load("fluid_amplitude", initial_params.amplitude, 0.1);
pp.load("fluid_rho", initial_params.rho0, 1.0);
pp.load("fluid_uflow", initial_params.uflow, 1./(4.*sqrt(3)));
pp.load("fluid_amp", initial_params.amp, 0.01);
pp.load("fluid_amplitude", initial_params.amplitude, 0.01);
pp.load("fluid_awidth", initial_params.awidth, 0.05);
pp.load("fluid_sigma", initial_params.sigma, 0.2);
pp.load("fluid_ycenter", initial_params.ycenter, {-0.5,0.5});
pp.load("eos_w", eos_params.eos_w, 1./3.);

// Initial Kerr data
Expand Down

0 comments on commit 82783ca

Please sign in to comment.