Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SWIFT
SWIFTsim
Commits
377e9bcb
Commit
377e9bcb
authored
Feb 04, 2019
by
Folkert Nobels
Browse files
Add temperature constant exp10(Tdex) to be used in the criteria
parent
95a69be1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/star_formation/EAGLE/star_formation.h
View file @
377e9bcb
...
@@ -70,6 +70,9 @@ struct star_formation {
...
@@ -70,6 +70,9 @@ struct star_formation {
/*! Dalla Vecchia & Schaye temperature criteria */
/*! Dalla Vecchia & Schaye temperature criteria */
double
temperature_margin_threshold_dex
;
double
temperature_margin_threshold_dex
;
/*! 10^Tdex of Dalla Vecchia & SChaye temperature criteria */
double
ten_to_temperature_margin_threshold_dex
;
/*! gas fraction */
/*! gas fraction */
double
fgas
;
double
fgas
;
...
@@ -259,7 +262,7 @@ INLINE static int star_formation_is_star_forming(
...
@@ -259,7 +262,7 @@ INLINE static int star_formation_is_star_forming(
/* Check the Scahye & Dalla Vecchia 2012 EOS-based temperature critrion */
/* Check the Scahye & Dalla Vecchia 2012 EOS-based temperature critrion */
return
(
temperature
<
return
(
temperature
<
temperature_eos
*
exp10
(
starform
->
temperature_margin_threshold_dex
)
)
;
temperature_eos
*
starform
->
ten_to_
temperature_margin_threshold_dex
);
}
}
/**
/**
...
@@ -554,6 +557,9 @@ INLINE static void starformation_init_backend(
...
@@ -554,6 +557,9 @@ INLINE static void starformation_init_backend(
starform
->
temperature_margin_threshold_dex
=
parser_get_opt_param_double
(
starform
->
temperature_margin_threshold_dex
=
parser_get_opt_param_double
(
parameter_file
,
"EAGLEStarFormation:KS_temperature_margin_dex"
,
FLT_MAX
);
parameter_file
,
"EAGLEStarFormation:KS_temperature_margin_dex"
,
FLT_MAX
);
starform
->
ten_to_temperature_margin_threshold_dex
=
exp10
(
starform
->
temperature_margin_threshold_dex
);
/* Read the normalization of the metallicity dependent critical
/* Read the normalization of the metallicity dependent critical
* density*/
* density*/
starform
->
density_threshold_HpCM3
=
parser_get_param_double
(
starform
->
density_threshold_HpCM3
=
parser_get_param_double
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment