Advertisement
sondrex76

Far to long equation for vampire strenght

Aug 28th, 2016
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.71 KB | None | 0 0
  1. Power calculation
  2. A = Age(days)
  3. B = Blood / day
  4. L = last meal size(L)
  5. T = Time since last meal(Days)
  6. V = Blood Volume(0.0742 * Weight)
  7. P = Power
  8. C = Averege consumed blood within p period
  9. a = averege blood consumption per day through life
  10.  
  11.  
  12. p = 3*1.2^log2(1+A) // z Component, days counted for averege short term blood
  13. X = 1.32^log2((a+(C*((p-T)/p*2)))/3/(V/6))
  14. W = 0.48^((log1.5^(1+(T*4^log2(2-((p-T)/p)))))/(1.08^log2.5(1+A)))
  15. Y = (1+1/12)^log1.8(A+1)
  16. Z = 1+(1.5^log2(L/(V/6)))/(1 + T * 320)
  17.  
  18.  
  19. P = W* X * Y * Z
  20. Complete equation:
  21. Power = (1.32^log2((a+(C*((p-T)/p*2)))/3/(V/6))) * (0.48^((log1.5^(1+(T*4^log2(2-((p-T)/p)))))/(1.08^log2.5(1+A)))) * ((1+1/12)^log1.8(A+1)) * (1+(1.5^log2(L/(V/6)))/(1 + T * 320))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement