Skip to content

Commit

Permalink
Fix resetting particle dep estimators (low impact) (#124)
Browse files Browse the repository at this point in the history
Dep estimators for electrons, positrons, and alphas were not being
zeroed at each timestep. However, since they were being divided by dV *
dT for normalisation, they became close to zero anyway. Also enable
save/load of these estimators to get sensible values on first timestep
after resume.
  • Loading branch information
lukeshingles authored Sep 12, 2024
1 parent 94b09bf commit 8763322
Show file tree
Hide file tree
Showing 18 changed files with 82 additions and 73 deletions.
20 changes: 13 additions & 7 deletions grid.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1190,10 +1190,12 @@ void read_grid_restart_data(const int timestep) {
float W = 0.;
float T_J = 0.;
int thick = 0;
double dep_estimator_gamma = 0.;

assert_always(fscanf(gridsave_file, "%d %a %a %a %a %d %la %a %a", &mgi_in, &T_R, &T_e, &W, &T_J, &thick,
&dep_estimator_gamma, &modelgrid[mgi].nne, &modelgrid[mgi].nnetot) == 9);
assert_always(fscanf(gridsave_file, "%d %a %a %a %a %d %la %la %la %la %a %a", &mgi_in, &T_R, &T_e, &W, &T_J,
&thick, &globals::dep_estimator_gamma[nonemptymgi],
&globals::dep_estimator_positron[nonemptymgi], &globals::dep_estimator_electron[nonemptymgi],
&globals::dep_estimator_alpha[nonemptymgi], &modelgrid[mgi].nne,
&modelgrid[mgi].nnetot) == 12);

if (mgi_in != mgi) {
printout("[fatal] read_grid_restart_data: cell mismatch in reading input gridsave.dat ... abort\n");
Expand All @@ -1205,14 +1207,16 @@ void read_grid_restart_data(const int timestep) {
assert_always(T_e >= 0.);
assert_always(W >= 0.);
assert_always(T_J >= 0.);
assert_always(dep_estimator_gamma >= 0.);
assert_always(globals::dep_estimator_gamma[nonemptymgi] >= 0.);
assert_always(globals::dep_estimator_positron[nonemptymgi] >= 0.);
assert_always(globals::dep_estimator_electron[nonemptymgi] >= 0.);
assert_always(globals::dep_estimator_alpha[nonemptymgi] >= 0.);

set_TR(mgi, T_R);
set_Te(mgi, T_e);
set_W(mgi, W);
set_TJ(mgi, T_J);
modelgrid[mgi].thick = thick;
globals::dep_estimator_gamma[nonemptymgi] = dep_estimator_gamma;

if constexpr (USE_LUT_PHOTOION) {
for (int i = 0; i < globals::nbfcontinua_ground; i++) {
Expand Down Expand Up @@ -2222,8 +2226,10 @@ void write_grid_restart_data(const int timestep) {
const int mgi = grid::get_mgi_of_nonemptymgi(nonemptymgi);

assert_always(globals::dep_estimator_gamma[nonemptymgi] >= 0.);
fprintf(gridsave_file, "%d %a %a %a %a %d %la %a %a", mgi, get_TR(mgi), get_Te(mgi), get_W(mgi), get_TJ(mgi),
modelgrid[mgi].thick, globals::dep_estimator_gamma[nonemptymgi], modelgrid[mgi].nne, modelgrid[mgi].nnetot);
fprintf(gridsave_file, "%d %a %a %a %a %d %la %la %la %la %a %a", mgi, get_TR(mgi), get_Te(mgi), get_W(mgi),
get_TJ(mgi), modelgrid[mgi].thick, globals::dep_estimator_gamma[nonemptymgi],
globals::dep_estimator_positron[nonemptymgi], globals::dep_estimator_electron[nonemptymgi],
globals::dep_estimator_alpha[nonemptymgi], modelgrid[mgi].nne, modelgrid[mgi].nnetot);

if constexpr (USE_LUT_PHOTOION) {
for (int i = 0; i < globals::nbfcontinua_ground; i++) {
Expand Down
3 changes: 3 additions & 0 deletions sn3d.cc
Original file line number Diff line number Diff line change
Expand Up @@ -613,6 +613,9 @@ void zero_estimators() {
std::ranges::fill(globals::ffheatingestimator, 0.);
std::ranges::fill(globals::colheatingestimator, 0.);
std::ranges::fill(globals::dep_estimator_gamma, 0.);
std::ranges::fill(globals::dep_estimator_positron, 0.);
std::ranges::fill(globals::dep_estimator_electron, 0.);
std::ranges::fill(globals::dep_estimator_alpha, 0.);

if constexpr (USE_LUT_PHOTOION) {
if (globals::nbfcontinua_ground > 0) {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
91de44973f7efdb2bbb67e9ebe78f2bf absorption.out
790e8eb2156e27b9bcf4fe4ec9db7c52 absorptionpol.out
c0604236aa7df99cda43e5c7bbe7b6f4 bflist.out
ebb29b17b5d4e5cf6d06b0ef9d8a8df2 deposition.out
ece1861557f42d5e68bccc196784b053 deposition.out
ad213adf8e24a171b42f872c59a5dae0 emission.out
e8865c8b8fb79aeef5de4dfbaa176e58 emissionpol.out
91e674fadcf5a1f38e36a23aaed77cb3 emissiontrue.out
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
8c114a35dad58a87b8cd8e3a7b776e80 absorption.out
c0604236aa7df99cda43e5c7bbe7b6f4 bflist.out
f5c5f8bf0f84d2483cef3ce24bb46f75 deposition.out
5de886016cb306c7ba1c6d9ea93d6b35 deposition.out
ccd6033593f1d4f0e47d9aac7a0e3042 emission.out
1139784b02a652a635e211b934c2cfec emissiontrue.out
457efd00d79f5dd32d4649122b9e4b73 gamma_light_curve.out
Expand Down
10 changes: 5 additions & 5 deletions tests/kilonova_1d_1dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
a68ab8919d91afb5c3a4b28bb98b75b8 absorption.out
f9bb214eb7f1ac22791a13c8025c4887 bflist.out
1dd3dd203c508b5f9e5020988a8694c0 deposition.out
f0db52c346ffcba95d1d8812475f8c34 deposition.out
065c01cd760d54a888a939dfe00378c4 emission.out
f345c0a8d5ae60ec17b7bfa78d61abb9 emissiontrue.out
dd314f8317220adaee8b48aa1b60f2a3 gamma_light_curve.out
Expand All @@ -16,7 +16,7 @@ b5ca49a6f951391b5083c421501f645d packets00_0002.out
377af72746a6b1d93754130a3ff6f642 packets00_0003.out
5bc66d0e2f639e2cd2d2a8d9a6487c3b spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
73aabc4ca257c9ebae6d7565df848e0d job1/estimators_0000.out
8b98deecd085abe3250f53b9b91161ad job1/estimators_0001.out
ae916593c7b194b9378cc51994b439c6 job1/estimators_0002.out
a7141c81f9f07c07b9520f9715ee9edc job1/estimators_0003.out
ea174eff24f41e70b1d28e9775e7dfd3 job1/estimators_0000.out
0690d0264e69496e2a43cfe86bdc9e01 job1/estimators_0001.out
4c2fa51eabca21c4680661d0db01f811 job1/estimators_0002.out
fef640281337a9f404fc72a269a20406 job1/estimators_0003.out
10 changes: 5 additions & 5 deletions tests/kilonova_1d_1dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
9b6e08da1a7ff4bb095586408e58c0bc absorption.out
f9bb214eb7f1ac22791a13c8025c4887 bflist.out
91eab029c292915e999f17b361c01976 deposition.out
a37e9be6c23303199deccfe9a8704b90 deposition.out
da000c6330f226464a3fc2ba16eb8beb emission.out
851560ece3b6630497d362ad8c69a127 emissiontrue.out
a65c34c5069444d22e04c7efb8bd0d69 gamma_light_curve.out
Expand All @@ -15,7 +15,7 @@ d2b546c1df9ca44beec2a25fe5cd7a12 packets00_0001.out
209c278c8753e7d57ef1120c4b1e8c59 packets00_0003.out
d90011df9b26a1b201891122b690b7e9 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
2692110b12c41e4aff7c3407e0689961 job0/estimators_0000.out
4cc527f6893669a38fca316fbb2a41f0 job0/estimators_0001.out
49b4139ebb6c1401101ec15edef4ccec job0/estimators_0002.out
0be0aadf1444386b1842d90f47a2c4e8 job0/estimators_0003.out
bfe9ac9322ca2fc013e6ed7cd07abe1f job0/estimators_0000.out
ad0d31b74f09fd1e061c403e5e2bd763 job0/estimators_0001.out
41246b97f5a72d7f40123c07729f14e1 job0/estimators_0002.out
69632b392414d12f24cc196ef927f1af job0/estimators_0003.out
8 changes: 4 additions & 4 deletions tests/kilonova_1d_3dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ dfc316731561dde7037c8e8575bc15c2 packets00_0002.out
0a105cb9c97ab225676df616564e7328 packets00_0003.out
5d1b8350c2c7114b1481465644191e68 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
e652bc4aedaa3ac656a223a4243a412b job1/estimators_0000.out
2f66598613edb2fccfa5e6e63852971d job1/estimators_0001.out
1bb8a67807243dfa484fae77e8a84c88 job1/estimators_0002.out
39a87321a11374d56d67575c20026ee4 job1/estimators_0003.out
7854d43ead9a94869c5e37dee11d2e87 job1/estimators_0000.out
703ca8a7850ec8a620152cd970cb9bae job1/estimators_0001.out
11d15f3f9401e030c1087e91986d73a7 job1/estimators_0002.out
0f652a0b60587153c04186d6f762a8ec job1/estimators_0003.out
8 changes: 4 additions & 4 deletions tests/kilonova_1d_3dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ae937aa10f537a4be5879d2148711c7d packets00_0000.out
4e44ad72a46350ab16c5b4112f5cd44c packets00_0003.out
2d154c74193a57d21c3b2b31c33bee9e spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
d7b0375369454baa750d6d7ab743abba job0/estimators_0000.out
f00f8c1829c964cecaee7efca667efe7 job0/estimators_0001.out
061900c0d8d04634d41befe29dbf74a2 job0/estimators_0002.out
cae5f71cfbd120dcd89270c8d4afc038 job0/estimators_0003.out
3b78eaa535ee03269f6e131ecf4cd9d3 job0/estimators_0000.out
f463d43459034263373f0fe95b4eced7 job0/estimators_0001.out
481b53d39d4ce276fed21a08ddc642dd job0/estimators_0002.out
772cd018b4eaca80edf71d6b51532b3d job0/estimators_0003.out
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ f8efb652b3b62df30d6490bbfdaf42fe absorption_res_95.out
e62dba7cbb6826d15f6cb2fdde45c69b absorption_res_98.out
eb05e3560a97e99403464e9c79845341 absorption_res_99.out
897316929176464ebc9ad085f31e7284 bflist.out
f421b46da29529e44e57cb7caeac62db deposition.out
3e606137299da9ff0d407802b98206a2 deposition.out
94e7893f4d16eaedf276ca3bb09408e2 emission.out
802067a4cd06e68099ae5d93d3e29773 emission_res_00.out
e885f6a4f62b14a6b45dd9423c20a98a emission_res_01.out
Expand Down Expand Up @@ -318,7 +318,7 @@ d88772c9f2f982809105433aa1ef43ed packets00_0000.out
2013eb78c14b8ab574b3e7d045ee9f7f spec.out
f7aae73b1abecba91128abc65b17f4be spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
00b8474e1bec3df40f2f643d6b34fc4e job1/estimators_0000.out
ad01423a9531a1c364a1901682609112 job1/estimators_0001.out
b630267042391a009fad2f00b0f0ce2f job1/estimators_0002.out
eb8561e04928876e09d70ba46585054a job1/estimators_0003.out
09651e32e7dfb0398c957d377c0e9656 job1/estimators_0000.out
ac9ea61ba5c871f25071c13e5ad1d328 job1/estimators_0001.out
eac3fde83813a6ff3757b509b1561e99 job1/estimators_0002.out
394fbcae7cb9c701a2bda334f1cf7fc6 job1/estimators_0003.out
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ d395efd35c062824dd6ab0104e0867f8 packets00_0002.out
e51e447e54bfe2d3f609ece1e8699cad packets00_0003.out
88a0e6320da73f235aec8739d4a123a3 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
76e3af84b3a66c9a282e41a6627dc4e6 job0/estimators_0000.out
0feb35456d8d8e9bbfc6548ffa0ae332 job0/estimators_0001.out
edd1c258e08cac13e09fcae4bac10992 job0/estimators_0002.out
f7550c181706595984aaf71e651a381f job0/estimators_0003.out
29f6ff5e9d574cddb2f90ec4a977199a job0/estimators_0000.out
24af7d8e90d79673d529c958635c0ace job0/estimators_0001.out
7a13aaeb7e5e6df02e21b97a81524e03 job0/estimators_0002.out
b47c9c48232ffe7e7ee813c891df3aaa job0/estimators_0003.out
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ b65007ef75f1eaf1a242c7b3119086c7 absorption_res_97.out
b65007ef75f1eaf1a242c7b3119086c7 absorption_res_98.out
b65007ef75f1eaf1a242c7b3119086c7 absorption_res_99.out
897316929176464ebc9ad085f31e7284 bflist.out
eb9a40aba1639c6cbe0fc742e7b226ad deposition.out
36c53a971b39cd7d798471b5f1674ab2 deposition.out
ee60e743859c3ea2e0b13bb96718262e emission.out
5b5cbbc33f5a005f5fc164e755e4874c emission_res_00.out
f1b90bc2c43c1773ec470d3cd85dde59 emission_res_01.out
Expand Down Expand Up @@ -318,7 +318,7 @@ d80043ce6bedca56511b9fd3f7c0a49f modelgridrankassignments.out
174d35c403e43ae90380d786e591c078 spec.out
a35e02bc19e8aed065425582283e9d52 spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
d1b5b66e9f018c0a2bfb6ccc4768b23e job1/estimators_0000.out
00f380ea39781e2dbd41ff4c1afd01fc job1/estimators_0001.out
377757486870b7d66850e6dadba11efa job1/estimators_0002.out
e371aba7e0accf2e0f8d56b9a147b7ba job1/estimators_0003.out
894b712119acaf3ce3ae3a9a7b67c333 job1/estimators_0000.out
3fe5acbfaf7a8d0042f85ec30f98bb32 job1/estimators_0001.out
ee5d305bb32b95e5e93adecca6abe78f job1/estimators_0002.out
c688e2fb47e2f4daee8af193fe26b9a7 job1/estimators_0003.out
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ e3a069b579947f54e3812795cf9deee0 packets00_0002.out
09eb173dc9f9ab59c8601d6dbdeb1af1 packets00_0003.out
ff5a909e77a5ae78b0ff39c51813013d spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
4103663234968a59f86da66cbe7631d7 job0/estimators_0000.out
592a09fba94ba7569276e124bb766886 job0/estimators_0001.out
58d13995e193b8628bd36bdf41291ace job0/estimators_0002.out
b702a59839ee164667ad998047403529 job0/estimators_0003.out
4f120077aafb8ca9afb7eb557d661604 job0/estimators_0000.out
532fc878ee0d2bd269e9eac3fcd10375 job0/estimators_0001.out
3743f638c0a04d2e7094d5ddc61211e9 job0/estimators_0002.out
3afe098ae5c0f49f714ed77025368f63 job0/estimators_0003.out
10 changes: 5 additions & 5 deletions tests/kilonova_2d_2dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ d17be52ec55a01fd542f0d2275afcc3b absorption_res_97.out
6f6402a01ca879f11e76ba9574630dec absorption_res_98.out
1330bb475a0964fd04a664ba765e56d6 absorption_res_99.out
f9bb214eb7f1ac22791a13c8025c4887 bflist.out
077307c9e4a89453ffb3de622c6bcec9 deposition.out
6097e7d015c08926d1a094899b644c90 deposition.out
a7334ce70ab45ad1bdc10afafe1c1ae4 emission.out
b9b02e1e727a758a78fd67b0f698de51 emission_res_00.out
7ca10b168860e2e62458a4177a7b5eb3 emission_res_01.out
Expand Down Expand Up @@ -318,7 +318,7 @@ b80d451b7a65caf3e7e358bb2e31e215 packets00_0003.out
75a19500dc039b998f89bdaa549d4840 spec.out
fc09caca8a29c0090c5747885cb037aa spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
27a2cc4fd0945df10105078bc2a80f26 job1/estimators_0000.out
9a6b237afdb0c6dd8201e36fb431b1a6 job1/estimators_0001.out
4591e80eeaf5212c242e212a93c32fd5 job1/estimators_0002.out
2aeea9f1649606d3069a8043b4f50c2b job1/estimators_0003.out
75c948225d2fb276096ede730fee51ee job1/estimators_0000.out
85461f2da040db701a7a2a6f53b84ec2 job1/estimators_0001.out
10927255bf1fa8f5974b96dd08e6d2be job1/estimators_0002.out
ccaf7f79f0cf53bc9ee30ae26a672426 job1/estimators_0003.out
8 changes: 4 additions & 4 deletions tests/kilonova_2d_2dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ a6c0fee501b6128a3fdb60ab924aba93 packets00_0002.out
84f08d240ba21f289e94737ca195f160 packets00_0003.out
b653a3329cd63cfa1f429ff83c33693b spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
a3a985a3091152eb9b5a8865e94f6c8e job0/estimators_0000.out
42db38927e1d95963b9db81422c760ed job0/estimators_0001.out
253fac738196aa1c188200929cdcde62 job0/estimators_0002.out
3c09f9da7bc2046ce27b4a371077b42f job0/estimators_0003.out
deb7a21406d428d9896a081a30acc8c6 job0/estimators_0000.out
a0844e4c057678905a865f8f9837ddd0 job0/estimators_0001.out
515cb50fee5d4be924120483cfa40399 job0/estimators_0002.out
b9a9acf2b79158ea34947b1e2ef4e700 job0/estimators_0003.out
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ f04020b3354c482b666e1e353a0ade12 absorption_res_91.out
b75385a68294590db24314feb36f21c5 absorption_res_98.out
150efdd908168411b9a358899ea73ed9 absorption_res_99.out
897316929176464ebc9ad085f31e7284 bflist.out
a3c0bf87b4453de34b3a9341b3b11f5b deposition.out
e2a3add7bf9902def7761af58204df16 deposition.out
df2411bf53d9e8a65897b9176011aaf2 emission.out
01350f3129565d1472dc8705cc30fe54 emission_res_00.out
a48a26db68581485e30b75773bec9bb9 emission_res_01.out
Expand Down Expand Up @@ -318,7 +318,7 @@ f3458bdeaf2f5cb207dcbee103dda567 packets00_0002.out
bb247a6213ff848ca038d6c7368d9762 spec.out
f51cbb087c29f30368ed94046f8080e1 spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
1173c9b839971f9bd6de1c47c3c52cfc job1/estimators_0000.out
50405bde5f9f744708e33f9c37838119 job1/estimators_0001.out
68b39af44a830dc018d3b50e617181f5 job1/estimators_0002.out
aa6b1301009d451e0930d801f6409aaa job1/estimators_0003.out
74da084e4d53ed6309a45a460870e39a job1/estimators_0000.out
aac96d617e8d1f4d38dfe8c8d3747358 job1/estimators_0001.out
17a1c6bcc9b4d66864fd278db2601a60 job1/estimators_0002.out
56468257da13a15505bb30f26c25c4be job1/estimators_0003.out
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ b3d6d74cd0c4fbe6519294af8e63ebac packets00_0002.out
933be7818c864b6314faca6a2ceafb82 packets00_0003.out
bb3e8856c519696a8af781915be05c81 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
f78175259b7d9db94d3dd67f42b17c92 job0/estimators_0000.out
1e7320ea490f461c5f5006fdf30babb5 job0/estimators_0001.out
965159afc4c97de3079614a6ac5a144c job0/estimators_0002.out
e8885682ef93e0104f1779dcf24c1861 job0/estimators_0003.out
678065cde1029b6978a3cc70096630c8 job0/estimators_0000.out
4cb851be2147ee839acc4cec0b57ec74 job0/estimators_0001.out
3b7949c57381229c6414f5d3355ab87f job0/estimators_0002.out
b30151a628196ec72db82d8f8e9c4414 job0/estimators_0003.out
10 changes: 5 additions & 5 deletions tests/kilonova_2d_3dgrid_inputfiles/results_md5_final.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ e5ceee3b7262cb62fb78cdca0ea59fa9 absorption_res_96.out
177d2331a3ff15e7d4e34f6d4574e0f7 absorption_res_98.out
f7b68c0636c7ca9bf007c942ad1d812f absorption_res_99.out
f9bb214eb7f1ac22791a13c8025c4887 bflist.out
a89a171795aff4207996405e987df0c8 deposition.out
8b1a781723d7e9bcb2b03cac75dccdd4 deposition.out
3ca46c8cb5ca3f148548262e536aa502 emission.out
efb2a97f998b06b7a3ff16a5475405c5 emission_res_00.out
a42dabde264a364f813a89253d2b6799 emission_res_01.out
Expand Down Expand Up @@ -318,7 +318,7 @@ e802497c7ed89464a51eb0884be7b959 packets00_0003.out
a1d482542b13466b0b7976654de18bee spec.out
9f902c07f4dd9d8ca3664cab3dea060a spec_res.out
a351f1711fecd60c023d0ba7332092db timesteps.out
077d45790401e79340f2d4493d296a02 job1/estimators_0000.out
7ee333019530ae1ead47c4f23d8568bf job1/estimators_0001.out
b9a8e2f604b7755b02253d9764235b14 job1/estimators_0002.out
3add597d82a32b0855ef078f4b5d169c job1/estimators_0003.out
6c6c02e417fd289811b9a3f1071d974d job1/estimators_0000.out
b9fe9ebe83ed5cea006834f825349bfe job1/estimators_0001.out
b933e40d7f87bf73b8c56bbbdc035037 job1/estimators_0002.out
a494bfcfce9d35ca15cb9633e7b3d7cf job1/estimators_0003.out
10 changes: 5 additions & 5 deletions tests/kilonova_2d_3dgrid_inputfiles/results_md5_job0.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
f9bb214eb7f1ac22791a13c8025c4887 bflist.out
5a6a785cacfeed6eba6cd0d871301974 deposition.out
7909ca40a46c503427a3668ec9512c2f deposition.out
c657b77e4d00bad2650f40ed0f2ca494 gamma_light_curve.out
2b769145664780d4f90b07f963588536 gammalinelist.out
b72b67aae10074c2b0915aaad7d9ccbc grid.out
Expand All @@ -12,7 +12,7 @@ a154f9a8511bed32dca64634d174f6f0 packets00_0001.out
fb1b9057f1e7fc470fce0cf6011d352b packets00_0003.out
efeeac5b0345ab0e40d5eab91e7c8b13 spec.out
a351f1711fecd60c023d0ba7332092db timesteps.out
052d10ff59ce151cd0ddbaf15b2c4ac9 job0/estimators_0000.out
7424d8f6de56afa74fd555d1e46eabcc job0/estimators_0001.out
fbbd2b3c64ee24ab76e967004aa1a0af job0/estimators_0002.out
a7b97f1a19f1cb2a9fb98cc161a08683 job0/estimators_0003.out
8cd8f36c29cea3b0accaf6d6ce43baa4 job0/estimators_0000.out
c2ecda86dc9ece5e65806ef676f5a0f7 job0/estimators_0001.out
f6f5331b0747eec5afb6cedaabed3e17 job0/estimators_0002.out
f0099de9cdf75566b080793174adf821 job0/estimators_0003.out

0 comments on commit 8763322

Please sign in to comment.