-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathHISTORY
1381 lines (1223 loc) · 50 KB
/
HISTORY
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
------------------------------------------------------------------------
r216 | sfalk | 2018-03-09 10:18:57 +0100 (fr., 09 mars 2018) | 1 line
Changed paths:
M /branches/brOzoNorClim/OSLO/emissions_megan.f90
M /branches/brOzoNorClim/OSLO/utilities_oslo.f90
Move GROWSEASON from MEGAN to utilities
------------------------------------------------------------------------
r215 | sfalk | 2018-03-01 12:47:57 +0100 (to., 01 mars 2018) | 1 line
Changed paths:
M /branches/brOzoNorClim/OSLO/bcoc_oslo.f90
M /branches/brOzoNorClim/OSLO/drydeposition_oslo.f90
M /branches/brOzoNorClim/OSLO/utilities_oslo.f90
Use EMEP parameters and mean forest height 13m.
------------------------------------------------------------------------
r214 | sfalk | 2018-02-28 15:14:43 +0100 (on., 28 feb. 2018) | 1 line
Changed paths:
M /branches/brOzoNorClim/OSLO/bcoc_oslo.f90
M /branches/brOzoNorClim/OSLO/drydeposition_oslo.f90
M /branches/brOzoNorClim/OSLO/utilities_oslo.f90
Latitude dependent forest vegetation height -> subroutine.
------------------------------------------------------------------------
r213 | sfalk | 2018-02-28 11:55:44 +0100 (on., 28 feb. 2018) | 1 line
Changed paths:
M /branches/brOzoNorClim/OSLO/drydeposition_oslo.f90
M /branches/brOzoNorClim/c3run_emeppar_example.job
Use some parameters from input file.
------------------------------------------------------------------------
r212 | sfalk | 2018-02-28 10:35:43 +0100 (on., 28 feb. 2018) | 1 line
Changed paths:
M /branches/brOzoNorClim/Makefile
M /branches/brOzoNorClim/OSLO/diagnostics_general.f90
M /branches/brOzoNorClim/OSLO/drydeposition_oslo.f90
M /branches/brOzoNorClim/cmn_sfc.f90
M /branches/brOzoNorClim/initialize.f90
M /branches/brOzoNorClim/tables/Ltracer_emis_ceds17_2014_megan_gfed4blhdaily.inp
M /branches/brOzoNorClim/tables/PMEAN/p-wind_ec.f
M /branches/brOzoNorClim/tables/tracer_list_nitrate.d
Moved EMEP parameters from drydeposition_oslo to cmn_sfc. Also moved initialization to initialize. New assignment of EMEP parameters from file still outcommented.
------------------------------------------------------------------------
r207 | sfalk | 2018-02-20 14:49:29 +0100 (ti., 20 feb. 2018) | 1 line
Changed paths:
A /branches/brOzoNorClim (from /ctm3f90:204)
Branching for the project OzoNorClim
------------------------------------------------------------------------
r204 | sfalk | 2018-02-19 16:11:36 +0100 (ma., 19 feb. 2018) | 1 line
Changed paths:
M /ctm3f90/OSLO/drydeposition_oslo.f90
A /ctm3f90/c3run_emeppar_example.job
M /ctm3f90/cmn_sfc.f90
A /ctm3f90/emeppar_example.inp
M /ctm3f90/initialize.f90
Added switch for EMEP-based/old drydep scheme to inp-file. Defined source of EMEP.par in inp-file. Variables read from inp-file are defined in cmn_sfc.f90. Read EMEP.par in drydeposition_oslo.f90 if LDEPEMEP2012 is true.
------------------------------------------------------------------------
r203 | asovde | 2018-02-05 14:00:46 +0100 (ma., 05 feb. 2018) | 1 line
Changed paths:
M /ctm3f90/pmain.f90
timing correction
------------------------------------------------------------------------
r202 | asovde | 2018-02-02 08:40:24 +0100 (fr., 02 feb. 2018) | 11 lines
Changed paths:
M /ctm3f90/Makefile
M /ctm3f90/OSLO/bcoc_oslo.f90
M /ctm3f90/OSLO/drydeposition_oslo.f90
M /ctm3f90/OSLO/emissions_megan.f90
M /ctm3f90/OSLO/emissions_ocean.f90
M /ctm3f90/OSLO/utilities_oslo.f90
M /ctm3f90/cmn_size.F90
M /ctm3f90/grid.f90
M /ctm3f90/pmain.f90
M /ctm3f90/utilities.f90
20180203 Amund Sovde Haslerud
Small updates.
OpenMP scheduling is now dynamic (some speed increase).
Timings are done with different system call, printing better info
(and correct times when actual date crosses a month).
Yet another bugfix to the not-default drydep scheme.
------------------------------------------------------------------------
r201 | asovde | 2018-01-25 15:53:08 +0100 (to., 25 jan. 2018) | 1 line
Changed paths:
M /ctm3f90/OSLO/drydeposition_oslo.f90
M /ctm3f90/OSLO/emissions_megan.f90
M /ctm3f90/cmn_sfc.f90
Anoter update of the EMEP-dydep test version
------------------------------------------------------------------------
r200 | asovde | 2018-01-24 13:45:56 +0100 (on., 24 jan. 2018) | 1 line
Changed paths:
M /ctm3f90/OSLO/drydeposition_oslo.f90
Updating test version of EMEP drydep
------------------------------------------------------------------------
r199 | sfalk | 2018-01-23 08:41:55 +0100 (ti., 23 jan. 2018) | 1 line
Changed paths:
M /ctm3f90/spectral_routines.f
Style.
------------------------------------------------------------------------
r198 | asovde | 2018-01-19 14:09:09 +0100 (fr., 19 jan. 2018) | 1 line
Changed paths:
M /ctm3f90/OSLO/emissions_megan.f90
corrected non-initialised value
------------------------------------------------------------------------
r197 | asovde | 2018-01-19 12:04:45 +0100 (fr., 19 jan. 2018) | 8 lines
Changed paths:
M /ctm3f90/Makefile
M /ctm3f90/OSLO/chem_oslo_rates.f90
M /ctm3f90/OSLO/diagnostics_scavenging.f90
M /ctm3f90/OSLO/pchemc_ij.f90
M /ctm3f90/OSLO/pchemc_str_ij.f90
M /ctm3f90/OSLO/soa_oslo.f90
M /ctm3f90/scavenging_largescale_uci.f90
A /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_ceds20170518.dat
D /ctm3f90/tables/Ltracer_emis_ceds_2000.inp
M /ctm3f90/tables/scavenging_wet.inp
20180119 Amund Sovde Haslerud
Small updates
Removed tables/Ltracer_emis_ceds_2000.inp
Added tables/EMISSION_LISTS/Ltracer_emis_ceds20170518.dat
Added a few things for CH3OH inclusion (will do that next).
------------------------------------------------------------------------
r196 | asovde | 2018-01-10 13:30:31 +0100 (on., 10 jan. 2018) | 15 lines
Changed paths:
M /ctm3f90/OSLO/emissions_megan.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/ncutils.f90
M /ctm3f90/OSLO/psc_microphysics.f90
M /ctm3f90/p-dyn0.f
A /ctm3f90/tables/solflux_7month_running_mean_1990_2017.dat
20180110 Amund Sovde Haslerud
Small updates
Number of PSC bins (N_B) is reduced from 40 to 15. This gives up to
0.2% difference in O3 total column in O3-hole conditions.
Added routine to read monthly megan-emissions produced by Oslo CTM3.
p-dyn0.f: Added info on how to increase the number of NADV, in case of
negative tracers due to vertical advection.
Added: tables/solflux_7month_running_mean_1990_2017.dat
------------------------------------------------------------------------
r195 | asovde | 2018-01-03 09:46:44 +0100 (on., 03 jan. 2018) | 62 lines
Changed paths:
M /ctm3f90/L60CTM.inp
D /ctm3f90/MANUAL
M /ctm3f90/Makefile
A /ctm3f90/OSLO/atom.f90
M /ctm3f90/OSLO/bcoc_oslo.f90
M /ctm3f90/OSLO/caribic2.f90
M /ctm3f90/OSLO/cmn_oslo.f90
M /ctm3f90/OSLO/diagnostics_general.f90
M /ctm3f90/OSLO/drydeposition_oslo.f90
M /ctm3f90/OSLO/emisdep4chem_oslo.f90
M /ctm3f90/OSLO/emissions_aircraft.f90
A /ctm3f90/OSLO/emissions_megan.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/OSLO/emissions_volcanoes.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/fallingaerosols.f90
M /ctm3f90/OSLO/hippo.f90
M /ctm3f90/OSLO/input_oslo.f90
M /ctm3f90/OSLO/main_oslo.f90
M /ctm3f90/OSLO/ncutils.f90
M /ctm3f90/OSLO/pchemc_ij.f90
M /ctm3f90/OSLO/physics_oslo.f90
M /ctm3f90/OSLO/psc_microphysics.f90
M /ctm3f90/OSLO/satelliteprofiles_mls.f90
M /ctm3f90/OSLO/strat_h2o.f90
M /ctm3f90/OSLO/strat_loss.f90
M /ctm3f90/OSLO/utilities_oslo.f90
M /ctm3f90/OSLO/verticalprofiles_stations2.f90
M /ctm3f90/README
M /ctm3f90/cmn_ctm.f90
M /ctm3f90/cmn_met.f90
M /ctm3f90/cmn_sfc.f90
M /ctm3f90/cmn_size.F90
M /ctm3f90/fastjx.f90
M /ctm3f90/grid.f90
M /ctm3f90/initialize.f90
A /ctm3f90/manual_osloctm3.pdf
M /ctm3f90/metdata_ecmwf.f90
M /ctm3f90/metdata_ecmwf_uioformat.f90
M /ctm3f90/p-dyn2.f
M /ctm3f90/pbl_mixing.f90
M /ctm3f90/pmain.f90
M /ctm3f90/source_uci.f90
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_biomassburning.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_ocean.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_soils.dat
A /ctm3f90/tables/FJX_solminmax.dat
A /ctm3f90/tables/Ltracer_emis_ceds17_2000_megan_gfed4.inp
A /ctm3f90/tables/Ltracer_emis_ceds17_2000_megan_gfed4blhmonthly.inp
A /ctm3f90/tables/Ltracer_emis_ceds17_2014_megan_gfed4blhdaily.inp
A /ctm3f90/tables/megan_tables.dat
A /ctm3f90/tables/test_scav.inp
M /ctm3f90/tables/tracer_list_all_soa.d
M /ctm3f90/tables/tracer_list_bcoc.d
M /ctm3f90/tables/tracer_list_dust.d
M /ctm3f90/tables/tracer_list_nitrate.d
M /ctm3f90/tables/tracer_list_salt.d
M /ctm3f90/utilities.f90
20180103 Amund Sovde Haslerud
Updates
After this update (and possible corrections), the repository will be
moved to github.
User manual is now just a pdf in the main directory, manual_osloctm3.pdf.
The latex source code is located in a separate repository.
The Photosynthetic active radiation variable PAR has changed name to
PhotActRad, because it was a hassle to search for PAR.
MEGANv2.10 has been included. You have to make sure not to use other
biogenic emissions in the emission list (also NOx and NH3).
To include it, there is an entry in STV you have to include.
Biomass burning from GFED4 is now distributed according to
air mass in the boundary layer - i.e. from the surface and up to the
uppermost box completely within PBL. (Code 569 for GFED4.)
GFED4
- can be used with daily distributions.
- Several options for vertical distributions are possible.
I will set the default to code 572.
- Code 567: Monthly, use BBH-file for vertical distribution
- Code 573: Daily, use BBH-file for vertical distribution
- Code 569: Monthly, use BLH pressures: fraction dP/dPtot
- Code 570: Daily, use BLH pressures: fraction dP/dPtot
- Code 571: Monthly, use BLH altitudes: fraction dZ/dZtot
- Code 572: Daily, use BLH altitudes: fraction dZ/dZtot
CEDS:
- Code 574: Monthly, use BLH altitudes: fraction dZ/dZtot
- Code 568: Monthly, use BBH-file for vertical distribution
PBL mixing can now be done by interpolating BLH between current
meteorological time step and the next. You have to uncomment the
call, located in the CYC-loop in pmain.
The update is thus done every time PBL mixing is called, which
is every 15 minutes when NRCHEM=1 (i.e. PBL height is updated
12 times per meteorological time step).
Interpolated BLH will be default in the next update.
Some other variable names have changed names, e.g. LS_FRAC is now
landSurfTypeFrac, which also have changed the order of indices.
Clean up diagnostics_general: tnd_emis2file
New input lists and tracer lists (correct molecular weights).
Included some table files that I have used before.
MANUAL directory is removed, the manual is now in main directory as pdf.
The manual LaTeX code is found on amoc.
Solar min/max: Included some routines to read solar min/max data and
monthly variation between these. See start of subroutine RD_XXX in
fastjx.f90.
------------------------------------------------------------------------
r194 | asovde | 2017-09-18 09:37:41 +0200 (ma., 18 sep. 2017) | 14 lines
Changed paths:
M /ctm3f90/Makefile
M /ctm3f90/OSLO/bcoc_oslo.f90
M /ctm3f90/OSLO/diagnostics_general.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/averages.f90
20170912 Amund Sovde Haslerud
Corrections to v1.0.
Updated error in biomass burning read-in (emissions_oslo.f90): It read
NPAR components, not EPAR_FIR, so when running only BCOC you didn't get
all emissions.
averages.f90: Volume output was not correct (it wrote air density instead).
bcoc_oslo.f90: Missing a parameter for subroutine name (caused compilation
error).
------------------------------------------------------------------------
r193 | asovde | 2017-09-01 14:39:12 +0200 (fr., 01 sep. 2017) | 67 lines
Changed paths:
M /ctm3f90/L60CTM.inp
M /ctm3f90/MANUAL/LATEX/manual.tex
M /ctm3f90/MANUAL/LATEX/references_ctm.bib
M /ctm3f90/MANUAL/osloctm3_manual.pdf
M /ctm3f90/Makefile
M /ctm3f90/OSLO/DUMMIES/chem_oslo_rates.f90
M /ctm3f90/OSLO/bcoc_oslo.f90
M /ctm3f90/OSLO/ch4routines.f90
M /ctm3f90/OSLO/chem_oslo_rates.f90
M /ctm3f90/OSLO/cmn_oslo.f90
M /ctm3f90/OSLO/diagnostics_general.f90
A /ctm3f90/OSLO/diagnostics_general_rrdiag.f90
M /ctm3f90/OSLO/diagnostics_scavenging.f90
M /ctm3f90/OSLO/emisdep4chem_oslo.f90
M /ctm3f90/OSLO/emissions_aircraft.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/gmdump3hrs.f90
M /ctm3f90/OSLO/input_oslo.f90
M /ctm3f90/OSLO/main_oslo.f90
M /ctm3f90/OSLO/ncutils.f90
M /ctm3f90/OSLO/pchemc_ij.f90
M /ctm3f90/OSLO/pchemc_str_ij.f90
M /ctm3f90/OSLO/physics_oslo.f90
M /ctm3f90/OSLO/seasalt.f90
M /ctm3f90/OSLO/stratchem_oslo.f90
M /ctm3f90/OSLO/tropchem_oslo.f90
M /ctm3f90/OSLO/utilities_oslo.f90
M /ctm3f90/averages.f90
M /ctm3f90/cmn_chem.f90
M /ctm3f90/cmn_ctm.f90
M /ctm3f90/cmn_diag.f90
M /ctm3f90/cmn_precision.f90
M /ctm3f90/cmn_size.F90
M /ctm3f90/initialize.f90
M /ctm3f90/lightning.f90
M /ctm3f90/omp.f90
M /ctm3f90/p-linoz.f
M /ctm3f90/pmain.f90
M /ctm3f90/regridding.f90
M /ctm3f90/source_uci.f90
M /ctm3f90/steflux.f90
M /ctm3f90/stt_save_load.f90
A /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_biomassburning.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_ch4_bousquet.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_eclipse4.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_eclipse5.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_edgar42.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_geia.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_htap.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_lamarque.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_megan.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_meganMACC.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_ocean.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_retro.dat
M /ctm3f90/tables/EMISSION_LISTS/Ltracer_emis_soils.dat
A /ctm3f90/tables/Ltracer_emis_ceds_2000.inp
M /ctm3f90/tables/Ltracer_emis_eclipse_V5_2010_meganMACC.inp
M /ctm3f90/tables/Ltracer_emis_noemis.inp
M /ctm3f90/tables/polar_o3loss.dat
M /ctm3f90/tables/scavenging_wet.inp
M /ctm3f90/tables/tracer_list_all_soa.d
M /ctm3f90/utilities.f90
20170901 Amund Sovde Haslerud
Update to v1.0.
Many files are now written as netCDF4 instead of fortran binary files, but
not all. I will continue that work in the coming months.
Overview:
- output files are written as netCDF4
- averages (avgsav_YYYYMMDD_YYYYMMDD.nc)
- 3-hr output files (previously netCDF3)
- scavenging diagnostics (scavenging_daily_totals_YYYY.nc and
scavenging_daily_2d_YYYYMMDD.nc)
- 3-hr dobson fields (dobson_nmet.nc)
- emission diagnostics (emis_daily_totals_YYYY.nc and
emis_accumulated_3d_YYYYMMDD_YYYYMMDD.nc)
- ste-flux (ste_YYYYMMDD_YYYYMMDD.nc)
- restart file is written as netCDF4
- reading restart file is set to read netCDF4.
Change this to old read-in if necessary (initialize.f90)
- CEDS emissions are available.
- BCOC CHET is now 12-month, generated 2016.
- manual update (still a few issues that are unresolved - working on it)
- Changed names of LPAUZ to LSTRATAIR_E90 and LO3PAUZ to LSTRATAIR_O3.
Main updates
- cmn_ctm.f90: Added JDAY_NEXT, JYEAR_NEXT, JMON_NEXT, JDATE_NEXT
- cmn_size.f90: Added TNAMELEN to define character length of TNAME and
XTNAME.
- averages.f90: avgsav-files are now written on netCDF4 format.
Removed old unused routines.
- steflux.f90: writes output in netCDF4.
- stt_save_load.f90: Included new routines for saveing/loading netCDF4
restart files.
- utilities.f90: Replaced old CALENDR with subroutine calendar and
get_soldecdis, to calculate JDAY_NEXT, JMON_NEXT,
JYEAR_NEXT.
- tables/scavenging_wet.inp: Updated.
- tables/Ltracer_emis_eclipse_V5_2010_meganMACC.inp: Updated
- tables/tracer_list_all_soa.d: Updated
- OSLO/cmn_oslo.f90: TP_TYPE definition is moved here.
- OSLO/bcoc_oslo.f90: New 12-months CHET.
- OSLO/ch4routines.f90: Updated. Added possibility to scale fields.
- OSLO/diagnostics_general.f90: Removed RR-diags (put them in separate file)
Several output files are now netCDF4.
- OSLO/diagnostics_scavenging.f90: Scavenging files are now netCDF4.
- OSLO/emisdep4chem_oslo.f90: Updated for aircraft emissions.
- OSLO/emissions_oslo.f90: Updated
- OSLO/emisutils_oslo.f90: Added CEDS routines.
- OSLO/emissions_aircraft.f90: Added CEDS routines.
- OSLO/gmdump3hrs.f90: Writes compressed netCDF4
- OSLO/cmn_oslo.f90: Added new categories.
- OSLO/ncutils.f90: Added readnc_sub3d_from3d
- OSLO/pchemc_ij.f90: Added test on isoprene loss.
DDDIAG for NO3coarse was not included: corrected.
- OSLO/physics_oslo.f90: Updated to handle other tropopause definitions.
TP_TYPE definition is moved to cmn_oslo.f90.
- OSLO/stratchem_oslo.f90: Chemical production and loss of Ox is diagnosed.
- OSLO/tropchem_oslo.f90: Chemical production and loss of Ox is diagnosed.
- OSLO/utilities_oslo.f90: Updated, minor changes.
- L60CTM.inp: Removed 3D-section at the very bottom.
New files
- tables/Ltracer_emis_ceds_2000.inp
- tables/EMISSION_LISTS/Ltracer_emis_biomassburning.dat
- OSLO/diagnostics_general_rrdiag.f90
------------------------------------------------------------------------
r192 | asovde | 2016-06-12 14:42:16 +0200 (sø., 12 juni 2016) | 20 lines
Changed paths:
M /ctm3f90/L60CTM.inp
M /ctm3f90/Makefile
M /ctm3f90/OSLO/cmn_oslo.f90
M /ctm3f90/OSLO/dust_oslo.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/pchemc_ij.f90
M /ctm3f90/OSLO/soa_oslo.f90
M /ctm3f90/averages.f90
M /ctm3f90/tables/Ltracer_emis_eclipse_V5_2010_meganMACC.inp
M /ctm3f90/tables/scavenging_wet.inp
20160612 Amund Sovde Haslerud
- Corrected isoprene emissions for SOA (~500Tg/yr instead of ~220Tg/yr).
Also applies to chemistry.
- Corrected precursor emissions for SOA.
- Definition of biomass burning emissions is moved from top of
emission file to the bottom.
- Here you now list all tracers to be included, along with
scaling factors (global + partitions).
- Wet scavenging update:
SO4: Not scavenged on large scale ice (previously 50%)
OM-phil: Not scavenged on large scale ice (previously 20%)
BC-phil: Not scavenged on large scale ice (previously 20%)
SALT: Not scavenged on large scale ice (previously 50%)
DUST: 50% available for scavenging on large scale ice (previously 100%)
Nitrate aerosols: Not scavenged on large scale ice (previously 50%)
SOA: 20% available for scavenging on large scale ice (previously 100%)
Because the overall 80% available for scavenging still applies, the
table value is 25%.
------------------------------------------------------------------------
r191 | asovde | 2016-06-01 10:54:11 +0200 (on., 01 juni 2016) | 21 lines
Changed paths:
M /ctm3f90/OSLO/diagnostics_scavenging.f90
M /ctm3f90/OSLO/dust_oslo.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/gmdump3hrs.f90
M /ctm3f90/OSLO/input_oslo.f90
M /ctm3f90/OSLO/seasalt.f90
M /ctm3f90/initialize.f90
M /ctm3f90/scavenging_largescale_uci.f90
M /ctm3f90/tables/scavenging_wet.inp
M /ctm3f90/tables/tracer_list_all_soa.d
20160601 Amund Sovde Haslerud
Updated scavenging table: soa gases and soa precursors on ice.
Split 3-hr output for soa in two: natural and anthropogenic.
Small corrections / bug fixes.
Updated
tables/scavenging_wet.inp
tables/tracer_list_all_soa.d
OSLO/gmdump3hrs.f90
OSLO/seasalt.f90
OSLO/emisutils_oslo.f90
OSLO/input_oslo.f90
OSLO/dust_oslo.f90
OSLO/diagnostics_scavenging.f90
initialize.f90
scavenging_largescale_uci.f90
------------------------------------------------------------------------
r190 | asovde | 2016-05-10 09:29:34 +0200 (ti., 10 mai 2016) | 60 lines
Changed paths:
M /ctm3f90/Makefile
M /ctm3f90/OSLO/DUMMIES/soa_oslo.f90
M /ctm3f90/OSLO/chem_oslo_rates.f90
M /ctm3f90/OSLO/cnv_oslo.f90
M /ctm3f90/OSLO/drydeposition_oslo.f90
M /ctm3f90/OSLO/emisdep4chem_oslo.f90
M /ctm3f90/OSLO/emissions_ocean.f90
M /ctm3f90/OSLO/nitrate.f90
M /ctm3f90/OSLO/soa_oslo.f90
M /ctm3f90/OSLO/sulphur_oslo.f90
M /ctm3f90/OSLO/tropchem_oslo.f90
M /ctm3f90/c3run.job
M /ctm3f90/cmn_chem.f90
M /ctm3f90/pbl_mixing.f90
M /ctm3f90/regridding.f90
M /ctm3f90/scavenging_largescale_uci.f90
M /ctm3f90/tables/scavenging_wet.inp
20160510 Amund Sovde
*SCAVENGING UPDATE*
Previously, the large scale wet removal did not handle hard-coded
modifications to Henry expressions (i.e. calculation of effective
Henry expressions). This is now remedied.
Effective Henry in the convective scavenging was not turned on for
SO2. This is fixed.
scavenging_wet.inp is UPDATED!
Technical:
The TCKAQA variable has now changed from an enhancement factor to
be a flag denoting whether hard coding is necessary. Setting it to
non-zero will look for specific code, given in getHstar in
scavenging_largescale_uci.f90.
Some other small updates are included, which will not affect results.
Modified files:
c3run.job:
Updated
cmn_chem.f90:
TCKAQA is now a flag
pbl_mixing.f90:
PBL_KEDDY=KC(2) was set after KC had been adjusted by:
do L = 1, MID-1
KC(L) = max(KC(L), KC(MID))
end do
I tested this, and it had no effect whatsoever. Will set
PBL_KEDDY before the adjustment anyway.
scavenging_largescale_uci.f90:
Updated with subroutine getHstar.
OSLO/chem_oslo_rates.f90:
CTM2-style aerosols for tropospheric heterogeneous chemistry.
OSLO/cnv_oslo.f90:
Updated to handle effective henry expressions better.
OSLO/drydeposition_oslo.f90:
Tests species on component id instead of name.
OSLO/emisdep4chem_oslo.f90:
getVDEP_oslo now gets VDEP(NPAR) as input.
OSLO/emissions_ocean.f90:
SeaSaltScheme set as in seasalt.f90.
OSLO/soa_oslo.f90:
Added new diags for gases. Updated printouts.
OSLO/sulphur_oslo.f90:
Removed some rates that have new names.
OSLO/tropchem_oslo.f90:
New calls to SOA diags.
tables/scavenging_wet.inp:
Updated: TCKAQA is now a flag.
------------------------------------------------------------------------
r189 | asovde | 2016-04-19 12:01:09 +0200 (ti., 19 april 2016) | 46 lines
Changed paths:
A /ctm3f90/L60CTM.inp
A /ctm3f90/L60CTM_bcoc.inp
D /ctm3f90/L60T159.inp
D /ctm3f90/L60T159_bcoc.inp
M /ctm3f90/Makefile
A /ctm3f90/OSLO/DEAD_COLUMN/dead_history.f90
M /ctm3f90/OSLO/DEAD_COLUMN/dead_inirun.f90
M /ctm3f90/OSLO/DEAD_COLUMN/dstdbg.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstdpsdry.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstmbl.F90
D /ctm3f90/OSLO/DEAD_COLUMN/histout.F
M /ctm3f90/OSLO/DUMMIES/dust_oslo.f90
M /ctm3f90/OSLO/DUMMIES/seasalt.f90
D /ctm3f90/OSLO/aerobdg2nc.f90
M /ctm3f90/OSLO/chem_oslo_rates.f90
M /ctm3f90/OSLO/cmn_oslo.f90
M /ctm3f90/OSLO/diagnostics_general.f90
M /ctm3f90/OSLO/diagnostics_scavenging.f90
M /ctm3f90/OSLO/dust_oslo.f90
M /ctm3f90/OSLO/emissions_aircraft.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/ncutils.f90
M /ctm3f90/OSLO/pchemc_str_ij.f90
M /ctm3f90/OSLO/seasalt.f90
M /ctm3f90/OSLO/strat_h2o.f90
M /ctm3f90/OSLO/tropchem_oslo.f90
M /ctm3f90/cmn_ctm.f90
M /ctm3f90/grid.f90
M /ctm3f90/initialize.f90
M /ctm3f90/metdata_ecmwf.f90
M /ctm3f90/pmain.f90
M /ctm3f90/regridding.f90
M /ctm3f90/stt_save_load.f90
A /ctm3f90/tables/P_meanT159.nc
A /ctm3f90/tables/P_meanT319.nc
A /ctm3f90/tables/P_meanT319_IFScy36r1_2005.nc
20160419 Amund Sovde
*BUDGETS*
DUST budget: Updated to diagnose all DUST tracers separately.
Dust budget file contains the same as before, but now it is
possible to turn on putting out budgets for all DUST tracers.
Set LDUSTDIAG3D=.true. in dust_oslo.f90
SALT budget: Same as for DUST, but flag LSALTDIAG3D=.true. in
seasalt.f90.
This means that the file aerobdg2nc.f90 is removed.
*PMEAN*
PMEAN is read from a separate file, defined in the input file.
I have now updated this to be netcdf file, in T319 resolution, which is
then interpolated to the model resolution.
The impact of this should be minimal; PMEAN is only used to calculate
topography, and should not affect chemistry or aerosol physics.
Transport and so on uses hybrid coefficients and surface pressure, not
topography height.
*input file*
The LxxTyy-files are renamed to LxxCTM.inp, because they are no longer
dependent on horizontal resolution.
Removed:
- histout.F
- aerobdg2nc.f90
- LxxTyy*
New:
- dead_history.f90: Most of the history fields are commented out,
since they were not used. When needed, it is easy
to put them back.
- tables/P_meanT319_IFScy36r1_2005.nc
- tables/P_meanT159.nc
- tables/P_meanT319.nc
- LxxCTM*
------------------------------------------------------------------------
r188 | asovde | 2016-03-11 10:17:19 +0100 (fr., 11 mars 2016) | 5 lines
Changed paths:
M /ctm3f90/MANUAL/LATEX/manual.tex
M /ctm3f90/MANUAL/LATEX/references_ctm.bib
M /ctm3f90/MANUAL/osloctm3_manual.pdf
M /ctm3f90/Makefile
M /ctm3f90/OSLO/emissions_aircraft.f90
M /ctm3f90/OSLO/emissions_ocean.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/input_oslo.f90
M /ctm3f90/grid.f90
M /ctm3f90/metdata_ecmwf.f90
M /ctm3f90/metdata_ecmwf_uioformat.f90
20160311: Amund Sovde
CTM3f90 update: Just bug fixes on my last commits, and a small update
on the manual.
------------------------------------------------------------------------
r187 | asovde | 2016-03-02 14:01:05 +0100 (on., 02 mars 2016) | 1 line
Changed paths:
M /ctm3f90/OSLO/nitrate.f90
asovde: small correction
------------------------------------------------------------------------
r186 | asovde | 2016-03-02 10:02:29 +0100 (on., 02 mars 2016) | 63 lines
Changed paths:
M /ctm3f90/L60T159.inp
M /ctm3f90/L60T159_bcoc.inp
M /ctm3f90/L60T42.inp
M /ctm3f90/MANUAL/LATEX/manual.tex
M /ctm3f90/MANUAL/LATEX/references_ctm.bib
M /ctm3f90/MANUAL/osloctm3_manual.pdf
M /ctm3f90/Makefile
A /ctm3f90/OSLO/DEAD_COLUMN/dead_inirun.f90
M /ctm3f90/OSLO/DEAD_COLUMN/dstcst.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstctl.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstmbl.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstmblutl.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstpsd.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dsttibds.F90
D /ctm3f90/OSLO/DEAD_COLUMN/inirun.F
M /ctm3f90/OSLO/DEAD_COLUMN/nf90_utl.F90
M /ctm3f90/OSLO/DUMMIES/dust_oslo.f90
M /ctm3f90/OSLO/DUMMIES/seasalt.f90
M /ctm3f90/OSLO/aerobdg2nc.f90
M /ctm3f90/OSLO/aerosols2fastjx.f90
M /ctm3f90/OSLO/bcoc_oslo.f90
M /ctm3f90/OSLO/caribic2.f90
M /ctm3f90/OSLO/ch4routines.f90
M /ctm3f90/OSLO/chem_oslo.f90
M /ctm3f90/OSLO/chem_oslo_rates.f90
M /ctm3f90/OSLO/cmn_oslo.f90
M /ctm3f90/OSLO/cnv_oslo.f90
M /ctm3f90/OSLO/dateconv.f90
M /ctm3f90/OSLO/diagnostics_general.f90
M /ctm3f90/OSLO/diagnostics_scavenging.f90
M /ctm3f90/OSLO/drydeposition_oslo.f90
M /ctm3f90/OSLO/dust_oslo.f90
M /ctm3f90/OSLO/emisdep4chem_oslo.f90
M /ctm3f90/OSLO/emissions_aircraft.f90
M /ctm3f90/OSLO/emissions_ocean.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/OSLO/emissions_volcanoes.f90
M /ctm3f90/OSLO/emisutils_oslo.f90
M /ctm3f90/OSLO/fallingaerosols.f90
M /ctm3f90/OSLO/gmdump3hrs.f90
M /ctm3f90/OSLO/hippo.f90
M /ctm3f90/OSLO/input_oslo.f90
M /ctm3f90/OSLO/main_oslo.f90
M /ctm3f90/OSLO/ncutils.f90
M /ctm3f90/OSLO/nitrate.f90
M /ctm3f90/OSLO/pchemc_ij.f90
M /ctm3f90/OSLO/pchemc_str_ij.f90
M /ctm3f90/OSLO/physics_oslo.f90
M /ctm3f90/OSLO/psc_microphysics.f90
M /ctm3f90/OSLO/qssa_integrator.f90
M /ctm3f90/OSLO/satelliteprofiles_mls.f90
M /ctm3f90/OSLO/seasalt.f90
M /ctm3f90/OSLO/seasaltprod.f90
M /ctm3f90/OSLO/soa_oslo.f90
M /ctm3f90/OSLO/strat_aerosols.f90
M /ctm3f90/OSLO/strat_h2o.f90
M /ctm3f90/OSLO/strat_loss.f90
M /ctm3f90/OSLO/strat_o3noy_clim.f90
M /ctm3f90/OSLO/stratchem_oslo.f90
M /ctm3f90/OSLO/sulphur_oslo.f90
M /ctm3f90/OSLO/troccinox_ban.f90
M /ctm3f90/OSLO/troccinox_fal.f90
M /ctm3f90/OSLO/troccinox_geo.f90
M /ctm3f90/OSLO/tropchem_oslo.f90
M /ctm3f90/OSLO/utilities_oslo.f90
M /ctm3f90/OSLO/verticalprofiles_stations2.f90
M /ctm3f90/README
M /ctm3f90/averages.f90
M /ctm3f90/budgets.f90
M /ctm3f90/cloudjx.f90
M /ctm3f90/cmn_chem.f90
M /ctm3f90/cmn_ctm.f90
M /ctm3f90/cmn_diag.f90
M /ctm3f90/cmn_fjx.f90
M /ctm3f90/cmn_met.f90
M /ctm3f90/cmn_parameters.f90
M /ctm3f90/cmn_precision.f90
M /ctm3f90/cmn_sfc.f90
M /ctm3f90/cmn_size.F90
M /ctm3f90/convection.f90
M /ctm3f90/fastjx.f90
M /ctm3f90/grid.f90
M /ctm3f90/initialize.f90
M /ctm3f90/lightning.f90
M /ctm3f90/metdata_ecmwf.f90
M /ctm3f90/metdata_ecmwf_uioformat.f90
M /ctm3f90/omp.f90
M /ctm3f90/pbl_mixing.f90
M /ctm3f90/pmain.f90
M /ctm3f90/pmain_lit.f90
M /ctm3f90/regridding.f90
M /ctm3f90/scavenging_drydep_uci.f90
M /ctm3f90/scavenging_largescale_uci.f90
M /ctm3f90/source_uci.f90
M /ctm3f90/spectral_routines.f
M /ctm3f90/steflux.f90
M /ctm3f90/stt_save_load.f90
M /ctm3f90/tables/Ltracer_emis_eclipse_V5_2010_meganMACC.inp
M /ctm3f90/tables/Ltracer_emis_noemis.inp
A /ctm3f90/tables/tracer_list_dust.d
D /ctm3f90/tables/tracer_list_dust.inp
M /ctm3f90/utilities.f90
20160302: Amund Sovde
CTM3f90 update: No big changes, but a bit closer to setting v1.0.
IMPORTANT:
- Not decided yet on SALT production scheme.
- DO NOT use DUST until it is decided which mobilisation map to use.
Ask Amund if you must.
Removed:
tracer_list_dust.inp
OSLO/DEAD_COLUMN/inirun.F
Added:
tracer_list_dust.d
OSLO/DEAD_COLUMN/dead_inirun.f90
Modifications:
emissions_oslo.f90: Added EFACT to STV read-in. Added AirEmisPath read-in.
emisutils_oslo.f90: Added EFACT to STV read-in. Added setting of
dust mobilisation map and scaling factor.
stt_save_load.f90: Corrected indices of a loop in OSLO_CON_RUN42
cmn_size.F90: Updated version number
tables/Ltracer_emis_eclipse_V5_2010_meganMACC.inp: Added DUST section to STV
OSLO/gmdump3hrs.f90: Corrected for BC/OM division into bb/bf/ff.
OSLO/seasalt.f90: Added production schemes.
OSLO/seasaltprod.f90: Added production schemes.
OSLO/pchemc_str_ij.f90: Added chemprod/chemloss diags.
OSLO/DEAD_COLUMN/dstmbl.F90: Removed parameter for fudge factor.
OSLO/DEAD_COLUMN/dstcst.F90: Added constants. Updated to use CTM3 constants.
OSLO/DEAD_COLUMN/dsttibds.F90: Reads a defined mobilisation map.
OSLO/emissions_ocean.f90: Added possible sea salt scheme.
OSLO/input_oslo.f90: Moved read-in of emissions to before DUST.
OSLO/diagnostics_general.f90: Updated chembud_output.
Split some diags.
OSLO/DUMMIES/dust_oslo.f90: Updated.
OSLO/DUMMIES/seasalt.f90: Updated.
OSLO/dust_oslo.f90: Updated.
OSLO/physics_oslo.f90: Added subroutine IJLfield2ThetaLvs.
cmn_met.f90: Longer path names.
README: Updated
metdata_ecmwf.f90: Longer FNAME.
initialize.f90: Updated read-in of metdata paths.
MANUAL/osloctm3_manual.pdf: Updated.
MANUAL/LATEX/references_ctm.bib: Updated.
MANUAL/LATEX/manual.tex: Updated.
------------------------------------------------------------------------
r185 | asovde | 2016-02-03 12:54:18 +0100 (on., 03 feb. 2016) | 75 lines
Changed paths:
M /ctm3f90/MANUAL/LATEX/manual.tex
D /ctm3f90/MANUAL/LATEX/table_reactions.tex
M /ctm3f90/MANUAL/osloctm3_manual.pdf
M /ctm3f90/Makefile
M /ctm3f90/OSLO/DEAD_COLUMN/blmutl.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dstmbl.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dsttibds.F90
M /ctm3f90/OSLO/DEAD_COLUMN/dsttvbds.F90
M /ctm3f90/OSLO/DEAD_COLUMN/histout.F
M /ctm3f90/OSLO/DEAD_COLUMN/inirun.F
M /ctm3f90/OSLO/DEAD_COLUMN/wbl_mdl.F90
M /ctm3f90/OSLO/DUMMIES/dust_oslo.f90
M /ctm3f90/OSLO/bcoc_oslo.f90
M /ctm3f90/OSLO/caribic2.f90
M /ctm3f90/OSLO/diagnostics_general.f90
M /ctm3f90/OSLO/dust_oslo.f90
M /ctm3f90/OSLO/emissions_ocean.f90
M /ctm3f90/OSLO/emissions_oslo.f90
M /ctm3f90/OSLO/gmdump3hrs.f90
M /ctm3f90/OSLO/hippo.f90
M /ctm3f90/OSLO/satelliteprofiles_mls.f90
M /ctm3f90/OSLO/seasalt.f90
A /ctm3f90/OSLO/seasaltprod.f90
M /ctm3f90/OSLO/troccinox_ban.f90
M /ctm3f90/OSLO/troccinox_fal.f90
M /ctm3f90/OSLO/troccinox_geo.f90
M /ctm3f90/OSLO/verticalprofiles_stations2.f90
D /ctm3f90/commit_file
M /ctm3f90/grid.f90
M /ctm3f90/initialize.f90
M /ctm3f90/metdata_ecmwf.f90
D /ctm3f90/metdata_ecmwf_netcdf.f90
M /ctm3f90/metdata_ecmwf_uioformat.f90
M /ctm3f90/pmain.f90
M /ctm3f90/scavenging_largescale_uci.f90
M /ctm3f90/stt_save_load.f90
20160203: Amund Sovde
CTM3F90-update
Sea salt production
Sea salt production routines are moved from seasalt.f90 to its
own module seasaltprod.f90. This is because both emissions_ocean.f90
and seasalt.f90 need to use the routines.
DUST
Meteorological variables SSRD, STRD, SWVL1 and SD are now used by the
dust module.
Deleted:
metdata_ecmwf_netcdf.f90: This was the same file as metdata_ecmwf.f90.
commit_file: removed
MANUAL/LATEX/table_reactions.tex: Moved into manual.tex
New file:
OSLO/seasaltprod.f90: sea salt production routines
Modified files:
grid.f90: XDEDG now goes from 0 to 360.
old: 0-180, and then switch -360 at dateline
initialize.f90: Corrected MPATH2 for netcdf4.
metdata_ecmwf.f90: Added read-in of some fields for DUST:
SSRD, STRD and SWVL1
metdata_ecmwf_uioformat.f90: Same as metdata_ecmwf.f90
pmain.f90: Added possible printout of dust production.
It is now commented out.
scavenging_largescale_uci.f90: Insignificant update.
stt_save_load.f90: Corrected some small bug on version number.
OSLO/DEAD_COLUMN/dstmbl.F90: Updated calls to outfld_1.
OSLO/DEAD_COLUMN/histout.F: Updated
OSLO/DEAD_COLUMN/inirun.F: Updated.
OSLO/DEAD_COLUMN/dsttvbds.F90: Added interpolation from T159 for variables
read from file.
OSLO/DEAD_COLUMN/blmutl.F90: Insignificant update.
OSLO/DEAD_COLUMN/wbl_mdl.F90: No real change.
OSLO/DEAD_COLUMN/dsttibds.F90: No real change.
OSLO/bcoc_oslo.f90: Corrected xdgrd_loc to match updated XDGRD not
changing sign on dateline.
OSLO/caribic2.f90: Corrected ctmlon/ctmlonb to match updated XDGRD/XDEDG
not changing sign on dateline.
OSLO/diagnostics_general.f90: Commented out calls to vprofs_master.
OSLO/dust_oslo.f90: New routines to set meteorological variables
SSRD, STRD and SWVL1. SD is also set from metdata now.
OSLO/emissions_ocean.f90: Corrected oceanic emissions of organic carbon.
OSLO/gmdump3hrs.f90: Corrected xdgrd_loc to match updated XDGRD not
changing sign on dateline.
OSLO/hippo.f90: Corrected ctmlon/ctmlonb to match updated XDGRD/XDEDG
not changing sign on dateline.
OSLO/satelliteprofiles_mls.f90: Corrected ctmlon/ctmlonb to match
updated XDGRD/XDEDG not changing sign
on dateline.
OSLO/seasalt.f90: Removed production routines (now in seasaltprod.f90).
Added comments.
OSLO/troccinox_ban.f90: Corrected ctmlon/ctmlonb to match updated XDGRD/XDEDG
not changing sign on dateline.
OSLO/troccinox_fal.f90: Corrected ctmlon/ctmlonb to match updated XDGRD/XDEDG
not changing sign on dateline.
OSLO/troccinox_geo.f90: Corrected ctmlon/ctmlonb to match updated XDGRD/XDEDG
not changing sign on dateline.
OSLO/verticalprofiles_stations2.f90: Corrected ctmlon/ctmlonb to match
updated XDGRD/XDEDG not changing
sign on dateline.
OSLO/DUMMIES/dust_oslo.f90: Updated.
MANUAL/osloctm3_manual.pdf: Updated
MANUAL/LATEX/manual.tex: Updated
------------------------------------------------------------------------
r184 | asovde | 2015-11-20 15:26:33 +0100 (fr., 20 nov. 2015) | 33 lines
Changed paths:
M /README_ROOT
A /ctm3f90
A /ctm3f90/L60T159.inp
A /ctm3f90/L60T159_bcoc.inp
A /ctm3f90/L60T42.inp