Skip to content

Commit

Permalink
disabling calculation of mNrmStE calculation. HACKY. Need to clean th…
Browse files Browse the repository at this point in the history
…is up. See #205
  • Loading branch information
sbenthall committed Mar 21, 2023
1 parent c028d0f commit e0e74c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sharkfin/population.py
Original file line number Diff line number Diff line change
Expand Up @@ -296,8 +296,8 @@ def init_simulation(self, T_sim=1000):

## solve to get the mNrmStE value
## that is, the Steady-state Equilibrium value of mNrm, for the IndShockModel
ind_shock_double.solve()
mNrmStE = ind_shock_double.solution[0].mNrmStE
### COMMENTED OUT FOR PERFORMANCE REASONS: ind_shock_double.solve()
mNrmStE = 0 #### COMMENTED OUT FOR PERFORMANCE REASONS:ind_shock_double.solution[0].mNrmStE

agent.state_now["mNrm"][:] = mNrmStE
agent.mNrmStE = (
Expand Down

0 comments on commit e0e74c7

Please sign in to comment.