-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #137 from n-claes/feature/cooling_curves
Addition of new cooling curves
- Loading branch information
Showing
8 changed files
with
284 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
module mod_data_colgan | ||
use mod_global_variables, only: dp | ||
implicit none | ||
|
||
public | ||
|
||
integer, parameter :: n_colgan = 55 | ||
!> log10 temperature values from Colgan (2008) | ||
real(dp), protected :: logT_colgan(n_colgan) | ||
!> log10 luminosity values from Colgan (2008) | ||
real(dp), protected :: logL_colgan(n_colgan) | ||
|
||
data logT_colgan / & | ||
4.06460772_dp, 4.14229559_dp, 4.21995109_dp, 4.29760733_dp, 4.37527944_dp, 4.45293587_dp, & | ||
4.53060946_dp, 4.60826923_dp, 4.68592974_dp, 4.76359269_dp, 4.79704583_dp, 4.83049243_dp, & | ||
4.86394114_dp, 4.89738514_dp, 4.93083701_dp, 4.96428321_dp, 4.99773141_dp, 5.03116600_dp, & | ||
5.06460772_dp, 5.17574368_dp, 5.28683805_dp, 5.39795738_dp, 5.50906805_dp, 5.62017771_dp, & | ||
5.73129054_dp, 5.84240328_dp, 5.95351325_dp, 6.06460772_dp, 6.17574368_dp, 6.28683805_dp, & | ||
6.39795738_dp, 6.50906805_dp, 6.62017771_dp, 6.73129054_dp, 6.84240328_dp, 6.95351325_dp, & | ||
7.06460772_dp, 7.17574368_dp, 7.28683805_dp, 7.39795738_dp, 7.50906805_dp, 7.62017771_dp, & | ||
7.73129054_dp, 7.84240328_dp, 7.95351325_dp, 8.06460772_dp, 8.17574368_dp, 8.28683805_dp, & | ||
8.39795738_dp, 8.50906805_dp, 8.62017771_dp, 8.73129054_dp, 8.84240328_dp, 8.95351325_dp, & | ||
9.06460772_dp & | ||
/ | ||
data logL_colgan / & | ||
-22.18883401_dp, -21.78629635_dp, -21.60383554_dp, -21.68480662_dp, -21.76444630_dp, & | ||
-21.67935529_dp, -21.54217864_dp, -21.37958284_dp, -21.25171892_dp, -21.17584161_dp, & | ||
-21.15783402_dp, -21.14491111_dp, -21.13526945_dp, -21.12837453_dp, -21.12485189_dp, & | ||
-21.12438898_dp, -21.12641785_dp, -21.12802448_dp, -21.12547760_dp, -21.08964778_dp, & | ||
-21.08812360_dp, -21.19542445_dp, -21.34582346_dp, -21.34839251_dp, -21.31700703_dp, & | ||
-21.29072156_dp, -21.28900309_dp, -21.34104468_dp, -21.43122351_dp, -21.62448270_dp, & | ||
-21.86694036_dp, -22.02897478_dp, -22.08050874_dp, -22.06057061_dp, -22.01973295_dp, & | ||
-22.00000434_dp, -22.05161149_dp, -22.22175466_dp, -22.41451671_dp, -22.52581288_dp, & | ||
-22.56913516_dp, -22.57485721_dp, -22.56150512_dp, -22.53968863_dp, -22.51490350_dp, & | ||
-22.48895932_dp, -22.46071057_dp, -22.42908363_dp, -22.39358639_dp, -22.35456791_dp, & | ||
-22.31261375_dp, -22.26827428_dp, -22.22203698_dp, -22.17422996_dp, -22.12514145_dp & | ||
/ | ||
|
||
end module mod_data_colgan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
module mod_data_dalgarno2 | ||
use mod_global_variables, only: dp | ||
implicit none | ||
|
||
public | ||
|
||
integer, parameter :: n_dalgarno2 = 76 | ||
!> log10 temperature values from Dalgarno and McCray (1978) for low temperatures (DM2) | ||
real(dp), protected :: logT_dalgarno2(n_dalgarno2) | ||
!> log10 luminosity values from Dalgarno and McCray (1978) for low temperatures (DM2) | ||
real(dp), protected :: logL_dalgarno2(n_dalgarno2) | ||
|
||
data logT_dalgarno2 / & | ||
1.00_dp, 1.04_dp, 1.08_dp, 1.12_dp, 1.16_dp, 1.20_dp, & | ||
1.24_dp, 1.28_dp, 1.32_dp, 1.36_dp, 1.40_dp, & | ||
1.44_dp, 1.48_dp, 1.52_dp, 1.56_dp, 1.60_dp, & | ||
1.64_dp, 1.68_dp, 1.72_dp, 1.76_dp, 1.80_dp, & | ||
1.84_dp, 1.88_dp, 1.92_dp, 1.96_dp, 2.00_dp, & | ||
2.04_dp, 2.08_dp, 2.12_dp, 2.16_dp, 2.20_dp, & | ||
2.24_dp, 2.28_dp, 2.32_dp, 2.36_dp, 2.40_dp, & | ||
2.44_dp, 2.48_dp, 2.52_dp, 2.56_dp, 2.60_dp, & | ||
2.64_dp, 2.68_dp, 2.72_dp, 2.76_dp, 2.80_dp, & | ||
2.84_dp, 2.88_dp, 2.92_dp, 2.96_dp, 3.00_dp, & | ||
3.04_dp, 3.08_dp, 3.12_dp, 3.16_dp, 3.20_dp, & | ||
3.24_dp, 3.28_dp, 3.32_dp, 3.36_dp, 3.40_dp, & | ||
3.44_dp, 3.48_dp, 3.52_dp, 3.56_dp, 3.60_dp, & | ||
3.64_dp, 3.68_dp, 3.72_dp, 3.76_dp, 3.80_dp, & | ||
3.84_dp, 3.88_dp, 3.92_dp, 3.96_dp, 4.00_dp & | ||
/ | ||
data logL_dalgarno2 / & | ||
-30.0377_dp, -29.7062_dp, -29.4055_dp, -29.1331_dp, -28.8864_dp, -28.6631_dp, & | ||
-28.4614_dp, -28.2791_dp, -28.1146_dp, -27.9662_dp, -27.8330_dp, & | ||
-27.7129_dp, -27.6052_dp, -27.5088_dp, -27.4225_dp, -27.3454_dp, & | ||
-27.2767_dp, -27.2153_dp, -27.1605_dp, -27.1111_dp, -27.0664_dp, & | ||
-27.0251_dp, -26.9863_dp, -26.9488_dp, -26.9119_dp, -26.8742_dp, & | ||
-26.8353_dp, -26.7948_dp, -26.7523_dp, -26.7080_dp, -26.6619_dp, & | ||
-26.6146_dp, -26.5666_dp, -26.5183_dp, -26.4702_dp, -26.4229_dp, & | ||
-26.3765_dp, -26.3317_dp, -26.2886_dp, -26.2473_dp, -26.2078_dp, & | ||
-26.1704_dp, -26.1348_dp, -26.1012_dp, -26.0692_dp, -26.0389_dp, & | ||
-26.0101_dp, -25.9825_dp, -25.9566_dp, -25.9318_dp, -25.9083_dp, & | ||
-25.8857_dp, -25.8645_dp, -25.8447_dp, -25.8259_dp, -25.8085_dp, & | ||
-25.7926_dp, -25.7778_dp, -25.7642_dp, -25.7520_dp, -25.7409_dp, & | ||
-25.7310_dp, -25.7222_dp, -25.7142_dp, -25.7071_dp, -25.7005_dp, & | ||
-25.6942_dp, -25.6878_dp, -25.6811_dp, -25.6733_dp, -25.6641_dp, & | ||
-25.6525_dp, -25.6325_dp, -25.6080_dp, -25.5367_dp, -25.4806_dp & | ||
/ | ||
|
||
end module mod_data_dalgarno2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters