Implement star skipping
Merge request reports
Activity
added GEAR performance labels
99 int feedback_will_do_feedback(struct spart* sp, 99 100 const struct feedback_props* feedback_props, 100 101 const int with_cosmology, 101 102 const struct cosmology* cosmo, 103 const struct engine *e, 102 104 const double time) { 103 105 104 return (sp->birth_time != -1.); 106 /* Reset the variable and check if early exit */ 107 sp->feedback_data.will_do_feedback = 0; 108 if (sp->birth_time == -1.) { 109 return 0; 110 } 111 112 // TODO check 113 /* Get the times */ added 3 commits
assigned to @matthieu and unassigned @lhausammann
I am not sure to understand what you mean. In the parameter file, you provide the time limits and then you compute a better estimate?
I do not see the point.
Edited by Loic HausammannThis is a different problem. Here I am actually computing when I can produce a supernovae.
This is our graph for the supernovae rate. As you can see below 5Myr, between 30Myr-400Myr and after 10-14Gyr (a bit less useful this one), we cannot produce any supernovae: rates.pdf
Currently, we do not wish to downsample. We are looking at smaller system, therefore (I guess that) the downsampling will impact more our dwarfs as there is not enough stars to have a continuous explosion of supernovae.
Please register or sign in to reply