Skip to content

Commit 88a3582

Browse files
committed
COSP version 1.4.1
1 parent 572c53a commit 88a3582

File tree

144 files changed

+801
-133
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+801
-133
lines changed

MODIS_simulator/modis_simulator.F90

Lines changed: 287 additions & 33 deletions
Large diffs are not rendered by default.

README.txt

Lines changed: 29 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ vN.N is version number (e.g. v1.0)
44
We will assume that the software will be installed in ~/cosp.
55

66
This README has been written by Alejandro Bodas (alejandro.bodas at metoffice.gov.uk).
7+
Modified by Dustin Swales ([email protected]) on 9/27/2016
78

89
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
910
1.- ABOUT THE CODE
@@ -58,21 +59,39 @@ the directory quickbeam.
5859
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
5960
3.- DOWNLOADING AND UNPACKING
6061
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
61-
Since v1.3.1, the code lives in Google code:
62-
http://code.google.com/p/cfmip-obs-sim/
62+
As of September 2015, the code is hosted on gitHub:
63+
https://github.com/CFMIP/COSPv1
6364

64-
We encourage you to download the latest stable release using a subversion client on your local computer.
65-
You can accomplish this via the command line at a terminal prompt:
65+
You can use git to download the latest stable version of COSP. For example, to clone (git
66+
equivalent of svn co) a copy of the repository to your machine:
67+
git clone https://github.com/CFMIP/COSPv1.git
6668

67-
svn co http://cfmip-obs-sim.googlecode.com/svn/stable/current COSP
69+
To view tagged versions of the repository you can use "git log". For example:
70+
[macSWALES:~/Desktop/COSPv1] dswales% git log
6871

69-
When COSP is stable we will update this directory, so you can update your own code using 'svn update'.
72+
commit 572c53ab941c8019135d147fbdf01a6633487aaa
73+
Author: Dustin Swales <[email protected]>
74+
Date: Mon Sep 14 11:53:52 2015 -0600
7075

71-
The input and test NetCDF files have to be downloaded separately, from:
72-
http://code.google.com/p/cfmip-obs-sim/downloads/list
76+
COSP version 1.4.0
7377

74-
Copy cosp-test-files-vN.N.N.tgz to your COSP directory and run:
75-
tar -txzvf cosp-test-files-vN.N.N.tgz
78+
commit 9e7d84d735249d95521852e0db0c8eed16b4f070
79+
Author: Dustin Swales <[email protected]>
80+
Date: Mon Sep 14 11:15:51 2015 -0600
81+
82+
COSP version 1.3.2
83+
84+
commit ce4130ca7334bc30875e7cfc620d6195bf237c73
85+
Author: Robert.Pincus <[email protected]>
86+
Date: Fri Mar 18 20:52:12 2011 +0000
87+
88+
Copying v1.3.1 to archive of stable releases.
89+
90+
So for example, lets say you want to use COSPv1.3.2. To accomplish this you need to clone the
91+
repository (described above) and then revert to that tagged version using:
92+
git checkout 9e7d84d735249d95521852e0db0c8eed16b4f070
93+
94+
Test input data and reference data is distributed with COSP (see data/).
7695

7796
Now you can follow the steps in Section 4.
7897

README_v1.4.1.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
1/24/2015 (Dustin Swales):
2+
A small fix was made to MODIS/moid_simulator.F90. The patch for inline COSP has also been updated
3+
The following were added @ lines 539-541 of MODIS/moid_simulator.F90
4+
+ Cloud_Fraction_Total_Mean(1:nPoints) = Cloud_Fraction_Total_Mean(1:nPoints) /nSubcols
5+
+ Cloud_Fraction_Ice_Mean(1:nPoints) = Cloud_Fraction_Ice_Mean(1:nPoints) /nSubcols
6+
+ Cloud_Fraction_Water_Mean(1:nPoints) = Cloud_Fraction_Water_Mean(1:nPoints) /nSubcols

cmor/COSP_table_1D

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,46 @@ must_have_bounds: yes
118118
!----------------------------------
119119
!
120120

121+
!============
122+
axis_entry: reffLiq
123+
!============
124+
!----------------------------------
125+
! Axis attributes:
126+
!----------------------------------
127+
standard_name: Effective_particle_size_Liquid
128+
units: microns
129+
long_name: Effective_particle_size_Liquid
130+
!----------------------------------
131+
! Additional axis information:
132+
!----------------------------------
133+
out_name: reffLiq
134+
stored_direction: increasing
135+
tolerance: 0.001
136+
type: double
137+
must_have_bounds: yes
138+
!----------------------------------
139+
!
140+
141+
!============
142+
axis_entry: reffIce
143+
!============
144+
!----------------------------------
145+
! Axis attributes:
146+
!----------------------------------
147+
standard_name: Effective_particle_size_Ice
148+
units: microns
149+
long_name: Effective_particle_size_Ice
150+
!----------------------------------
151+
! Additional axis information:
152+
!----------------------------------
153+
out_name: reffIce
154+
stored_direction: increasing
155+
tolerance: 0.001
156+
type: double
157+
must_have_bounds: yes
158+
!----------------------------------
159+
!
160+
121161
!
122162
!============
123163
axis_entry: column
@@ -3861,6 +3901,46 @@ type: real
38613901
!----------------------------------
38623902
!
38633903

3904+
!============
3905+
variable_entry: crimodis
3906+
!============
3907+
modeling_realm: atmos
3908+
3909+
!----------------------------------
3910+
! Variable attributes:
3911+
!----------------------------------
3912+
standard_name: cloud_area_fraction
3913+
units: %
3914+
long_name: MODIS Cloud Area Fraction
3915+
!----------------------------------
3916+
! Additional variable information:
3917+
!----------------------------------
3918+
dimensions: location tau reffIce time1
3919+
out_name: crimodis
3920+
type: real
3921+
!----------------------------------
3922+
!
3923+
3924+
!============
3925+
variable_entry: crlmodis
3926+
!============
3927+
modeling_realm: atmos
3928+
3929+
!----------------------------------
3930+
! Variable attributes:
3931+
!----------------------------------
3932+
standard_name: cloud_area_fraction
3933+
units: %
3934+
long_name: MODIS Cloud Area Fraction
3935+
!----------------------------------
3936+
! Additional variable information:
3937+
!----------------------------------
3938+
dimensions: location tau reffLiq time1
3939+
out_name: crlmodis
3940+
type: real
3941+
!----------------------------------
3942+
!
3943+
38643944
!============
38653945
variable_entry: tbrttov
38663946
!============

cmor/COSP_table_1D.cmor1

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -456,6 +456,48 @@ type: double
456456
must_have_bounds: yes
457457
!----------------------------------
458458
!
459+
!
460+
461+
462+
!============
463+
axis_entry: reffLiq
464+
!============
465+
!----------------------------------
466+
! Axis attributes:
467+
!----------------------------------
468+
standard_name: Effective_particle_size_Liquid
469+
units: Microns
470+
long_name: Effective_particle_size_Liquid
471+
!----------------------------------
472+
! Additional axis information:
473+
!----------------------------------
474+
out_name: reffLiq
475+
stored_direction: increasing
476+
tolerance: 0.001
477+
type: double
478+
must_have_bounds: yes
479+
!----------------------------------
480+
!
481+
482+
!============
483+
axis_entry: reffIce
484+
!============
485+
!----------------------------------
486+
! Axis attributes:
487+
!----------------------------------
488+
standard_name: Effective_particle_size_Ice
489+
units: Microns
490+
long_name: Effective_particle_size_Ice
491+
!----------------------------------
492+
! Additional axis information:
493+
!----------------------------------
494+
out_name: reffIce
495+
stored_direction: increasing
496+
tolerance: 0.001
497+
type: double
498+
must_have_bounds: yes
499+
!----------------------------------
500+
!
459501

460502
!============
461503
axis_entry: plevmodis
@@ -1983,6 +2025,46 @@ type: real
19832025
!----------------------------------
19842026
!
19852027

2028+
!============
2029+
variable_entry: crimodis
2030+
!============
2031+
modeling_realm: atmos
2032+
2033+
!----------------------------------
2034+
! Variable attributes:
2035+
!----------------------------------
2036+
standard_name: cloud_area_fraction
2037+
units: %
2038+
long_name: MODIS Cloud Area Fraction
2039+
!----------------------------------
2040+
! Additional variable information:
2041+
!----------------------------------
2042+
dimensions: location tau ReffIce time1
2043+
out_name: crimodis
2044+
type: real
2045+
!----------------------------------
2046+
!
2047+
2048+
!============
2049+
variable_entry: crlmodis
2050+
!============
2051+
modeling_realm: atmos
2052+
2053+
!----------------------------------
2054+
! Variable attributes:
2055+
!----------------------------------
2056+
standard_name: cloud_area_fraction
2057+
units: %
2058+
long_name: MODIS Cloud Area Fraction
2059+
!----------------------------------
2060+
! Additional variable information:
2061+
!----------------------------------
2062+
dimensions: location tau ReffLiq time1
2063+
out_name: crlmodis
2064+
type: real
2065+
!----------------------------------
2066+
!
2067+
19862068
!============
19872069
variable_entry: tbrttov
19882070
!============

cmor/COSP_table_2D

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,46 @@ must_have_bounds: yes
130130
!----------------------------------
131131
!
132132

133+
!============
134+
axis_entry: reffLiq
135+
!============
136+
!----------------------------------
137+
! Axis attributes:
138+
!----------------------------------
139+
standard_name: Effective_particle_size_Liquid
140+
units: microns
141+
long_name: Effective_particle_size_Liquid
142+
!----------------------------------
143+
! Additional axis information:
144+
!----------------------------------
145+
out_name: reffLiq
146+
stored_direction: increasing
147+
tolerance: 0.001
148+
type: double
149+
must_have_bounds: yes
150+
!----------------------------------
151+
!
152+
153+
!============
154+
axis_entry: reffIce
155+
!============
156+
!----------------------------------
157+
! Axis attributes:
158+
!----------------------------------
159+
standard_name: Effective_particle_size_Ice
160+
units: microns
161+
long_name: Effective_particle_size_Ice
162+
!----------------------------------
163+
! Additional axis information:
164+
!----------------------------------
165+
out_name: reffIce
166+
stored_direction: increasing
167+
tolerance: 0.001
168+
type: double
169+
must_have_bounds: yes
170+
!----------------------------------
171+
!
172+
133173
!
134174
!============
135175
axis_entry: column
@@ -3804,6 +3844,46 @@ type: real
38043844
!----------------------------------
38053845
!
38063846

3847+
!============
3848+
variable_entry: crimodis
3849+
!============
3850+
modeling_realm: atmos
3851+
3852+
!----------------------------------
3853+
! Variable attributes:
3854+
!----------------------------------
3855+
standard_name: cloud_area_fraction
3856+
units: %
3857+
long_name: MODIS Cloud Area Fraction
3858+
!----------------------------------
3859+
! Additional variable information:
3860+
!----------------------------------
3861+
dimensions: longitude latitude tau reffIce time1
3862+
out_name: crimodis
3863+
type: real
3864+
!----------------------------------
3865+
!
3866+
3867+
!============
3868+
variable_entry: crlmodis
3869+
!============
3870+
modeling_realm: atmos
3871+
3872+
!----------------------------------
3873+
! Variable attributes:
3874+
!----------------------------------
3875+
standard_name: cloud_area_fraction
3876+
units: %
3877+
long_name: MODIS Cloud Area Fraction
3878+
!----------------------------------
3879+
! Additional variable information:
3880+
!----------------------------------
3881+
dimensions: longitude latitude tau reffLiq time1
3882+
out_name: crlmodis
3883+
type: real
3884+
!----------------------------------
3885+
!
3886+
38073887
!============
38083888
variable_entry: tbrttov
38093889
!============

0 commit comments

Comments
 (0)