Closed duncanhobbs closed 5 years ago
In simpleCGE.py line 69, the eq.M() function takes 8 arguments (p.gamma, p.deltam, p.deltad, p.eta, Qbar, pq, pm, p.taum).
simpleCGE.py
In the function definition in firms.py, it looks like eqM() does not use deltad when calculating M.
deltad
M
On page 104 of the Hashimoto text, it looks as though the M equation only includes deltam and not deltad
deltam
Should deltad be a required argument for eqM?
@jdebacker
@duncanhobbs Good catch. You are right - deltad can be removed from that function.
Resolved with PR #28
In
simpleCGE.py
line 69, the eq.M() function takes 8 arguments (p.gamma, p.deltam, p.deltad, p.eta, Qbar, pq, pm, p.taum).In the function definition in firms.py, it looks like eqM() does not use
deltad
when calculatingM
.On page 104 of the Hashimoto text, it looks as though the M equation only includes
deltam
and notdeltad
Should
deltad
be a required argument for eqM?@jdebacker