-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest3x.sim
More file actions
59 lines (50 loc) · 807 Bytes
/
test3x.sim
File metadata and controls
59 lines (50 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
### WARNING DO NOT MODIFY THIS FILE! ###
#
# This file is generated automatically and may cause the program to malfunction
# if modified incorrectly!
#
model = G&L Chapter 3
[sectors]
H = households
P = producers
G = government
[transfers]
c = consumption
g = govt. expenditure
w = wages
t = taxation
[transfers/c]
source = H
dest = P
[transfers/g]
source = G
dest = P
[transfers/w]
source = P
dest = H
[transfers/t]
source = H
dest = G
[equations]
w = c + g
t = ( (w * r1) + (c * r2) ) / 100
r1 = 10
r2 = 10
c = ( (a1 * d) + (a2 * H') ) / 100
d = w' - t'
a1 = 60
a2 = 40
g = 50
[probes]
fs = (t * 100) / (g + 1)
#sp = 0 - T
# Original SimX input data
# c : H <- P
# g : G <- P
# w : P <- H
# w = c + g
# c = ( (w' - t') * s) / 100
# g = 50
# t : G <+ H
# t = (w / 10) + (c' / 5)
# s = 100