<div dir="ltr"><div dir="ltr"><div dir="ltr">Hi Roland,<div><br></div><div>I&#39;m very sorry for the confusion and taking up so much of your time. </div></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><br>
You should still set:<br>
<br>
EOS_Omni::poly_gamma = 2.0<br>
EOS_Omni::poly_K = 123.613314525753<br></blockquote><div><br></div><div>My issue solely came from not assigning poly EOS in the atmosphere as you mentioned above. From some point on, I didn&#39;t assign them.  <br></div><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
since GRHydro uses the polytropic EOS for &quot;atmosphere&quot; (low density) regions, irrespective of the EOS used for the non-atmosphere parts.<br>
<br>
THe issue you re reporting causing a SEGFAULT seems different, given that with a SEGFAULT in grhydro_initialatmospherereset you should be unable to evolve at all past t=0. Is that correct?<br></blockquote><div><br></div><div>You&#39;re right.</div><div><br></div><div>Thanks for the kind explanation below. I was not going to take temperature evolution seriously, so I think I have no more issues left. The debugging tips below would be very helpful in my future studies.</div><div><br></div><div>Thank you.</div><div><br></div><div>Hee Il</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">
<br>
If there is no backtrace and no core file then this makes things a bit harder.<br>
<br>
However you can use gdb to try and get a line number from the backtrace shown in your out file. Eg the line <br>
<br>
[node14:39016] [ 2] ./SIMFACTORY/cactus_bns_ompi3.nofp(grhydro_initialatmospherereset_+0xc2b)[0x163c4f3]<br>
<br>
indicates the address grhydro_initialatmospherereset_+0xc2b as the location of the code causing the segfault (the relative to function mode of addressing may help with address space randomization done by the kernel I guess).<br>
<br>
In any case you can get some idea of the line number by doing the following:<br>
<br>
gdb ./SIMFACTORY/cactus_bns_ompi3.nofp<br>
<br>
ie loading the very same executable that failed into gdb (on the login<br>
node of the cluster where it failed), then in gdb<br>
<br>
info line *(grhydro_initialatmospherereset_+0xc2b)<br>
<br>
Unfortunately this being Fortran code there are basically two versions<br>
of line numbers you can get (depends on how you compiled). I the number<br>
is very large then you should look at the preprocessed file in<br>
<br>
Cactus/configs/sim/build/GRHydro/...<br>
<br>
which is probably the file that gdb points to. If the line number is<br>
small (or otherwise obviously not in the GRHydro_InitialAtmosphereReset<br>
function in the file) then instead you should look at the original<br>
source file in arrangements/EinsteinEvolve/GRHydro/src/ (you hope for<br>
the latter but expect the former).<br>
<br>
My guess would be that it&#39;s the line:<br>
<br>
            y_e_con(i,j,k) = dens(i,j,k) * y_e(i,j,k)<br>
<br>
which assumes that if you are evolving temperature you must also evolve<br>
neutrinos (that being the typical application for tabulated<br>
microphysical EOS vs some hybrid EOS).<br>
<br>
Yours,<br>
Roland<br>
<br>
&gt; Thanks Roland,<br>
&gt; <br>
&gt; 2021년 3월 12일 (금) 오전 12:03, Roland Haas &lt;<a href="mailto:rhaas@illinois.edu" target="_blank">rhaas@illinois.edu</a>&gt;님이 작성:<br>
&gt; <br>
&gt; &gt; Hello Hee Il,<br>
&gt; &gt;<br>
&gt; &gt; &gt; I have encountered a bug in using<br>
&gt; &gt; HydroBase::temperature_evolution_method.<br>
&gt; &gt; &gt; If it is given explicitly by taking its default value &quot;GRHydro&quot;, my<br>
&gt; &gt; &gt; runs crashed while reading a Lorene data. But if it&#39;s not given in the<br>
&gt; &gt; &gt; parameter file, it run smoothly but the results are the same with the<br>
&gt; &gt; case<br>
&gt; &gt; &gt; of taking &quot;none&quot;.<br>
&gt; &gt; The default value for HydroBase::temperature_evolution_method is &quot;none&quot;<br>
&gt; &gt; (see<br>
&gt; &gt;<br>
&gt; &gt; <a href="https://urldefense.com/v3/__http://einsteintoolkit.org/thornguide/EinsteinBase/HydroBase/documentation.html*TBL-15-7-1__;Iw!!DZ3fjg!tucQWQHP14O6616GC9hbcfiTuJnh7M7ZnmtO2Xg4OCz170x4pdRBiU2aDznE6Uek$" rel="noreferrer" target="_blank">https://urldefense.com/v3/__http://einsteintoolkit.org/thornguide/EinsteinBase/HydroBase/documentation.html*TBL-15-7-1__;Iw!!DZ3fjg!tucQWQHP14O6616GC9hbcfiTuJnh7M7ZnmtO2Xg4OCz170x4pdRBiU2aDznE6Uek$</a> )<br>
&gt; &gt; so not setting it explicitly is identical to setting it to &quot;none&quot;.<br>
&gt; &gt;<br>
&gt; <br>
&gt;  Yes, I was mistaken. I confirmed that &quot;none&quot; is the default value.<br>
&gt;  [khi@hygra GRHydro]$ ~/ET/Turing/exe/cactus_bns_turing -o<br>
&gt; HydroBase::temperature_evolution_method<br>
&gt; Parameter:   HydroBase::temperature_evolution_method,<br>
&gt; HydroBase::temperature_evolution_method<br>
&gt; Description: &quot;Evolution method for temperature&quot;<br>
&gt; Type:        KEYWORD<br>
&gt; Default:     none<br>
&gt; <br>
&gt; <br>
&gt; &gt; &gt; I found this bug when I was testing Hybrid EOS. I&#39;ve tried to realize<br>
&gt; &gt; pure<br>
&gt; &gt; &gt; Polytrope (or Ideal_Fluid) by using the piecewise Hybrid EOS interface.<br>
&gt; &gt; But<br>
&gt; &gt; &gt; the results are showing around 10% more variations in rhomax compared to<br>
&gt; &gt; &gt; the pure Polytrope/Ideal_Fluid cases.<br>
&gt; &gt; Can you provide the full log output (and ideally a parfile to reproduce<br>
&gt; &gt; the issue) for stdout and stderr as well as any backtract.X.txt files<br>
&gt; &gt; created?<br>
&gt; &gt;<br>
&gt; <br>
&gt;  I attached the log file and the parfile. No backtrace.X.txt files were<br>
&gt; created and the core dump contains no infos other than &quot;No Stack&quot;.<br>
&gt; <br>
&gt; <br>
&gt; &gt; If it crashes with a SEGFAULT or similar that would indeed be a bug.<br>
&gt; &gt; Note that most of the LORENE data has been used with equations of<br>
&gt; &gt; state that do not use temperature (usually tabulated ones only) so if<br>
&gt; &gt; you are using one of LORENE&#39;s sample data sets and set this parameter<br>
&gt; &gt; then even if the code apparently succeeds the evolution may not be<br>
&gt; &gt; correct or what you expect.<br>
&gt; <br>
&gt; <br>
&gt;  I agree. My main issue might not be related to the crash. Due to the<br>
&gt; confusion mentioned above, I&#39;ve tried to turn off keytemp  in order to see<br>
&gt; if I get better results having no extra pulsations. Actually there&#39;s no<br>
&gt; difference but it only increased the chance of crashes. What I get at the<br>
&gt; moment is extra  &gt;10% pulsations if I use Hybrid EOS (green line) compared<br>
&gt; with the redline (Ideal_Fluid). Similar pulsations were found for the case<br>
&gt; of SLy as well. I&#39;ve used both Lorene and Lorene2 IDs (by using either<br>
&gt; table and piecewised poly eos). Would you check the parfile to see if I&#39;m<br>
&gt; making a simple mistake?<br>
&gt; <br>
&gt; Yours,<br>
&gt; <br>
&gt; Hee Il<br>
<br>
<br>
-- <br>
My email is as private as my paper mail. I therefore support encrypting<br>
and signing email messages. Get my PGP key from <a href="http://pgp.mit.edu" rel="noreferrer" target="_blank">http://pgp.mit.edu</a> .<br>
</blockquote></div></div></div>