]> git.pond.sub.org Git - empserver/blob - info/Education.t
client: Unbreak standalone build
[empserver] / info / Education.t
1 .TH Concept Education
2 .NA Education "How Education is calculated at the update"
3 .LV Expert
4 .s1
5 Education is important for both technology and research production.
6 Your country will not be able to produce technology or research unless
7 your civilians have an education of at least 5.  (See "info Products"
8 for more details).
9 .s1
10 The \*Qnation\*U command will display, among other things,
11 your current education level.
12 .s1
13 .nf
14 This is how your new education level is determined every update:
15
16 (1) Graduates are produced in schools
17 See "info <Products.html>" or the "production" command to find out how many
18 Graduates you are going to produce.  Your update telegram will tell
19 you the class of graduates produced in your various schools in a line
20 like this:
21   a class of graduates (135.00) produced in 3,1
22
23 (2) Calculate your education production efficiency
24 The higher your population, the lower your education p.e., as it takes
25 more graduates to maintain the same overall level of education.  Note that
26 with low population you education p.e. can be greater than 1.
27 The version output will contain a line like this:
28   Education p.e. requires 1 class of graduates per 10000 civ.
29
30 Your education p.e. is now calculated as follows:
31 education p.e. = "civ. per graduate" /
32                  "total pre-update civilian population"
33
34 number of graduates produced = class of graduates * education p.e
35
36 For example, lets say you have a pre-update civilian population of
37 40,000 and have produced a class of 260 graduates.  Your education p.e.
38 would be 10000 / 40000 = .25 and your number of graduates would be
39 260 * .25 = 65
40
41  (3) Calculate edu delta from the number of graduates
42 "edu log base" is always 4.0 and "easy edu" is always 5.0.
43 To find out what your edu delta for the update will be, subtract "easy
44 edu" from the number of graduates you are producing and call
45 this number "over easy".  Now divide "over easy" by the log of ("over
46 easy" + "edu log base") base "edu log base", and then add "easy edu" back.
47 Simple eh?  ;-)
48
49 OK, here's an example:
50 Say you are producing 65 graduates.  Then your "over easy" would be 65
51 - 5.0 = 60.  Now the log of (60 + 4.0) base 4.0 is 3 (since 4 to the
52 power 3 is 64), so our edu delta will be 60/3 + 5 = 25.
53
54 (4) Calculate your new education as a weighted average
55 The version output will contain a line like this:
56   Education is averaged over 192 time units
57 And the number of etus per update is printed in the version output as:
58   An update consists of 60 empire time units.
59
60 Your new education is now calculated as follows:
61 "new edu" = ("old edu" * "average etus" + "edu delta" * "etus per update") /
62             ("average etus" + "etus per update")
63
64 So if, for example, your old education level was 40 and your "edu
65 delta" was 25, then your new edu would be:
66 "new edu" = (40 * 192 + 25 * 60) / (192 + 60)
67           = 36.43
68 .fi
69 .s1
70 .SA "Happiness, Innards, nation, Products, Research, Technology, Nations, Producing, Updates"