geoschem / integrated_methane_inversion

Integrated Methane Inversion workflow repository.
https://imi.readthedocs.org
MIT License
25 stars 19 forks source link

Default LevelEdgeDiags collection saves out more variables than are needed #171

Open nicholasbalasus opened 10 months ago

nicholasbalasus commented 10 months ago

Name and Institution (Required)

Name: Nick Balasus Institution: Harvard University

New IMI feature or discussion

Currently, the IMI archives the LevelEdgeDiags collection hourly which by default includes 7 variables. 6 of these are not used, suggesting the data size for hourly LevelEdgeDiags files can be reduced by ~86% making a simple change in HISTORY.rc with a sed command in the template creation.

  LevelEdgeDiags.fields:      'Met_CMFMC                     ',
                              'Met_PEDGE                     ',
                              'Met_PEDGEDRY                  ',
                              'Met_PFICU                     ',
                              'Met_PFILSAN                   ',
                              'Met_PFLCU                     ',
                              'Met_PFLLSAN                   ',

to

  LevelEdgeDiags.fields:      'Met_PEDGE                     ',

This only impacts prior and posterior runs.

github-actions[bot] commented 4 months ago

This issue has been automatically marked as stale because it has not had recent activity. If there are no updates within 7 days it will be closed. You can add the "never stale" tag to prevent the issue from closing this issue.