1
0
Fork 0
mirror of https://github.com/cosmo-sims/MUSIC.git synced 2024-09-19 17:03:46 +02:00

removed fortran warning flag in inputs file generation.

This commit is contained in:
ch b 2013-02-18 14:49:50 +01:00
parent 06bbc50da4
commit 048bd978f5
3 changed files with 5 additions and 4 deletions

View file

@ -2,7 +2,6 @@
### compile time configuration options
FFTW3 = yes
MULTITHREADFFTW = no
MULTITHREADFFTW = yes
SINGLEPRECISION = no
HAVEHDF5 = no
HAVEBOXLIB = yes

View file

@ -5,7 +5,7 @@ levelmin = 7
levelmin_TF = 7
levelmin_TF = 8
levelmax = 7
levelmax = 9
levelmax = 8
padding = 8
overlap = 4
ref_center = 0.5, 0.5, 0.5

View file

@ -393,9 +393,9 @@ public:
inputs << "amr.useFixedCoarseGrids = 1" << std::endl;
inputs << "amr.blocking_factor =8" << std::endl;
inputs << "amr.check_file = chk " << std::endl;
inputs << "amr.check_int = 1 " << std::endl;
inputs << "amr.check_int = 10 " << std::endl;
inputs << "amr.plot_file = plt " << std::endl;
inputs << "amr.plot_int = 1 " << std::endl;
inputs << "amr.plot_int = 10 " << std::endl;
inputs << "amr.derive_plot_vars = particle_count particle_mass_density pressure" << std::endl;
inputs << "amr.plot_vars = ALL" << std::endl;
inputs << "nyx.add_ext_src = 0" << std::endl;
@ -411,6 +411,7 @@ public:
inputs << "nyx.do_grav = 1 " << std::endl;
inputs << "nyx.do_dm_particles = 1 " << std::endl;
inputs << "nyx.particle_init_type = Cosmological " << std::endl;
inputs << "nyx.print_fortran_warnings = 0" << std::endl;
inputs << "cosmo.initDirName = init " << std::endl;
inputs << "nyx.particle_move_type = Gravitational" << std::endl;
inputs << "amr.probin_file = probin " << std::endl;
@ -423,6 +424,7 @@ public:
inputs << "amr.n_cell = " << sizex_[0] << " " << sizey_[0] << " " << sizez_[0] << std::endl;
inputs << "nyx.n_particles = " << sizex_[0] << " " << sizey_[0] << " " << sizez_[0] << std::endl;
inputs << "geometry.prob_lo = 0 0 0" << std::endl;
//double dx = the_sim_header.dx/the_sim_header.h0;
double bl = the_sim_header.boxlength/the_sim_header.h0;
inputs << "geometry.prob_hi = " << bl << " " << bl << " " << bl << std::endl;