You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To be addressed:
When converting individual tracer IDs to PRISM format using convert_ids, wrong values (wrong order) get passed to function meta_file. It is currently: meta_file(idx, trace['mass'], mass_unit,total_mass)
Should be: meta_file(idx, trace['mass'], mass_unit, trace['T'], trace['rho'])
At least that is the order- check that those values are actually the ones you want to use to compute initial composition, etc.
The text was updated successfully, but these errors were encountered:
To be addressed:
When converting individual tracer IDs to PRISM format using
convert_ids
, wrong values (wrong order) get passed to functionmeta_file
. It is currently:meta_file(idx, trace['mass'], mass_unit,total_mass)
Should be:
meta_file(idx, trace['mass'], mass_unit, trace['T'], trace['rho'])
At least that is the order- check that those values are actually the ones you want to use to compute initial composition, etc.
The text was updated successfully, but these errors were encountered: