Last change
on this file since 2740 was
2495,
checked in by cmathe, 4 years ago
|
Mars GCM: missing new subroutine density_co2_ice.F90...
|
File size:
1.2 KB
|
Rev | Line | |
---|
[2495] | 1 | !======================================================================================================================! |
---|
| 2 | ! SUBROUTINE: density_co2_ice =========================================================================================! |
---|
| 3 | !======================================================================================================================! |
---|
| 4 | ! Subject: |
---|
| 5 | !--------- |
---|
| 6 | ! Compute co2 ice particles density |
---|
| 7 | !----------------------------------------------------------------------------------------------------------------------! |
---|
| 8 | ! Reference: |
---|
| 9 | !----------- |
---|
| 10 | ! Mangan et al. (2017), 'CO2 ice structure and density under Martian atmospheric conditions', Icarus |
---|
| 11 | ! Valid for: P = 1e-2 mbar, 80 K <= T <= 195 K |
---|
| 12 | !======================================================================================================================! |
---|
| 13 | module density_co2_ice_mod |
---|
| 14 | |
---|
| 15 | implicit none |
---|
| 16 | contains |
---|
| 17 | |
---|
| 18 | subroutine density_co2_ice(temperature, density) |
---|
| 19 | |
---|
| 20 | implicit none |
---|
| 21 | |
---|
| 22 | double precision, intent(in) :: temperature |
---|
| 23 | double precision, intent(out) :: density |
---|
| 24 | |
---|
| 25 | density = 1000. * (1.72391 - 2.53e-4*temperature - 2.87e-6*temperature*temperature) |
---|
| 26 | |
---|
| 27 | end subroutine density_co2_ice |
---|
| 28 | |
---|
| 29 | end module density_co2_ice_mod |
---|
Note: See
TracBrowser
for help on using the repository browser.