Adesu
17th Mar 2005, 09:24 am
i need code for the building beams...
Hi marc,here you want
------------------------------------------------ BEAMS.LSP -------------------
;
; BEAMS.LSP Copyright 1990 Cerro Metal Products
; P.O. Box 144
; Bellefonte, Pa. 16823
; Phone 814-355-7307
; Fax 814-355-6227
;
; Written by: Walter Mehalko
;
; Notice:
;
; BEAMS.LSP is being provided as a courtesy of Cerro Metal Products for the
; benefit of the users of AutoCad, and is intended for non-commercial,
; non-profit use only. If your have any other intentions, contact the author
; at the phone number listed above. I am very gullable and will probably
; agree to almost anything you have in mind, provided that you consult
; me first.
;
; Do not redistribute this file with any portion of it removed and/or altered.
; The only reason that I ask this of you is so that anyone who stumbles over
; it can find out where to get help if needed.
;
; Every precaution has been taken to make sure that this data is accurate
; and up to date. If you plan to use this information for designing then
; this data should be checked against published sources.
; There is NO GUARANTEE that these data files are error free.
; If you find any errors please contact me at the above address.
;
; These program will be updated to include designing information, stress,
; deflection, etc. If you wish to receive a update please contact me.
; If you find any errors, problems, etc. please inform me so I can make
; corrections and pass them on to others.
;
; WIDE FLANGE BEAM PROGRAM
; DRAWS STANDARD BEAMS USES DATA FILE C:\ACAD\BEAM.DAT
; CERRO METAL PRODUCTS
; REVISION 1.0
; DATE 7-31-90
; WALT MEHALKO
;
;
;
(defun beamerr (s)
(if (/= s "Function cancelled")
(princ (strcat "\nError: " s))
)
(command "setvar" "blipmode" oldb
"setvar" "highlight" oldh
"undo" "e"
"setvar" "cmdecho" olde)
(setq *error* olderr oldb nil oldh nil olde nil olderr nil)
(princ)
)
(defun C:beams (/ olderr oldb olde oldh count i t1 p cs1 l c bst cd fw wt xi xs xr yi ys yr fr mf ip ang p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15 cl)
(setq olderr *error*
*error* beamerr
oldb (getvar "blipmode")
olde (getvar "cmdecho")
oldh (getvar "highlight")
i (open "c:/acad/beam.dat" "r") ; change line to store dat file else where
count 1
) ;q
(setvar "cmdecho" 0)
(if i
(progn
(initget "? Top Side Profile")
(setq t1 (getkword "\n?/Top/Side/Profile <Profile view> : "))
(if bsz (setq p (strcat "Enter Beam Size <" bsz "> ")) (setq bsz "W4X13"))
(setq p (strcat "Enter Beam Size <" bsz "> "))
(initget 1)
(setq cs1 (getstring p)
cs1 (strcase cs1))
(if (/= cs1 "") (setq bsz cs1))
(if (= t1 "Profile") (setq t1 nil))
(setq l t dcount 0)
(while i
(setq c (read-line i)
l t
count 1
) ;q
(if (= c "END")
(if t1 (setq i nil bst nil bsz "W4X13")
(progn
(setq p (strcat "\nBeam Size <" bsz "> NOT Found")
i nil bst nil bsz "W4X13")
(princ p)
) ; progn
) ; if
(while l
(if (= (substr c count 1) ",")
(progn
(setq bst (substr c 1 (1- count)))
(if (and (= t1 "?") (> (strlen bsz) 3))
(if (= bsz bst)
(progn
(textscr)
(setq c (substr c (1+ count)))
(bdisp)
(setq bst nil i nil)
) ; progn
) ; if
(if (and (= t1 "?") (= bsz (substr c 1 (strlen bsz))))
(progn
(setq dcount (1+ dcount))
(if (= dcount 3)
(progn
(setq ans (getstring "\n More (Y/N) < N > : "))
(if (= (strcase ans) "Y") (setq dcount 1) (setq i nil bst nil))
) ; progn
) ; if
(if i
(progn
(textscr)
(setq c (substr c (1+ count)))
(bdisp)
(setq bst nil)
) ; progn
) ; if
) ; progn
) ; if
) ; if
(if (= bsz bst)
(setq c (substr c (1+ count))
cd (atof (substr c 1 5))
wt (atof (substr c 7 5))
fw (atof (substr c 13 6))
ft (atof (substr c 20 5))
fr (atof (substr c 26 5))
xi (atof (substr c 32 5))
xs (atof (substr c 38 4))
xr (atof (substr c 43 4))
yi (atof (substr c 48 4))
ys (atof (substr c 53 4))
yr (atof (substr c 58 4))
i nil
l nil
) ; q
(setq l nil)
) ; if
) ; progn
(setq count (1+ count))
) ; if
) ; while
) ; if
) ; while
) ; while
) ; if
(if bst
(progn
(initget 1)
(setq ip (getpoint "\nEnter Beam Insertion Point: "))
(setq ang (getangle ip "\nEnter Beam Rotation Angle: "))
(if t1 (progn (initget 1) (setq cl (getdist ip "\nEnter Beam Length: "))))
(command "undo" "g")
(setvar "blipmode" 0)
(setvar "highlight" 0)
(if (= t1 nil)
(progn
(if (= ang nil) (setq ang pi))
(setq ip (polar (polar ip (- ang pi)(/ cd 2)) (+ ang (/ pi 2)) (/ fw 2))
p1 (polar ip ang ft)
p2 (polar p1 (- ang (/ pi 2)) (- (/ fw 2) (+ (/ wt 2) fr)))
p3 (polar (polar p2 (- ang (/ pi 2)) fr) ang fr)
p4 (polar p3 ang (- cd (+ (* ft 2) (* fr 2))))
p5 (polar (polar p4 ang fr) (+ ang (/ pi 2)) fr)
p6 (polar p5 (+ ang (/ pi 2)) (- (/ fw 2) (+ (/ wt 2) fr)))
p7 (polar p6 ang ft)
p8 (polar p7 (- ang (/ pi 2)) fw)
p9 (polar p8 (- ang pi) ft)
p10 (polar p9 (+ ang (/ pi 2)) (- (/ fw 2) (+ (/ wt 2) fr)))
p11 (polar (polar p10 (+ ang (/ pi 2)) fr) (- ang pi) fr)
p12 (polar p11 (- ang pi) (- cd (+ (* ft 2) (* fr 2))))
p13 (polar (polar p12 (- ang pi) fr) (- ang (/ pi 2)) fr)
p14 (polar p13 (- ang (/ pi 2)) (- (/ fw 2) (+ (/ wt 2) fr)))
p15 (polar p14 (- ang pi) ft)
) ; q
(command "pline" ip "w" "0" "0" p1 p2 "a" p3 "l" p4 "a" p5 "l" p6 p7 p8 p9 p10 "a" p11 "l" p12 "a" p13 "l" p14 p15 "c")
) ; progn
) ; if
(if (= t1 "Top")
(progn
(setq p1 (polar ip (- ang (/ pi 2)) (/ fw 2))
p2 (polar p1 ang cl)
p3 (polar p2 (+ ang (/ pi 2)) fw)
p4 (polar p1 (+ ang (/ pi 2)) fw)
p5 (polar ip (- ang (/ pi 2)) (/ wt 2))
p6 (polar p5 ang cl)
p7 (polar ip (+ ang (/ pi 2)) (/ wt 2))
p8 (polar p7 ang cl)
) ; q
(command "line" p1 p2 p3 p4 "c"
"linetype" "s" "hidden" ""
"color" "green"
"line" p5 p6 ""
"line" p8 p7 ""
"linetype" "s" "bylayer" ""
"color" "bylayer"
) ; command
) ; progn
) ; if
(if (= t1 "Side")
(progn
(setq p1 (polar ip ang cl)
p2 (polar p1 (+ ang (/ pi 2)) cd)
p3 (polar ip (+ ang (/ pi 2)) cd)
p4 (polar p3 (- ang (/ pi 2)) ft)
p5 (polar p2 (- ang (/ pi 2)) ft)
p6 (polar ip (+ ang (/ pi 2)) ft)
p7 (polar p1 (+ ang (/ pi 2)) ft)
) ; q
(command "line" ip p1 p2 p3 "c"
"line" p4 p5 ""
"line" p6 p7 ""
)
) ; progn
) ; progn
(command "setvar" "blipmode" oldb
"setvar" "highlight" oldh
"undo" "e"
"setvar" "cmdecho" olde
) ; command
(princ p)
) ; progn
) ; if
(princ)
) ; defun
(defun bdisp ( / )
(princ (strcat "\n Wide Flange Size = "bst))
(princ (strcat "\n Beam Depth = "(substr c 1 5)" Web Thickness = "(substr c 7 5)))
(princ (strcat "\n Flange Width = "(substr c 13 6)" Flange Thickness = "(substr c 20 5)))
(princ "\n Properties for Designing")
(princ "\n __________________________________________________ ________")
(princ "\n | Axis X-X | Axis Y-Y |")
(princ "\n | I in4 - S in3 - r in | I in4 - S in3 - r in |")
(princ (strcat "\n | "(substr c 32 5)" | "(substr c 38 4)" | "(substr c 43 4)" | "(substr c 48 4)" | "(substr c 53 4)" | "(substr c 58 4)" |"))
(princ "\n |----------------------------------------------------------|")
(princ "\n\n\n")
)
------------------------------------------------ BEAMS.DAT -------------------
W4X13,4.160,0.280,4.0600,0.345,0.312,11.30,5.46,1. 72,3.86,1.90,1.00
W5X16,5.010,0.240,5.0000,0.360,0.375,21.30,8.51,2. 13,7.51,3.00,1.27
M5X18.9,5.000,0.316,5.0030,0.416,0.375
W5X19,5.150,0.270,5.0300,0.430,0.375,26.20,10.2,2. 17,9.13,3.63,1.28
M6X4.4,6.000,0.114,1.8440,0.171,0.375
W6X9,5.900,0.170,3.9400,0.215,0.375,16.40,5.56,2.4 7,2.19,1.11,.905
W6X12,6.030,0.230,4.0000,0.280,0.375,22.10,7.31,2. 49,2.99,1.50,.918
W6X15,5.990,0.230,5.9900,0.260,0.375,29.10,9.72,2. 56,9.32,3.11,1.46
W6X16,6.280,0.260,4.0300,0.405,0.375,32.10,10.2,2. 60,4.43,2.20,.966
W6X20,6.200,0.260,6.0200,0.365,0.375,41.40,13.4,2. 66,13.3,4.41,1.50
W6X25,6.380,0.320,6.0800,0.455,0.375,53.40,16.7,2. 70,17.1,5.61,1.52
M8X6.5,8.000,0.135,2.2810,0.189,0.437
W8X10,7.890,0.170,3.9400,0.205,0.437,30.80,7.81,3. 22,2.09,1.06,.841
W8X13,7.990,0.230,4.0000,0.255,0.437,39.60,9.91,3. 21,2.73,1.37,.843
W8X15,8.110,0.245,4.0150,0.315,0.437,48.00,11.8,3. 29,3.41,1.70,.876
W8X18,8.140,0.230,5.2500,0.330,0.437,61.90,15.2,3. 43,7.97,3.04,1.23
W8X21,8.280,0.250,5.2700,0.400,0.437,75.30,18.2,3. 49,9.77,3.71,1.26
W8X24,7.930,0.245,6.4950,0.400,0.500,82.80,20.9,3. 42,18.3,5.63,1.61
W8X28,8.060,0.285,6.5350,0.465,0.500,98.00,24.3,3. 45,21.7,6.63,1.62
W8X31,8.000,0.285,7.9950,0.435,0.500,110.0,27.5,3. 47,37.1,9.27,2.02
W8X35,8.120,0.310,8.0200,0.495,0.500,127.0,31.2,3. 51,42.6,10.6,2.03
W8X40,8.250,0.360,8.0700,0.560,0.500,146.0,35.5,3. 53,49.1,12.2,2.04
W8X48,8.500,0.400,8.1100,0.685,0.500,184.0,43.3,3. 61,60.9,15.0,2.08
W8X58,8.750,0.510,8.2200,0.810,0.500,228.0,52.0,3. 65,75.1,18.3,2.10
W8X67,9.000,0.570,8.2800,0.935,0.500,272.0,60.4,3. 72,88.6,21.4,2.12
M10X9,10.00,0.157,2.6900,0.206,0.437
W10X12,9.870,0.190,3.9600,0.210,0.437,53.80,10.9,3 .90,2.18,1.10,.785
W10X15,9.990,0.230,4.0000,0.270,0.437,68.90,13.8,3 .95,2.89,1.45,.810
W10X17,10.11,0.240,4.0100,0.330,0.437,81.90,16.2,4 .05,3.56,1.78,.844
W10X19,10.24,0.250,4.0200,0.395,0.437,96.30,18.8,4 .14,4.29,2.14,.874
W10X22,10.17,0.240,5.7500,0.360,0.375,118.0,23.2,4 .27,11.4,3.97,1.33
W10X26,10.33,0.260,5.7700,0.440,0.437,144.0,27.9,4 .35,14.1,4.89,1.36
W10X30,10.47,0.300,5.8100,0.510,0.437,170.0,32.4,4 .38,16.7,5.75,1.37
W10X33,9.730,0.290,7.9600,0.435,0.625,170.0,35.0,4 .19,36.6,9.20,1.94
W10X39,9.920,0.315,7.9850,0.530,0.625,209.0,42.1,4 .27,45.0,11.3,1.98
W10X45,10.10,0.350,8.0200,0.620,0.625,248.0,49.1,4 .32,53.4,13.3,2.01
W10X49,9.980,0.340,10.000,0.560,0.625,272.0,54.6,4 .35,93.4,18.7,2.54
W10X54,10.09,0.370,10.030,0.615,0.625,303.0,60.0,4 .37,103.,20.6,2.56
W10X60,10.22,0.420,10.080,0.680,0.625,341.0,66.7,4 .39,116.,23.0,2.57
W10X68,10.40,0.470,10.130,0.770,0.625,394.0,75.7,4 .44,134.,26.4,2.59
W10X77,10.60,0.530,10.190,0.870,0.625,455.0,85.9,4 .49,154.,30.1,2.60
W10X88,10.84,0.605,10.265,0.990,0.625,534.0,98.5,4 .54,179.,34.8,2.63
W10X100,11.10,0.680,10.340,1.120,0.625,623.0,112., 4.60,207.,40.0,2.65
W10X112,11.36,0.755,10.415,1.250,0.625,716.0,126., 4.66,236.,45.3,2.68
W12X14,11.91,0.200,3.9700,0.225,0.437,88.60,14.9,4 .62,2.36,1.19,.753
W12X16,11.99,0.220,3.9900,0.265,0.500,103.0,17.1,4 .67,2.82,1.41,.773
W12X19,12.16,0.235,4.0050,0.350,0.437,130.0,21.3,4 .82,3.76,1.88,.822
W12X22,12.31,0.260,4.0300,0.425,0.437,156.0,25.4,4 .91,4.66,2.31,.847
W12X26,12.22,0.230,6.4900,0.380,0.500,204.0,33.4,5 .17,17.3,5.34,1.51
*W12X27,11.96,0.240,6.5000,0.400,0.500
W12X30,12.34,0.260,6.5200,0.440,0.500,238.0,38.6,5 .21,20.3,6.24,1.52
W12X35,12.50,0.300,6.5600,0.520,0.500,285.0,45.6,5 .25,24.5,7.47,1.54
W12X40,11.94,0.295,8.0050,0.515,0.750,310.0,51.9,5 .13,44.1,11.0,1.93
W12X45,12.06,0.335,8.0450,0.575,0.687,350.0,58.1,5 .15,50.0,12.4,1.94
W12X50,12.19,0.370,8.0800,0.640,0.750,394.0,64.7,5 .18,56.3,13.9,1.96
W12X53,12.06,0.345,9.9950,0.575,0.687,425.0,70.6,5 .23,95.8,19.2,2.48
W12X58,12.19,0.360,10.010,0.640,0.750,475.0,78.0,5 .28,107.,21.4,2.51
W12X65,12.12,0.390,12.000,0.605,0.687,533.0,87.9,5 .28,174.,29.1,3.02
W12X72,12.25,0.430,12.040,0.670,0.687,597.0,97.4,5 .31,195.,32.4,3.04
W12X79,12.38,0.470,12.080,0.735,0.687,662.0,107.,5 .34,216.,35.8,3.05
W12X87,12.53,0.515,12.125,0.810,0.687,740.0,118.,5 .38,241.,39.7,3.07
W12X96,12.71,0.550,12.160,0.900,0.750,833.0,131.,5 .44,270.,44.4,3.09
W12X106,12.89,0.610,12.220,0.990,0.687,933.0,145., 5.47,301.,49.3,3.11
W12X120,13.12,0.710,12.320,1.105,0.687,1070.,163., 5.51,345.,56.0,3.13
W12X136,13.41,0.790,12.400,1.250,0.687,1240.,186., 5.58,398.,64.2,3.16
W12X152,13.71,0.870,12.480,1.400,0.750,1430.,209., 5.66,454.,72.8,3.19
W12X170,14.03,0.960,12.570,1.560,0.687,1650.,235., 5.74,517.,82.3,3.22
W12X190,14.38,1.060,12.670,1.735,0.687,1890.,263., 5.82,589.,93.0,3.25
W12X210,14.71,1.180,12.790,1.900,0.750,2140.,292., 5.89,664.,104.,3.28
W12X230,15.05,1.285,12.895,2.070,0.687,2420.,321., 5.97,742.,115.,3.31
W12X252,15.41,1.395,13.005,2.250,0.687,2720.,353., 6.06,828.,127.,3.34
W12X279,15.85,1.530,13.140,2.470,0.687,3110.,393., 6.16,937.,143.,3.38
W12X305,16.32,1.625,13.235,2.705,0.750,3550.,435., 6.29,1050,159.,3.42
W12X336,16.82,1.775,13.385,2.955,0.750,4060.,483., 6.41,1190,177.,3.47
W14X22,13.74,0.230,5.0000,0.335,0.562,199.0,29.0,5 .54,7.00,2.80,1.04
W14X26,13.91,0.255,5.0250,0.420,0.500,245.0,35.3,5 .65,8.91,3.54,1.08
W14X30,13.84,0.270,6.7300,0.385,0.522,291.0,42.0,5 .73,19.6,5.82,1.49
W14X34,13.98,0.285,6.7450,0.455,0.562,340.0,48.6,5 .83,23.3,6.91,1.53
W14X38,14.10,0.310,6.7700,0.515,0.562,385.0,54.6,5 .87,26.7,7.88,1.55
W14X43,13.66,0.305,7.9950,0.530,0.812,428.0,62.7,5 .82,45.2,11.3,1.89
W14X48,13.79,0.340,8.0300,0.595,0.750,485.0,70.3,5 .85,51.4,12.8,1.91
W14X53,13.92,0.370,8.0600,0.660,0.750,541.0,77.8,5 .89,57.7,14.3,1.92
W14X61,13.89,0.375,9.9950,0.645,0.812,640.0,92.2,5 .98,107.,21.5,2.45
W14X68,14.04,0.415,10.035,0.720,0.750,723.0,103.,6 .01,121.,24.2,2.46
W14X74,14.17,0.450,10.070,0.785,0.750,796.0,112.,6 .04,134.,26.6,2.48
W14X82,14.31,0.510,10.130,0.855,0.750,882.0,123.,6 .05,148.,29.3,2.48
W14X90,14.02,0.440,14.520,0.710,0.687,999.0,143.,6 .14,362.,49.9,3.70
W14X99,14.16,0.485,14.565,0.780,0.687,1110.,157.,6 .17,402.,55.2,3.71
W14X109,14.32,0.525,14.605,0.860,0.687,1240.,173., 6.22,447.,61.2,3.73
W14X120,14.48,0.590,14.670,0.940,0.687,1380.,190., 6.24,495.,67.5,3.74
W14X132,14.66,0.645,14.725,1.030,0.687,1530.,209., 6.28,548.,74.5,3.76
W14X145,14.78,0.680,15.500,1.090,0.687,1710.,232., 6.33,677.,87.3,3.98
W14X159,14.98,0.745,15.565,1.190,0.687,1900.,254., 6.38,748.,96.2,4.00
W14X176,15.22,0.830,15.650,1.310,0.687,2140.,281., 6.43,838.,107.,4.02
W14X193,15.48,0.890,15.710,1.440,0.687,2400.,310., 6.50,931.,119.,4.05
W14X211,15.72,0.980,15.800,1.560,0.687,2660.,338., 6.55,1030,130.,4.07
W14X233,16.04,1.070,15.890,1.720,0.625,3010.,375., 6.63,1150,145.,4.10
W14X257,16.38,1.175,15.995,1.890,0.687,3400.,415., 6.71,1290,161.,4.13
W14X283,16.74,1.290,16.110,2.070,0.687,3840.,459., 6.79,1440,179.,4.17
W14X311,17.12,1.410,16.230,2.260,0.687,4330.,506., 6.88,1610,199.,4.20
W14X342,17.54,1.540,16.360,2.470,0.625,4900.,559., 6.98,1810,221.,4.24
W14X370,17.92,1.655,16.475,2.660,0.625,5440.,607., 7.07,1990,241.,4.27
W14X398,18.29,1.770,16.590,2.845,0.625,6000.,656., 7.16,2170,262.,4.31
W14X426,18.67,1.875,16.695,3.035,0.625,6600.,707., 7.26,2360,283.,4.34
W14X455,19.02,2.015,16.835,3.210,0.687,7190.,756., 7.33,2560,304.,4.38
W14X500,19.60,2.190,17.010,3.500,0.687,8210.,838., 7.48,2880,339.,4.43
W14X550,20.24,2.380,17.200,3.820,0.687,9430.,931., 7.63,3250,378.,4.49
W14X605,20.92,2.595,17.415,4.160,0.625,10800,1040, 7.80,3680,423.,4.55
W14X665,21.64,2.830,17.650,4.520,0.687,12400,1150, 7.98,4170,472.,4.62
W14X730,22.42,3.070,17.890,4.910,0.625,14300,1280, 8.17,4720,527.,4.69
W16X26,15.69,0.250,5.5000,0.345,0.687,301.0,38.4,6 .26,9.59,3.49,1.12
W16X31,15.88,0.275,5.5250,0.440,0.687,375.0,47.2,6 .41,12.4,4.49,1.17
W16X36,15.86,0.295,6.9850,0.430,0.687,448.0,56.5,6 .51,24.5,7.00,1.52
W16X40,16.01,0.305,6.9950,0.505,0.687,518.0,64.7,6 .63,28.9,8.25,1.57
W16X45,16.13,0.345,7.0350,0.565,0.687,586.0,72.7,6 .65,32.8,9.34,1.57
W16X50,16.26,0.380,7.0700,0.630,0.687,659.0,81.0,6 .68,37.2,10.5,1.59
W16X57,16.43,0.430,7.1200,0.715,0.687,758.0,92.2,6 .72,43.1,12.1,1.60
W16X67,16.33,0.395,10.235,0.665,0.687,954.0,117.,6 .96,119.,23.2,2.46
W16X77,16.52,0.455,10.295,0.760,0.687,1110.,134.,7 .00,138.,26.9,2.47
W16X89,16.75,0.525,10.365,0.875,0.687,1300.,155.,7 .05,163.,31.4,2.49
W16X100,16.97,0.585,10.425,0.985,0.687,1490.,175., 7.10,186.,35.7,2.51
W18X35,17.70,0.300,6.0000,0.425,0.687,510.0,57.6,7 .04,15.3,5.12,1.22
W18X40,17.90,0.315,6.0150,0.525,0.687,612.0,68.4,7 .21,19.1,6.35,1.27
W18X46,18.06,0.360,6.0600,0.605,0.625,712.0,78.8,7 .25,22.5,7.43,1.29
W18X50,17.99,0.355,7.4950,0.570,0.687,800.0,88.9,7 .38,40.1,10.7,1.65
W18X55,18.11,0.390,7.5300,0.630,0.687,890.0,98.3,7 .41,44.9,11.9,1.67
W18X60,18.24,0.415,7.5550,0.695,0.687,984.0,108.,7 .47,50.1,13.3,1.69
W18X65,18.35,0.450,7.5900,0.750,0.687,1070.,117.,7 .49,54.8,14.4,1.69
W18X71,18.47,0.495,7.6350,0.810,0.687,1170.,127.,7 .50,60.3,15.8,1.70
W18X76,18.21,0.425,11.035,0.680,0.687,1330.,146.,7 .73,152.,27.6,2.61
W18X86,18.39,0.480,11.090,0.770,0.687,1530.,166.,7 .77,175.,31.6,2.63
W18X97,18.59,0.535,11.145,0.870,0.687,1750.,188.,7 .82,201.,36.1,2.65
W18X106,18.73,0.590,11.200,0.940,0.687,1910.,204., 7.84,220.,39.4,2.66
W18X119,18.97,0.655,11.265,1.060,0.687,2190.,231., 7.90,253.,44.9,2.69
W21X44,20.66,0.350,6.5000,0.450,0.750,843.0,81.6,8 .06,20.7,6.36,1.26
W21X50,20.83,0.380,6.5300,0.535,0.750,984.0,94.5,8 .18,24.9,7.64,1.30
W21X57,21.06,0.405,6.5550,0.650,0.750,1170.,111.,8 .36,30.6,9.35,1.35
W21X62,20.99,0.400,8.2400,0.615,0.750,1330.,127.,8 .54,57.5,13.9,1.77
W21X68,21.13,0.430,8.2700,0.685,0.750,1480.,140.,8 .60,64.7,15.7,1.80
W21X73,21.24,0.455,8.2950,0.740,0.750,1600.,151.,8 .64,70.6,17.0,1.81
W21X83,21.43,0.515,8.3550,0.835,0.750,1830.,171.,8 .67,81.4,19.5,1.83
W21X93,21.62,0.580,8.4200,0.930,0.750,2070.,192.,8 .70,92.9,22.1,1.84
W21X101,21.36,0.500,12.290,0.800,0.750,2420.,227., 9.02,248.,40.3,2.89
W21X111,21.51,0.550,12.340,0.875,0.750,2670.,249., 9.05,274.,44.5,2.90
W21X122,21.68,0.600,12.390,0.960,0.750,2960.,273., 9.09,305.,49.2,2.92
W21X132,21.83,0.650,12.440,1.035,0.750,3220.,295., 9.12,333.,53.5,2.93
W21X147,22.06,0.720,12.510,1.150,0.750,3630.,329., 9.17,376.,60.1,2.95
W24X55,23.57,0.395,7.0050,0.505,0.812,1350.,114.,9 .11,29.1,8.30,1.34
W24X62,23.74,0.430,7.0400,0.590,0.812,1550.,131.,9 .23,34.5,9.80,1.38
W24X68,23.73,0.415,8.9650,0.585,0.812,1830.,154.,9 .55,70.4,15.7,1.87
W24X76,23.92,0.440,8.9900,0.680,0.750,2100.,176.,9 .69,82.5,18.4,1.92
W24X84,24.10,0.470,9.0200,0.770,0.812,2370.,196.,9 .79,94.4,20.9,1.95
W24X94,24.31,0.515,9.0650,0.875,0.750,2700.,222.,9 .87,109.,24.0,1.98
W24X104,24.06,0.500,12.750,0.750,0.750,3100.,258., 10.1,259.,40.7,2.91
W24X117,24.26,0.550,12.800,0.850,0.750,3540.,291., 10.1,297.,46.5,2.94
W24X131,24.48,0.605,12.885,0.960,0.812,4020.,329., 10.2,340.,53.0,2.97
W24X146,24.74,0.650,12.900,1.090,0.812,4580.,371., 10.3,391.,60.5,3.01
W24X162,25.00,0.705,12.955,1.220,0.750,5170.,414., 10.4,443.,68.4,3.05
W27X84,26.71,0.460,9.9600,0.640,0.750,2850.,213.,1 0.7,106.,21.2,2.07
W27X94,26.92,0.490,9.9900,0.745,0.687,3270.,243.,1 0.9,124.,24.8,2.12
W27X102,27.09,0.515,10.015,0.830,0.750,3620.,267., 11.0,139.,27.8,2.15
W27X114,27.29,0.570,10.070,0.930,0.687,4090.,299., 11.0,159.,31.5,2.18
W27X146,27.38,0.606,13.965,0.975,0.687,5630.,411., 11.4,443.,63.5,3.21
W27X161,27.59,0.660,14.020,1.080,0.750,6280.,455., 11.5,497.,70.9,3.24
W27X178,27.81,0.725,14.085,1.190,0.687,6990.,502., 11.6,555.,78.8,3.26
W30X99,29.65,0.520,10.450,0.670,0.750,3990.,269.,1 1.7,128.,24.5,2.10
W30X108,29.83,0.545,10.475,0.760,0.812,4470.,299., 11.9,146.,27.9,2.15
W30X116,30.01,0.565,10.495,0.850,0.750,4930.,329., 12.0,164.,31.3,2.19
W30X124,30.17,0.585,10.515,0.930,0.750,5360.,355., 12.1,181.,34.4,2.23
W30X132,30.31,0.615,10.545,1.000,0.750,5770.,380., 12.2,196.,37.2,2.25
W30X173,30.44,0.615,14.985,1.065,0.812,8200.,539., 12.7,598.,79.8,3.43
W30X191,30.68,0.710,15.040,1.185,0.750,9170.,598., 12.8,673.,89.5,3.46
W30X211,30.94,0.775,15.105,1.315,0.812,10300,663., 12.9,757.,100.,3.49
W33X118,32.86,0.550,11.480,0.740,0.812,5900.,359., 13.0,187.,32.6,2.32
W33X130,33.09,0.580,11.510,0.855,0.812,6710.,406., 13.2,218.,37.9,2.39
W33X141,33.30,0.605,11.535,0.960,0.812,7450.,448., 13.4,246.,42.7,2.43
W33X152,33.49,0.635,11.565,1.055,0.812,8160.,487., 13.5,273.,47.2,2.47
W33X201,33.68,0.715,15.745,1.150,0.812,11500,684., 14.0,749.,95.2,3.56
W33X221,33.93,0.775,15.805,1.275,0.812,12800,757., 14.1,840.,106.,3.59
W33X241,34.18,0.830,15.860,1.400,0.812,14200,829., 14.1,932.,118.,3.63
W36X135,35.55,0.600,11.950,0.790,0.875,7800.,439., 14.0,225.,37.7,2.38
W36X150,35.85,0.625,11.975,0.940,0.937,9040.,504., 14.3,270.,45.1,2.47
W36X160,36.01,0.650,12.000,1.020,0.937,9750.,542., 14.4,295.,49.1,2.50
W36X170,36.17,0.680,12.030,1.100,0.875,10500,580., 14.5,320.,53.2,2.53
W36X182,36.33,0.725,12.075,1.180,0.937,11300,623., 14.5,347.,57.6,2.55
W36X194,36.49,0.765,12.115,1.260,0.937,12100,664., 14.6,375.,61.9,2.56
W36X210,36.69,0.830,12.180,1.360,0.937,13200,719., 14.6,411.,67.5,2.58
W36X230,35.90,0.760,16.470,1.260,1.125,15000,837., 14.9,940.,1140,3.73
W36X245,36.08,0.800,16.510,1.350,1.125,16100,895., 15.0,1010,1230,3.75
W36X260,36.26,0.840,16.550,1.440,1.125,17300,953., 15.0,1090,1320,3.78
W36X280,36.52,0.885,16.595,1.570,1.125,18900,1030, 15.1,1200,1440,3.81
W36X300,36.74,0.945,16.655,1.680,1.125,20300,1110, 15.2,1300,1560,3.83
END
vBulletin® v3.6.12, Copyright ©2000-2010, Jelsoft Enterprises Ltd.