Advertisement
OscarAHB

Blindaje Primario

Mar 29th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MatLab 0.18 KB | None | 0 0
  1. function Xp = Primario(alfa, beta, gamma, N, T, U, Kp, P, dp)
  2. Res = (1/(alfa*gamma));
  3. A = (((N*T*U*Kp)/(P*(dp)^2))^gamma)+(beta/alfa);
  4. B = (1+(beta/alfa));
  5. L = log(A/B);
  6. Xp = Res*L;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement