diff options
author | Rick Walsh <rickmwalsh@gmail.com> | 2015-07-07 20:25:51 +1000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-07-07 06:26:40 -0700 |
commit | f9c3142fa7234c8d930779dcf61ad8fbf83a00a1 (patch) | |
tree | 309895bd55ef57f0dc43a4c7480dfb3dde835a7b /deco.c | |
parent | b2d27ca6859a44ccb7327f318e81e2a8a4fb0e3d (diff) | |
download | subsurface-f9c3142fa7234c8d930779dcf61ad8fbf83a00a1.tar.gz |
Include units in VPM config structure definition
Include units in the comments of VPM structure definition. We should
confirm the units surface_tension_gamma and skin_compression_gammaC.
Signed-off-by: Rick Walsh <rickmwalsh@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'deco.c')
-rw-r--r-- | deco.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -36,12 +36,12 @@ struct buehlmann_config buehlmann_config = { 1.0, 1.01, 0, 0.75, 0.35, 1.0, fals struct vpmb_config { double crit_radius_N2; //! Critical radius of N2 nucleon (microns). double crit_radius_He; //! Critical radius of He nucleon (microns). - double crit_volume_lambda; //! Constant corresponding to critical gas volume. - double gradient_of_imperm; //! Gradient after which bubbles become impermeable. + double crit_volume_lambda; //! Constant corresponding to critical gas volume (bar-min). + double gradient_of_imperm; //! Gradient after which bubbles become impermeable (bar). double surface_tension_gamma; //! Nucleons surface tension constant. - double skin_compression_gammaC; //! - double regeneration_time; //! Time needed for the bubble to regenerate to the start radius. - double other_gases_pressure; //! Always present pressure of other gasses in tissues. + double skin_compression_gammaC; //! Skin compression gammaC. + double regeneration_time; //! Time needed for the bubble to regenerate to the start radius (min). + double other_gases_pressure; //! Always present pressure of other gasses in tissues (bar). }; struct vpmb_config vpmb_config = { 0.8, 0.7, 230.284, 8.2, 0.179, 2.57, 20160, 0.1359888 }; |