MrBlizzard -> RE: German manpower production (11/22/2017 8:58:41 AM)
|
quote:
ORIGINAL: RoflCopter4 I did the math on the actual German manpower production for each year a while back, by counting up all of the German, Polish, and Czech manpower centers and just multiplying them by the manpower modifier and the percentage to the eastern front (in addition to the 10% modifier on Polish and Czech troops). For some reason I decided to write the little script I used in Mathematica, but anyway here it is: manpower[yearin_, germantotal_: 1630] := Module[
{ year = yearin,
german = {germantotal, 0, 0},
czech = {143, 0, 0},
poland = {434, 0, 0},
mult = {7, 8, 9, 6, 7},
usage = {0.75, 0.8, 0.7, 0.6, 0.65},
total = 0
},
Which[year == 41, yearint = 1,
year == 42, yearint = 2,
year == 43, yearint = 3,
year == 44, yearint = 4,
year == 45, yearint = 5,
True, yearint = 1
];
german[[2]] = (german[[1]]*mult[[yearint]]);
czech[[2]] = (czech[[1]]*mult[[yearint]]);
poland[[2]] = (poland[[1]]*mult[[yearint]]);
german[[3]] = (german[[2]]*usage[[yearint]]);
czech[[3]] = (czech[[2]]*(usage[[yearint]]*0.1));
poland[[3]] = (poland[[2]]*(usage[[yearint]]*0.1));
total = german[[3]] + czech[[3]] + poland[[3]]
] Anyway, assuming the size of German manpower centers and the multipliers haven't changed since I wrote that, the results are: Year German Manpower
41 8,860.43
42 10,801.3
43 10,632.5
44 6,075.72
45 7,679.04 Pretty pathetic, huh? Nice calculations! So it seems that Huston we have a problem!![:)] Multipliers have changed since your calculations, but not so much, now should be: 1941 :9 1941 :8 1943 :8 1944 :6 1945 :7 So there could be something wrong somewhere (in game? In your calculations? In my head? [:D] ): We can see from logistic report that axis manpower available per turn is more than 20k in 1942. If only 10k is for Germany (from your calculations) it means than more than 10k is available for other axis powers (Hungary, Romania, Italy, Finland and Slovakia)!!! But these were small countries ( except Italy that anyway contributes only for 10% to eastern front). Another clue is the disabled manpower returning available each turn: other Axis countries all together weight only 25% of Germany! So recapping, it seems impossible that every turn Axis has more than 20k new manpower when only 10k is produced by Germany [&:]
|
|
|
|