Loading...
  OR  Zero-K Name:    Password:   

Post edit history

Wind generator mechanics

To display differences between versions, select one or more edits in the list using checkboxes and click "diff selected"
Post edit history
Date Editor Before After
1/24/2018 11:55:08 AMPLrankAdminSprung before revert after revert
1/23/2018 11:30:12 AMPLrankAdminSprung before revert after revert
1/23/2018 11:27:31 AMPLrankAdminSprung before revert after revert
1/23/2018 11:11:21 AMPLrankAdminSprung before revert after revert
1/23/2018 11:08:55 AMPLrankAdminSprung before revert after revert
1/23/2018 11:07:35 AMPLrankAdminSprung before revert after revert
1/23/2018 11:03:48 AMPLrankAdminSprung before revert after revert
1/23/2018 8:40:19 AMPLrankAdminSprung before revert after revert
1/23/2018 8:38:40 AMPLrankAdminSprung before revert after revert
Before After
1 Edit: see the wikipage: https://zero-k.info/mediawiki/index.php?title=Wind/Tidal_Generator
2 \n
1 [quote]How exactly is the energy output for wind generators calculated?[/quote] 3 [quote]How exactly is the energy output for wind generators calculated?[/quote]
2 \n 4 \n
3 There's a global "wind power", this is a number from 0 to 1. Every 32s the target value changes randomly (uniform distribution) but is reached smoothly over 10s (for example: if power changes from 0.3 to 0.7, it will increase by 0.04 per s for 10s, then sit on that value for the next 22s until the next change). Available as GRP: WindStrength 5 There's a global "wind power", this is a number from 0 to 1. Every 32s the target value changes randomly (uniform distribution) but is reached smoothly over 10s (for example: if power changes from 0.3 to 0.7, it will increase by 0.04 per s for 10s, then sit on that value for the next 22s until the next change). Available as GRP: WindStrength
4 \n 6 \n
5 Each windgen has a minimum income dependent on height, and a maximum of 2.5 E/s. Energy produced is basic interpolation based on power. For example if power is 0.5 then a 0-minimum windgen will produce 1.25 while at the same time a 2.0-minimum one will produce 2.25 7 Each windgen has a minimum income dependent on height, and a maximum of 2.5 E/s. Energy produced is basic interpolation based on power. For example if power is 0.5 then a 0-minimum windgen will produce 1.25 while at the same time a 2.0-minimum one will produce 2.25
6 \n 8 \n
7 Minimum is 2.5 * (0-1 MAP_DEPENDENT_SCALING_FACTOR) * (0-1* height value) 9 Minimum is 2.5 * (0-1 MAP_DEPENDENT_SCALING_FACTOR) * (0-1* height value)
8 \n 10 \n
9 The height value is 0 for windgens at the map's lowest point (or sea level if the map has underwater parts), and 1 for the map's highest peak. You can actually terraform higher to get >1 (as the values depend on initial map state), which helps because the scaling factor is usually <1, but Factor*height caps out at 1 (ie the minimum wind at 2.5) 11 The height value is 0 for windgens at the map's lowest point (or sea level if the map has underwater parts), and 1 for the map's highest peak. You can actually terraform higher to get >1 (as the values depend on initial map state), which helps because the scaling factor is usually <1, but Factor*height caps out at 1 (ie the minimum wind at 2.5)
10 \n 12 \n
11 The map factor is `1/(1+e^(4 - groundExtreme/105))` where groundExtreme is the difference in height between the map's highest and lowest point. Available as GRP: WindSlope 13 The map factor is `1/(1+e^(4 - groundExtreme/105))` where groundExtreme is the difference in height between the map's highest and lowest point. Available as GRP: WindSlope
12 \n 14 \n
13 You can space-click a windgen to see a processed "+X min income per 100 elmo" value for given map. 15 You can space-click a windgen to see a processed "+X min income per 100 elmo" value for given map.
14 \n 16 \n
15 --- 17 ---
16 \n 18 \n
17 ZK wind strength for energy purposes is independent of engine-side wind, which is what BA etc use. Engine wind strength affects things like smoke particles from geospots or wrecks, or confetti from unit deaths. Their direction is correlated but not exactly 1:1 (windgens rotate to match engine-wind direction every 32s when strength updates, but this is a snapshot - physics-wind can change more often than that). 19 ZK wind strength for energy purposes is independent of engine-side wind, which is what BA etc use. Engine wind strength affects things like smoke particles from geospots or wrecks, or confetti from unit deaths. Their direction is correlated but not exactly 1:1 (windgens rotate to match engine-wind direction every 32s when strength updates, but this is a snapshot - physics-wind can change more often than that).
18 \n 20 \n
19 [quote]Only Quantum may know or understand why the wind generation is the way that it is.[/quote] 21 [quote]Only Quantum may know or understand why the wind generation is the way that it is.[/quote]
20 I'm no Quantum but the mechanics of wind power (uniform distribution, gradual change, updates periodically) are inherited from OTA, the only things that differs is the height bonus. The map scaling factor is so that you won't get a powerful windgen by placing it on, say, the highest "peak" of CCR. The height bonus is probably an attempt at "realism" with interesting emergent gameplay consequences. 22 I'm no Quantum but the mechanics of wind power (uniform distribution, gradual change, updates periodically) are inherited from OTA, the only things that differs is the height bonus. The map scaling factor is so that you won't get a powerful windgen by placing it on, say, the highest "peak" of CCR. The height bonus is probably an attempt at "realism" with interesting emergent gameplay consequences.