[root]/branches/budaev/HEDG2_06_phys
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
sbu062 | 10 (100.0%) | 15 (100.0%) | 1.5 |
`O2` and higher optimization does not work on Windows Intel Fortran, propagate fix r11234
6 lines of code changed in 2 files:
deleted obsolete doxygen comments after r11231
0 lines of code changed in 1 file:
delete dependence of living cost on smr, very small effect and potentially slow down simulation
2 lines of code changed in 1 file:
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:
fix comments, duplicate deleted
5 lines of code changed in 1 file:
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: