Directory branches/budaev/HEDG2_06_phys/

Total Files:
3
Deleted Files:
0
Lines of Code:
12404

[root]/branches/budaev/HEDG2_06_phys

Lines of Code

branches/budaev/HEDG2_06_phys/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
sbu062 10 (100.0%) 15 (100.0%) 1.5

Most Recent Commits

sbu062 2021-06-08 12:38 Rev.: 11235

`O2` and higher optimization does not work on Windows Intel Fortran, propagate fix r11234

6 lines of code changed in 2 files:

  • branches/budaev/HEDG2_06_phys: Makefile (new)
sbu062 2021-06-08 09:14 Rev.: 11232

deleted obsolete doxygen comments after r11231

0 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06_phys: m_body.f90 (-19)
sbu062 2021-06-08 08:57 Rev.: 11231

delete dependence of living cost on smr, very small effect and potentially slow down simulation

2 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06_phys: m_body.f90 (+2 -3)
sbu062 2021-06-08 04:34 Rev.: 11226

fix bug in exponent
{{{
Index: m_body.f90
===================================================================
--- m_body.f90 (revision 11225)
+++ m_body.f90 (working copy)
@@ -1139,7 +1139,8 @@
!! Kleiber's law: `metabolic rate = mass**3/4`
!! TODO: Get rid of the old model cost, do dependent on SMR mainly.
stepcost = this%body_mass * LIVING_COST / LIFESPAN + &
- (this%smr/SIGMA)**3/4 * this%body_mass * LIVING_COST / LIFESPAN
+ (this%smr/SIGMA)**(3.0_SRP/4.0_SRP) * this%body_mass * &
+ LIVING_COST / LIFESPAN

end function body_mass_calculate_cost_living_step

}}}

2 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06_phys: m_body.f90 (+2 -1)
sbu062 2021-06-08 04:20 Rev.: 11225

fix comments, duplicate deleted

5 lines of code changed in 1 file:

  • branches/budaev/HEDG2_06_phys: m_body.f90 (+5 -12)
sbu062 2021-06-08 04:08 Rev.: 11224

The `max`condition dependent on (cost_factor_food_smr) never needed, can delete both function and `COST_FACTOR_FORAGING_SMR`

0 lines of code changed in 4 files:

  • branches/budaev/HEDG2_06_phys: m_body.f90 (changed), m_common.f90 (new)
Generated by StatSVN 0.7.0