different name of echam executable file #1431
Replies: 1 comment
|
Hi @a270105,
I cannot explain it at the moment, I've looked at the config files and I don't understand how the change into the name of the binary in work can result in a correct a2o_flux. That been said I also don't have a experiment that I can inspect. It sounds to me that What I can explain is how you can get esm_tools to rename echam binary to esm_tools/configs/components/echam/echam.yaml Lines 647 to 650 in 8cb480f This is equivalent to saying executable: echam6_bootstrap
bin_sources:
echam_bin: "${bin_dir}/${executable}"
bin_in_work:
echam_bin: "${executable}"Which is equivalent to do
So your changes should look like: - executable: echam6_bootstrap
bin_sources:
- echam_bin: "${bin_dir}/${executable}"
+ echam_bin: "${bin_dir}/echam6_bootstrap"
- bin_in_work:
- echam_bin: "${executable}"In that case you would then be doing Again, I don't understand why the name of the bin in |
Uh oh!
There was an error while loading. Please reload this page.
I got a similar error as Yuchen reported here: #1117
To run LGM with awiesm2 we use a slightly different echam version for the first year (bootstrap). To keep different executable files in the bin folder they are named like 'echam6_bootstrap' and 'echam6_std'. Before I could use them by including these lines in my runscript:
But now (in the esm_toold branch 'awiesm-2.6-recom') it does not work and a2o_flux is not written in the run.../work folder and no restart is possible. I tried with different lengths of the filename. So far, the only way to run the simulation is to rename the executable file to the default name 'echam6'. Can somebody explain where in code the filename is related to the writing of a2o_flux, and why it only affects a2o_flux? Thanks.
All reactions