diff options
author | Aaron LI <aaronly.me@outlook.com> | 2017-02-17 00:41:22 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2017-02-17 01:16:47 +0800 |
commit | 59baada42d2abfb7201a283956f135739655367a (patch) | |
tree | f42310f707abfc68eb534b0d24bab20601264758 /scripts | |
parent | cc8a47a6a7b24c31376c7dd6ee9343d8fd7cc68f (diff) | |
download | chandra-acis-analysis-59baada42d2abfb7201a283956f135739655367a.tar.bz2 |
Remove cooling time & radius related calculations and results
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/collect_infodata.sh | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/scripts/collect_infodata.sh b/scripts/collect_infodata.sh index 38966df..5d1e753 100755 --- a/scripts/collect_infodata.sh +++ b/scripts/collect_infodata.sh @@ -8,6 +8,8 @@ ## August 31, 2012 ## ## Change logs: +## 2017-02-17, Weitian LI +## * Remove cooling time and radius results calculated by 'cooling_time' ## 2017-02-16, Weitian LI ## * Remove luminosity results calculated by 'calc_lx' ## 2017-02-09, Weitian LI @@ -407,13 +409,6 @@ FGRR_ERR_U=`\grep '^gas_fraction.*r2500.*r500=' ${RES_FINAL} | sed 's/^.*r500=// [ -z "${FGRR_ERR_L}" ] && FGRR_ERR_L="null" [ -z "${FGRR_ERR_U}" ] && FGRR_ERR_U="null" ## mrl }}} - -## rcool & cooling time {{{ -RCOOL=`\grep '^cooling_radius=' ${RES_FINAL} | awk '{ print $2 }'` -COOLING_TIME=`\grep '^cooling_time=' ${RES_FINAL} | awk -F'=' '{ print $2 }' | tr -d ' Gyr'` -[ -z "${RCOOL}" ] && RCOOL="null" -[ -z "${COOLING_TIME}" ] && COOLING_TIME="null" -## cooling time }}} ## repro/mass }}} cd ${BASEDIR} @@ -570,8 +565,6 @@ cat > ${JSON_FILE} << _EOF_ "F_gas(R2500-R500)": ${FGRR}, "F_gas_err_l(R2500-R500)": ${FGRR_ERR_L}, "F_gas_err_u(R2500-R500)": ${FGRR_ERR_U}, - "R_cool (kpc)": ${RCOOL}, - "Cooling_time (Gyr)": ${COOLING_TIME}, "Cool_core": ${COOLCORE}, "Feature": "${OBJ_FEATURE}", "NOTE": "${OBJ_NOTE}" |