These forums have been archived and are now read-only.

The new forums are live and can be found at https://forums.eveonline.com/

EVE Technology Lab

 
  • Topic is locked indefinitely.
 

Equation for T2 blueprint manufacturing in POS

Author
Sentient Blade
Crisis Atmosphere
Coalition of the Unfortunate
#1 - 2014-11-13 15:28:13 UTC
I'm having a little difficulty calculating the material requirements for T2 ship assembly; for my example I am going to use the Golem as I have a couple of BPCs laying around for it.

A ME0 Golem requires 37,500 Titanium Diborite Armor Plates.

My material required equation is:

1 - (me * 0.01) - (pos_tower ? 0.02 : 0)

I put a ME5 BPC in a station and run the equation: 37500 * 0.95 = 35,625 which matches what I see on the EVE UI.

I then take the same BPC and take it to a POS with an advanced ship assembly array I just onlined, I take the 0.02 off the multiplier and end up with 37500 * 0.93 = 34,875

However, this does NOT match the EVE UI which shows that it requires 34,913 Titanium Diborite Armor Plates to build.

Can someone help me out with where I am going wrong?

Thank you.
Sentient Blade
Crisis Atmosphere
Coalition of the Unfortunate
#2 - 2014-11-13 15:36:43 UTC
Update:

Figured out my error almost as soon as I posted, the savings are multiplicative rather than additive:

Multiplier = 1 * (1 - me * 0.01) * (pos ? 0.98 : 1)