コード例 #1
0
        # Make a market for solving the FBS aggregate shocks model
        agg_shocks_market = CobbDouglasEconomy(
            agents=agg_shocks_type_list,
            act_T=Params.sim_periods_agg_shocks,
            tolerance=0.0001,
            **Params.aggregate_params)
        agg_shocks_market.makeAggShkHist()

        # Edit the consumer types so they have the right data
        for this_type in agg_shocks_market.agents:
            this_type.p_init = drawMeanOneLognormal(N=this_type.Nagents,
                                                    sigma=0.9,
                                                    seed=0)
            this_type.getEconomyData(agg_shocks_market)

        # Solve the aggregate shocks version of the model
        t_start = time()
        agg_shocks_market.solve()
        t_end = time()
        print('Solving the aggregate shocks model took ' +
              str(t_end - t_start) + ' seconds.')
        for this_type in agg_shocks_type_list:
            this_type.W_history = this_type.pHist * this_type.bHist
            this_type.kappa_history = 1.0 - (1.0 - this_type.MPChist)**4
        agg_shock_weights = np.concatenate(
            (np.zeros(200), np.ones(Params.sim_periods_agg_shocks - 200)))
        agg_shock_weights = agg_shock_weights / np.sum(agg_shock_weights)
        makeCSTWstats(beta_agg, nabla_agg, agg_shocks_type_list,
                      agg_shock_weights)
コード例 #2
0
print('Standard deviation of log individual consumption = ' + str(np.mean(np.std(np.log(StickySOEconsumers.cNrmNow_hist[ignore_periods:,:]*StickySOEconsumers.pLvlNow_hist[ignore_periods:,:]),axis=1))))
print('Standard deviation of log individual productivity = ' + str(np.mean(np.std(np.log(StickySOEconsumers.pLvlNow_hist[ignore_periods:,:]),axis=1))))
Logc = np.log(StickySOEconsumers.cNrmNow_hist*StickySOEconsumers.pLvlNow_hist)[ignore_periods:,:]
DeltaLogc = Logc[1:,:] - Logc[0:-1,:]
print('Standard deviation of change in log individual consumption = ' + str(np.mean(np.std(DeltaLogc,axis=1))))


# Make a Cobb Douglas economy and the representative agent who lives in it
StickyDSGEconsumer = StickyEconsumerDSGEType(**init_DSGE_consumer)
StickyDSGEeconomy = CobbDouglasEconomy(**init_DSGE_market)
StickyDSGEeconomy.agents = [StickyDSGEconsumer]
StickyDSGEeconomy.makeAggShkHist()
StickyDSGEconsumer.getEconomyData(StickyDSGEeconomy)
StickyDSGEconsumer.track_vars = ['aLvlNow','mNrmNow','cNrmNow','pLvlNow','pLvlErrNow']

# Test the solution
StickyDSGEeconomy.solve()

m_grid = np.linspace(0,10,200)
for M in StickyDSGEconsumer.Mgrid.tolist():
    c_at_this_M = StickyDSGEconsumer.solution[0].cFunc(m_grid,M*np.ones_like(m_grid))
    plt.plot(m_grid,c_at_this_M)
plt.show()

print('Average aggregate assets = ' + str(np.mean(StickyDSGEconsumer.aLvlNow_hist[ignore_periods:,:])))
print('Average aggregate consumption = ' + str(np.mean(StickyDSGEconsumer.cNrmNow_hist[ignore_periods:,:]*StickyDSGEconsumer.pLvlNow_hist[ignore_periods:,:])))
print('Standard deviation of log aggregate assets = ' + str(np.std(np.log(StickyDSGEconsumer.aLvlNow_hist[ignore_periods:,:]))))
LogC = np.log(np.mean(StickyDSGEconsumer.cNrmNow_hist*StickyDSGEconsumer.pLvlNow_hist,axis=1))[ignore_periods:]
DeltaLogC = LogC[1:] - LogC[0:-1]
print('Standard deviation of change in log aggregate consumption = ' + str(np.std(DeltaLogC)))
コード例 #3
0
ファイル: cstwMPC.py プロジェクト: chiomh/HARK
     nabla_agg = nabla_estimate
 else:
     beta_agg = beta_point_estimate
     nabla_agg = 0.0
 DiscFac_list_agg = approxUniform(N=Params.pref_type_count,bot=beta_agg-nabla_agg,top=beta_agg+nabla_agg)[1]
 assignBetaDistribution(agg_shocks_type_list,DiscFac_list_agg)
 
 # Make a market for solving the FBS aggregate shocks model
 agg_shocks_market = CobbDouglasEconomy(agents = agg_shocks_type_list,
                 act_T         = Params.sim_periods_agg_shocks,
                 tolerance     = 0.0001,
                 **Params.aggregate_params)
 agg_shocks_market.makeAggShkHist()
 
 # Edit the consumer types so they have the right data
 for this_type in agg_shocks_market.agents:
     this_type.p_init = drawMeanOneLognormal(N=this_type.Nagents,sigma=0.9,seed=0)
     this_type.getEconomyData(agg_shocks_market)
 
 # Solve the aggregate shocks version of the model
 t_start = time()
 agg_shocks_market.solve()
 t_end = time()
 print('Solving the aggregate shocks model took ' + str(t_end - t_start) + ' seconds.')
 for this_type in agg_shocks_type_list:
     this_type.W_history = this_type.pHist*this_type.bHist
     this_type.kappa_history = 1.0 - (1.0 - this_type.MPChist)**4
 agg_shock_weights = np.concatenate((np.zeros(200),np.ones(Params.sim_periods_agg_shocks-200)))
 agg_shock_weights = agg_shock_weights/np.sum(agg_shock_weights)
 makeCSTWstats(beta_agg,nabla_agg,agg_shocks_type_list,agg_shock_weights)