-
Notifications
You must be signed in to change notification settings - Fork 1
E2 optimization examples
The internal sign-timed functionality calculates the piston reaction forces trigger just like the described function function number doPiston(A, R)
with the difference that force condition is a separate function assigned during piston creation. The E2
interpreter setups the B
and IF
values only once and uses them in the dedicated conditions A > 0
, A < 0
, and A = 0
.
For better performance consider combining pistons with the same initialization parameters. To do that please take a look at T4
and T9
their both top origin crankshaft angle is at 0
degrees, so you can simply do T9 = T4
. When using the piston timing generation library, the example above can be optimized easily.
If you need to take this thing further please take a look at piston ID tuples 1 > 6
, 4 > 2
, 3 > 5
. Since these tuples are 180 degrees apart, finally you can end up with only 3 timings as (+/-)180
, +120
and -120
. You can do T8 = -T1
(As T8
is bind to timing 6
), T4 = -T2
and T5 = -T3
. The vector equivalent E2
can be found here.
Congratulations! Now you have a W18 engine with only 3 timings !
First of all, you can see how to create vector driven pistons that use cross-product timings, that give the same result as sinewave timing but are less hungry for your E2
chip performance. A typical code example can be found here, where the global axis, marker, and base entity are used for the given E2
chip, so the piston allocation can be created via a unique key and a dedicated marker vector. The same optimization rules apply here as well, regarding the different data type, as a vector can encode direction and magnitude. Opposite vectors will result in negating the piston force, as well as pistons with the same marker vector having the exact same output force. You can play around with the dedicated dupe tutorial for this system here.
Attention! Do not modify these wiki pages manually! They are automatically generated and will be overwritten in the next update! I constantly develop this addon, so it will be better to just tell me if something is wrong via the issue system.