Skip to content

Commit

Permalink
Added function to calculate total column ozone.
Browse files Browse the repository at this point in the history
  • Loading branch information
lars2015 committed Sep 12, 2023
1 parent ff463ac commit 00c17cd
Show file tree
Hide file tree
Showing 5 changed files with 456 additions and 422 deletions.
2 changes: 1 addition & 1 deletion src/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
EXC = atm_conv atm_dist atm_init atm_select atm_split atm_stat cape day2doy doy2day jsec2time met_conv met_lapse met_map met_prof met_sample met_spec met_subgrid met_zm time2jsec sedi tnat trac tropo tropo_sample tropo_zm wind

# List of tests...
TESTS = atm_test compress_test met_test tools_test trac_test tropo_test interoper_test
TESTS = atm_test compress_test interoper_test met_test tools_test trac_test tropo_test

# Installation directory...
DESTDIR ?= ../bin
Expand Down
4 changes: 2 additions & 2 deletions src/atm_conv.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ int main(

/* Write atmospheric data... */
if (ctl.atm_type_out == 3) {
/* For CLaMS trajectory files... */
/* For CLaMS trajectory files... */
ctl.t_start = ctl.t_stop;
ctl.atm_type_out = atoi(argv[5]);
write_atm(argv[4], &ctl, atm, ctl.t_stop);
write_atm(argv[4], &ctl, atm, ctl.t_stop);
} else {
/* Otherwise... */
ctl.atm_type_out = atoi(argv[5]);
Expand Down
Loading

0 comments on commit 00c17cd

Please sign in to comment.