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
function carbonation(P, T) { | |
return (P + 1.013) * Math.exp(-10.73797 + (2617.25 / (T + 273.15))) * 10 | |
} |
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
using Distributions | |
using SpecialFunctions | |
using Plots | |
""" | |
Generator | |
""" | |
function φ(x::Real, ϑ::Real) | |
return (1+x)^(−1/ϑ) | |
end |
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
using Distributions | |
using FastGaussQuadrature | |
function P(x::Float64, d::Int) | |
if d == 0 | |
return 1.0 | |
end | |
if d == 1 | |
return x |
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
using Distributions | |
function P(x::Float64, d::Int) | |
if d == 0 | |
return 1.0 | |
end | |
if d == 1 | |
return x | |
end |
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
nfd-verify:9514943 |
This file has been truncated, but you can view the full file.
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
== 2025-01-03 11:36:40,449 easyblock.py:311 INFO This is EasyBuild 4.9.4 (framework: 4.9.4, easyblocks: 4.9.4) on host cibola. | |
== 2025-01-03 11:36:40,449 easyblock.py:317 INFO This is easyblock CMakeMake from module easybuild.easyblocks.generic.cmakemake (/home/behrensd/easybuild/software/EasyBuild/4.9.4/lib/python3.11/site-packages/easybuild/easyblocks/generic/cmakemake.py) | |
== 2025-01-03 11:36:40,449 easyblock.py:1063 INFO Build dir set to /home/behrensd/easybuild/build/WRF/4.6.1/foss-2024a-dmpar | |
== 2025-01-03 11:36:40,449 easyblock.py:1120 INFO Software install dir set to /home/behrensd/easybuild/software/WRF/4.6.1-foss-2024a-dmpar | |
== 2025-01-03 11:36:40,449 easyblock.py:1125 INFO Module install dir set to /home/behrensd/easybuild/modules/all | |
== 2025-01-03 11:36:40,449 easyblock.py:286 INFO Init completed for application name WRF version 4.6.1 | |
== 2025-01-03 11:36:40,449 easyblock.py:4240 INFO Obtained application instance of for WRF (easyblock: CMakeMake) | |
== 2025-01-03 11:36:40,449 easyconfig.py:1705 INFO G |