diff options
author | Michael Abed <michaelabed@gmail.com> | 2012-04-27 14:38:00 -0400 |
---|---|---|
committer | Michael Abed <michaelabed@gmail.com> | 2012-04-27 14:38:00 -0400 |
commit | 8abda914bec24ff8d5f46ec2293152fb0e6f5c57 (patch) | |
tree | 5c601230551569064bedf1b6f8b6c12339651ec5 | |
parent | de330174b48ee1ae0965dbbc39b7ea73b5f23e13 (diff) | |
download | ek301-prelim-8abda914bec24ff8d5f46ec2293152fb0e6f5c57.tar.gz ek301-prelim-8abda914bec24ff8d5f46ec2293152fb0e6f5c57.tar.bz2 ek301-prelim-8abda914bec24ff8d5f46ec2293152fb0e6f5c57.zip |
-rwxr-xr-x | maxLoad.m | 2 | ||||
-rwxr-xr-x | pratt2.m | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ function [ m ] = maxLoad(T, L, D, idx, weak) - D = D - 0.6; + D = D;% - 0.6; L1 = abs(L(L ~= 0)); T1 = abs(T(idx)); ml = D(idx); @@ -32,7 +32,7 @@ C = [ Sy = zeros(12,3); Sy(1,2) = 1; Sy(12,3)=1;
Sx = zeros(12,3); Sx(1,1) = 1;
-X = [0 8 8 16 16 24 24 32.33 32.33 40.66 40.66 49];
+X = [0 8 8 16 16 24 24 32 32 40 40 48];
Y = [0 8 0 0 8 8 0 0 8 8 0 0];
-L = zeros(24,1); L(12+7) = -3.92;
+L = zeros(24,1); L(12+7) = -14.9647;
|