Packages

  • package root
    Definition Classes
    root
  • package apps
    Definition Classes
    root
  • package dynamics

    The dynamics package contains example applications for continuous simulation models based on Ordinary Differential Equations 'ODE's or Partial Differential Equations 'PDE's.

    The dynamics package contains example applications for continuous simulation models based on Ordinary Differential Equations 'ODE's or Partial Differential Equations 'PDE's.

    Definition Classes
    apps
  • EconomicModel
  • EconomicModelTest
  • Newtons2nd
  • Pathway
  • Pathway2
c

apps.dynamics

EconomicModel

class EconomicModel extends AnyRef

The EconomicModel class provides a simple model of can economy.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EconomicModel
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new EconomicModel(n: Int, l0: Int, k0: Int, f: (Int) ⇒ Int, g: (Int) ⇒ Int)

    n

    the ???

    l0

    the labor capacity at time 't0'

    k0

    the capital capacity at time 't0'

    f

    the production function

    g

    the growth function

Value Members

  1. def cO(t: Int): Int

    Estimate the consumption amount when the person is old.

    Estimate the consumption amount when the person is old. Bequests are ignored, so this equals his/her consumption in the next period when old by. Thus, the intertemporal budget constraint is relates cO to cY.

    t

    the current time

  2. def cY(t: Int): Int

    Estimate the personal consumption amount when young (wages - savings).

    Estimate the personal consumption amount when young (wages - savings).

    t

    the current time

  3. def df(x: Int): Int

    Compute the derivative/difference of the production function 'f'.

    Compute the derivative/difference of the production function 'f'.

    x

    the current value

  4. def e(t: Int): Int

    Estimate the total earned return when the person is old.

    Estimate the total earned return when the person is old.

    t

    the current time

  5. def h(rt: Int): Int

    Estimate the savings function based on wages and interest rate.

    Estimate the savings function based on wages and interest rate.

    rt

    the interest rate at time t+1

  6. def k(t: Int): Int

    Estimate the amount of productive capital at time 't'.

    Estimate the amount of productive capital at time 't'. Initially k(t) = k0'. Subsequently, it is paid for by workers: There are 'l(t)' workers and total savings must finance the capital next period.

    t

    the current time

  7. def kp(t: Int): Int

    Estimate the capital per worker.

    Estimate the capital per worker.

    t

    the current time

  8. def l(t: Int): Int

    Estimate the labor capacity/number of young (workers) at time 't'

    Estimate the labor capacity/number of young (workers) at time 't'

    t

    the current time

  9. def r(t: Int): Int

    Estimate the marginal product of capital reflected as an interest rate.

    Estimate the marginal product of capital reflected as an interest rate. May be viewed as a derivative/difference 'fk(k(t), l(t)) = fʹ(k(t))'.

    t

    the current time

  10. def s(t: Int): Int

    Estimate the personal savings amount when the person is young.

    Estimate the personal savings amount when the person is young.

    t

    the current time

  11. def w(t: Int): Int

    Estimate the wage.

    Estimate the wage.

    t

    the current time

  12. def y(t: Int): Int

    Estimate the output per worker: y(t) = f(k(t)) where f(k) is the production function.

    Estimate the output per worker: y(t) = f(k(t)) where f(k) is the production function.

    t

    the current time