ME 475 – Optimization of a Truss

Total Page:16

File Type:pdf, Size:1020Kb

ME 475 – Optimization of a Truss ME 475 – Modal Analysis and Optimization of a Tapered Beam Objectives: To optimize the shape of a tapered beam to minimize the mass, while holding the first three natural frequencies above those of the baseline design. Analysis Problem Statement: Find the natural frequencies and mode shapes of vibration for a cantilevered tapered beam. The geometrical, material, and loading specifications are given in Figure 1. The height of the beam is 2h inches, where h is described by the equation: h = 4 − 0.6x + 0.03x2 . Figure 1. Geometry, material, and loading specifications for a tapered beam. Optimization Problem Statement: minimize: mass of the tapered beam subject to: first natural frequency ≥ 2127 Hz second natural frequency ≥ 5604.5 Hz third natural frequency ≥ 6417.7 Hz 1 by varying: 3 ≤ height1 ≤ 5 2 ≤ height2 ≤ 4 2 ≤ height3 ≤ 3.5 1.5 ≤ height4 ≤ 3.5 1 ≤ height5 ≤ 3 0.5 ≤ height6 ≤ 2.5 0.5 ≤ height7 ≤ 2 Baseline Design: height1 = 4 height2 = 3.43 height3 = 2.92 height4 = 2.08 height5 = 1.48 height6 = 1.12 height7 = 1 Mass = 0.0294228 lbm. FirstNaturalFreq = 2127.0 Hz SecondNaturalFreq = 5604.5 Hz ThirdNaturalFreq = 6417.7 Hz Mathematical Idealization: The analysis will use the plane stress assumption, because the tapered beam is very thin in comparison to its other dimensions. Preliminary Procedure: Past optimizations modified parameters that existed directly in the Abaqus input file. Since this optimization involves changing geometry (shape optimization) of the part, it must be remeshed, and a new input file will be created for every HEEDS evaluation. The pre-processing side of this optimization will be similar to that for the Torque Arm optimization problem. A python script will 2 be recorded that will be used to generate new designs. In this case, the post-processing will use HEEDS Scripting. This time around, it is very important that the script always begin with a CAE database that reflects the baseline design. This is important because splines can become very irregular if modified more than once. Start with the finished Abaqus/CAE database from the last lab. The following steps will be recorded by Abaqus/CAE to a python script, so if mistakes are made, they will be recorded as well. It may be necessary to perform this series of steps a second or third time to get a good python script. This script is created so HEEDS can recreate the steps the analyst would typically perform by hand to generate a new design, except in an automated fashion. 1. Create a working directory in C:\Temp called “Modal_Optimization”. 2. Copy your 2D Modal Analysis CAE database, created in the last lab, into this folder. 3. Start with Abaqus/CAE closed. 4. Start Run type “cmd”, press enter. 5. Type “C:”, press enter. 6. Type “cd C:\Temp\Modal_Optimization”. 7. Type “abaqus cae”. 8. Open the saved 2D Model Analysis CAE database. 9. Edit the sketch that defines the beam geometry. 10. Modify the values of the vertical dimensions that define the height of the 7 points that the spline is created through. Change them to values that are different from the original values, but within the variable ranges specified in the Optimization Problem Statement. 11. Exit the sketcher, and be sure the part regenerates. The beam geometry should now reflect the changes made to the sketch. If it does not, you will need to regenerate the part manually. 12. Move to the assembly module. This will allow the assembly instance to regenerate. 13. Move to the mesh module. 14. Remesh the part. Mesh seed, controls, and element type should not need to be specified again. 3 15. Move to the job module. 16. Write the input file. 17. Use the “Save As” command to save the CAE database as a new database. Do not use the “Save” command! Now look in the working directory for a file called “abaqus.rpy”. Rename it to “change_beam.py”. Open this file in a text editor. Change the path to the CAE database (on the line that starts with “openMdb”) so only the name of the CAE database (“old” *.cae file) remains inside the single quotes. Do the same for the line at the end of the file (on the line that starts with “mdb.saveAs”). Save this python script. It is not ready to be used with HEEDS. However, it should be tested first. Modify the values of the variable values. Keep them within the ranges stated in the Optimization Problem Statement. Save the python script. Delete the *.inp file in the folder. Finally, from a command prompt that is already set to the working directory, execute the following command: abaqus cae noGUI=change_beam.py This will start Abaqus/CAE and immediately execute the python script. After it finishes, check that the input file has been rewritten. If the input file was rewritten properly, then the python script works are intended. If not, you can attempt to debug the python script, or re-record it. Open the *.inp file in a text editor. Delete the contents, and save it. This is an error catching measure. 4 HEEDS Procedure: First, be sure the python script and the CAE database is in the working directory. Also, be sure that there is a *.dat file in the output database. 1. Open the HEEDS Modeler. 2. Create a new project in the working directory. 3. In the Processes tab, change the name of the analysis to “CAE”, the execution command to “abaqus”, and the command line options to “cae noGUI=change_beam.py”, all without the quotes. It should look similar to Figure 2 when finished. Figure 2. First HEEDS analysis manager options. 4. Add, as input files, the CAE database (“old” *.cae file), the python script, and the now empty *.inp file. 5. There are no output files for this HEEDS analysis. 6. Create a second analysis, and name it “FEA”. Change the execution command to “abaqus”, and the command line options to “interactive job=<jobname>” where <jobname> is the name of the input deck that is created by the python script. It should look similar to Figure 3 when finished. Figure 3. Second HEEDS analysis manager options. 7. There are no input files for this HEEDS analysis. Add the *.dat file as an output file. 5 8. Move on to the variables tab. 9. Create seven design variables, and assign ranges as listed in the Optimization Problem Statement. 10. Create four responses, those listed in the Optimization Problem Statement. All will have a file as the source. 11. Move on to the Tagging tab. 12. Tag the design variables in the python script, as has been done in previous labs. 13. Next, the responses will be tagged using the “Script” method. Select the “Mass” response, then the *.dat file as the output file, and change the tagging mode to “Script”. 14. Add the following script: OPEN_FILE(Tapered_Beam_2D_Modal.dat) GOTO_STRING(TOTAL MASS,1) MOVE_DOWN(2) GET_VALUE_FREE(1) CLOSE_FILE a. Be sure to modify the file listed in the “OPEN_FILE” command to match the name of your output file. b. Be sure to press the “Tag”. 15. Do the same for the following responses and scripts: a. FirstNaturalFreq: OPEN_FILE(Tapered_Beam_2D_Modal.dat) GOTO_STRING(EIGENVALUE,2) MOVE_DOWN(4) GET_VALUE_FREE(4) CLOSE_FILE b. SecondNaturalFreq: OPEN_FILE(Tapered_Beam_2D_Modal.dat) GOTO_STRING(EIGENVALUE,2) MOVE_DOWN(5) GET_VALUE_FREE(4) CLOSE_FILE 6 c. ThirdNaturalFreq: OPEN_FILE(Tapered_Beam_2D_Modal.dat) GOTO_STRING(EIGENVALUE,2) MOVE_DOWN(6) GET_VALUE_FREE(4) CLOSE_FILE 16. Be sure to extract the values for all these responses. They should match the values in the Baseline Design section. 17. Tagging is now complete. Move on to the Assembly tab. 18. Assign “Process_1” to the optimization agent “OPT_Agent_1”. 19. Next, setup the responses. It should look like Figure 4 when finished. Figure 4. The agent responses after assigning the optimization options. 20. Click on the “Variables” button. Verify that all seven variables appear. If some or all are missing, it means they were not tagged properly. The default resolution of 101 is acceptable for this problem. 21. Click on the “Methods” button. Choose SHERPA, with 150 evaluations. 22. Next, move to the Run tab. Save the project. The optimization is now ready to be run. The length of one evaluation for this problem is usually about 10 to 40 seconds, depending on the computer used and location of the working directory. Thus, it could take a couple of hours to run the full optimization. Running on the local drive, such as in C:\Temp, will minimize runtime for each evaluation. Model Validation: The model was validated in last week’s lab, so it is not necessary to validate it again. 7 Report Requirements: A full report is required for this lab (see ME 475 Lab Report Format Guidelines). 1. Present plots of the first mode of vibration for the best and baseline design. 2. Present a table comparing the variable and response values for the best and baseline designs. 3. Present plots of trajectories of the responses throughout the optimization. Do the same for the design variables. 4. Comment on any convergence that exists. Note any constraints that are active and any design variables at extreme values. 8.
Recommended publications
  • Solid Truss to Shell Numerical Homogenization of Prefabricated Composite Slabs
    materials Article Solid Truss to Shell Numerical Homogenization of Prefabricated Composite Slabs Natalia Staszak 1, Tomasz Garbowski 2 and Anna Szymczak-Graczyk 3,* 1 Research and Development Department, FEMat Sp. z o. o., Romana Maya 1, 61-371 Pozna´n,Poland; [email protected] 2 Department of Biosystems Engineering, Poznan University of Life Sciences, Wojska Polskiego 50, 60-627 Pozna´n,Poland; [email protected] 3 Department of Construction and Geoengineering, Poznan University of Life Sciences, Pi ˛atkowska94 E, 60-649 Pozna´n,Poland * Correspondence: [email protected] Abstract: The need for quick and easy deflection calculations of various prefabricated slabs causes simplified procedures and numerical tools to be used more often. Modelling of full 3D finite element (FE) geometry of such plates is not only uneconomical but often requires the use of complex software and advanced numerical knowledge. Therefore, numerical homogenization is an excellent tool, which can be easily employed to simplify a model, especially when accurate modelling is not necessary. Homogenization allows for simplifying a computational model and replacing a complicated composite structure with a homogeneous plate. Here, a numerical homogenization method based on strain energy equivalence is derived. Based on the method proposed, the structure of the prefabricated concrete slabs reinforced with steel spatial trusses is homogenized to a single plate element with an effective stiffness. There is a complete equivalence between the full 3D FE model built with solid elements combined with truss structural elements and the simplified Citation: Staszak, N.; Garbowski, T.; Szymczak-Graczyk, A. Solid Truss to homogenized plate FE model.
    [Show full text]
  • Bridge Types in NSW Historical Overviews 2006
    Timber Truss Bridges Study of Relative Heritage Significance of All Timber Truss Road Bridges in NSW 1998 25 Historical Overview of Bridge Types in NSW: Extract from the Study of Relative Heritage Significance of all Timber Truss Road Bridges in NSW HISTORY OF TIMBER TRUSS BRIDGES IN NSW 1.1 GENERAL During the first fifty years of the colony of New South Wales, 1788 - 1838, settlement was confined to the narrow coastal strip between the Pacific Ocean and the Great Dividing Range. The scattered communities were well served by ships plying the east coast and its many navigable rivers. Figure 1.1a: Settlement of early colonial NSW. Shaded areas are settled. In Governor Macquarie's time between 1810-1822, a number of good roads were built, but despite his efforts and those of the subsequent Governors Darling and Bourke, and of road builders George Evans, William Cox and Thomas Mitchell, the road system and its associated bridges could only be described as primitive. Many roads and bridges were financed through public subscriptions or as private ventures, particularly where tolls could be levied. The first significant improvement to this situation occurred in late 1832 when Surveyor- General Mitchell observed a competent stone mason working on a wall in front of the Legislative Council Chambers in Macquarie Street. It was David LennoxR3. He was appointed Sub-Inspector of Roads on October 1, 1832 then Superintendent of Bridges on June 6, 1833. His first project was to span a gully for the newly formed Mitchell's Pass on the eastern side of the Blue Mountains.
    [Show full text]
  • Learning the Methods of Engineering Analysis Using Case Studies, Excel and VBA - Course Design
    Computers in Education, Session 1520 Learning the Methods of Engineering Analysis Using Case Studies, Excel and VBA - Course Design Michael A. Collura, Bouzid Aliane, Samuel Daniels, Jean Nocito-Gobel School of Engineering & Applied Science, University of New Haven Abstract Methods of Engineering Analysis, EAS 112, is a first year course in which engineering and applied science students learn how to apply a variety of computer analysis methods. The course uses a “problem-driven” approach in which case studies of typical engineering and science problems become the arena in which these analytical methods must be applied. A common spreadsheet program, such as Microsoft Excel, is the starting point to teach such topics as descriptive statistics, regression, interpolation, integration and solving sets of algebraic, differential and finite difference equations. Students are also introduced to programming fundamentals in the Visual Basic for Applications environment as they create the algorithms needed for the analysis. In this programming environment students gain an understanding of basic programming concepts, such as data types, assignment and conditional statements, logical and numerical functions, program flow control, passing parameters/returning values with functions and working with arrays. EAS 112 is a stop along the Multidisciplinary Engineering Foundation Spiral1 in the engineering programs at the University of New Haven. A typical student will take the course in the second semester of the first year. Certain engineering foundation topics will appear in the assigned problems and case studies, contributing to students’ understanding of areas such as electrical circuits, mass balances, and structural mechanics. At this point along the spiral curriculum students are given most of the equations needed to analyze the case study problems, but they are responsible for development of the algorithms and implementing these in the spreadsheet and/or programming environment.
    [Show full text]
  • The Development and Verification of Three Matlab Analysis Applications Programmed Specifically for Engage Eamt Projects
    University of Tennessee, Knoxville TRACE: Tennessee Research and Creative Exchange Masters Theses Graduate School 8-2003 The Development and Verification of Three Matlab Analysis Applications Programmed Specifically for Engage eamT Projects. Jonathan W. Huber University of Tennessee - Knoxville Follow this and additional works at: https://trace.tennessee.edu/utk_gradthes Part of the Engineering Science and Materials Commons Recommended Citation Huber, Jonathan W., "The Development and Verification of Three Matlab Analysis Applications Programmed Specifically for Engage eamT Projects.. " Master's Thesis, University of Tennessee, 2003. https://trace.tennessee.edu/utk_gradthes/2015 This Thesis is brought to you for free and open access by the Graduate School at TRACE: Tennessee Research and Creative Exchange. It has been accepted for inclusion in Masters Theses by an authorized administrator of TRACE: Tennessee Research and Creative Exchange. For more information, please contact [email protected]. To the Graduate Council: I am submitting herewith a thesis written by Jonathan W. Huber entitled "The Development and Verification of Three Matlab Analysis Applications Programmed Specifically for Engage eamT Projects.." I have examined the final electronic copy of this thesis for form and content and recommend that it be accepted in partial fulfillment of the equirr ements for the degree of Master of Science, with a major in Engineering Science. Christopher Pionke, Major Professor We have read this thesis and recommend its acceptance: J. Roger Parsons, Jaime Elaine Seat Accepted for the Council: Carolyn R. Hodges Vice Provost and Dean of the Graduate School (Original signatures are on file with official studentecor r ds.) To the Graduate Council: I am submitting the enclosed thesis written by Jonathan W.
    [Show full text]
  • 06 BCSI Booklet FINAL.Pdf
    IMPORTANT SAFETY INFORMATION Guide to Good Practice for Handling, Installing, Restraining & Bracing of Metal Plate Connected Wood Trusses NOTICE WARNING CAUTION DANGER JOINTLY PRODUCED BY Structural Building Components Association 2006 EDITION UPDATED JUNE 2011 Building Component Safety Information WARNING CAUTION DANGER Use of the words above in any language should tell the reader that Prior to Truss installation, it is recommended that the documents an unsafe condition or action will greatly increase the probability be examined and disseminated to all appropriate personnel. In of an accident occurring that results in serious personal injury addition to proper training and a clear understanding of the in- or death. Disregarding or ignoring handling, installing, restraining stallation plan, any applicable fall protection requirements and the and bracing safety recommendations is the major cause of Struc- intended restraint/Bracing requirements shall be understood. tural Building Component erection/installation accidents. Examine the structure, including the framing system, bearing lo- The erection/installation of Structural Building Components is in- cations, and related installation locations and begin Truss installa- herently dangerous and requires, above all, careful planning and tion only after any unsatisfactory conditions have been corrected. communication between the Contractor involved with the erection/ Do not cut, modify, or repair components. Report any damage installation, installation crew and the crane operator. Depending on before installation. the experience of the Contractor, it is strongly recommended that a meeting be held with all onsite individuals involved in the lift- The information in this booklet is offered as a minimum guideline ing/hoisting, installing and temporary/permanent restraint/bracing only.
    [Show full text]
  • Solaris Performance and Tools -- Chapter 3 Processes
    solarispod.book Page 35 Thursday, June 22, 2006 11:58 AM 3 Processes Contributions from Denis Sheahan Monitoring process activity is a routine task during the administration of sys- tems. Fortunately, a large number of tools examine process details, most of which make use of procfs. Many of these tools are suitable for troubleshooting applica- tion problems and for analyzing performance. 3.1 Tools for Process Analysis Since there are so many tools for process analysis, it can be helpful to group them into general categories. Overall status tools. The prstat command immediately provides a by-pro- cess indication of CPU and memory consumption. prstat can also fetch microstate accounting details and by-thread details. The original command for listing process status is ps, the output of which can be customized. Control tools. Various commands, such as pkill, pstop, prun and preap, control the state of a process. These commands can be used to repair applica- tion issues, especially runaway processes. Introspection tools. Numerous commands, such as pstack, pmap, pfiles, and pargs inspect process details. pmap and pfiles examine the memory and file resources of a process; pstack can view the stack backtrace of a pro- cess and its threads, providing a glimpse of which functions are currently running. 35 solarispod.book Page 36 Thursday, June 22, 2006 11:58 AM 36 Chapter 3 Processes Lock activity examination tools. Excessive lock activity and contention can be identified with the plockstat command and DTrace. Tracing tools. Tracing system calls and function calls provides the best insight into process behavior. Solaris provides tools including truss, apptrace, and dtrace to trace processes.
    [Show full text]
  • RISA-3D Tutorials, General Reference Guide and Licensing Guide Can Be Found
    RISA-3D Tutorial – Version 19 RISA Tech, Inc. 26632 Towne Centre Drive, Suite 210 Foothill Ranch, California 92610 Phone: (949) 951-5815 Email: [email protected] risa.com Copyright © 2020, RISA Tech, Inc. All Rights Reserved. RISA is part of the Nemetschek Group . RISA, the RISA logo and RISA-3D are registered trademarks of RISA Tech, Inc. All other trademarks mentioned in this publication are the property of their respective owners. No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or otherwise, without the prior written permission of RISA Tech, Inc. Every effort has been made to make this publication as complete and accurate as possible, but no warranty of fitness is implied. The concepts, methods, and examples presented in this publication are for illustrative and educational purposes only and are not intended to be exhaustive or to apply to any particular engineering problem or design. The advice and strategies contained herein may not be suitable for your situation. You should consult with a professional where appropriate. RISA Tech, Inc. assumes no liability or responsibility to any person or company for direct or indirect damages resulting from the use of any information contained herein. Table of Contents Table of Contents Table of Contents ............................................................................................................................................................. i Online Help ........................................................................................................................................................................
    [Show full text]
  • Download the Sample Pages
    Many of the designations used by manufacturers and sellers to distinguish their products are claimed as trademarks. Where those designations appear in this book, and the publisher was aware of a trademark claim, the designations have been printed with initial capital letters or in all capitals. The authors and publisher have taken care in the preparation of this book, but make no expressed or implied warranty of any kind and assume no responsibility for errors or omissions. No liability is assumed for incidental or consequential damages in connection with or arising out of the use of the information or programs contained herein. Sun Microsystems, Inc., has intellectual property rights relating to implementations of the technology described in this publication. In particular, and without limitation, these intellectual property rights may include one or more U.S. patents, foreign patents, or pending applications. Sun, Sun Microsystems, the Sun logo, J2ME, J2EE, Solaris, Java, Javadoc, Java Card, NetBeans, and all Sun and Java based trademarks and logos are trademarks or registered trademarks of Sun Microsystems, Inc., in the United States and other countries. UNIX is a registered trademark in the United States and other countries, exclusively licensed through X/Open Company, Ltd. THIS PUBLICATION IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. THIS PUBLICATION COULD INCLUDE TECHNICAL INACCURACIES OR TYPOGRAPHICAL ERRORS. CHANGES ARE PERIODICALLY ADDED TO THE INFORMATION HEREIN; THESE CHANGES WILL BE INCORPORATED IN NEW EDI- TIONS OF THE PUBLICATION.
    [Show full text]
  • Evaluation of Smeared Constitutive Laws for Tensile Concrete to Predict the Cracking of RC Beams Under Torsion with Smeared Truss Model
    materials Article Evaluation of Smeared Constitutive Laws for Tensile Concrete to Predict the Cracking of RC Beams under Torsion with Smeared Truss Model Mafalda Teixeira and Luís Bernardo * Centre of Materials and Building Technologies (C-MADE), Department of Civil Engineering and Architecture, University of Beira Interior, 6201-001 Covilhã, Portugal; [email protected] * Correspondence: [email protected] Abstract: In this study, the generalized softened variable angle truss-model (GSVATM) is used to predict the response of reinforced concrete (RC) beams under torsion at the early loading stages, namely the transition from the uncracked to the cracked stage. Being a 3-dimensional smeared truss model, the GSVATM must incorporate smeared constitutive laws for the materials, namely for the tensile concrete. Different smeared constitutive laws for tensile concrete can be found in the literature, which could lead to different predictions for the torsional response of RC beams at the earlier stages. Hence, the GSVATM is used to check several smeared constitutive laws for tensile concrete proposed in previous studies. The studied parameters are the cracking torque and the corresponding twist. The predictions of these parameters from the GSVATM are compared with the experimental results from several reported tests on RC beams under torsion. From the obtained results and the performed comparative analyses, one of the checked smeared constitutive laws for tensile concrete was found to lead to good predictions for the cracking torque of the RC beams regardless of the cross-section type (plain or hollow). Such a result could be useful to help with choosing the best constitutive laws to be Citation: Teixeira, M.; Bernardo, L.
    [Show full text]
  • Problem Solving and Troubleshooting in AIX 5L
    Front cover Problem Solving and Troubleshooting in AIX 5L Introduction of new problem solving tools and changes in AIX 5L Step by step troubleshooting in real environments Complete guide to the problem determination process HyunGoo Kim JaeYong An John Harrison Tony Abruzzesse KyeongWon Jeong ibm.com/redbooks International Technical Support Organization Problem Solving and Troubleshooting in AIX 5L January 2002 SG24-5496-01 Take Note! Before using this information and the product it supports, be sure to read the general information in “Special notices” on page 439. Second Edition (January 2002) This edition applies to IBM ^ pSeries and RS/6000 Systems for use with the AIX 5L Operating System Version 5.1 and is based on information available in August, 2001. Comments may be addressed to: IBM Corporation, International Technical Support Organization Dept. JN9B Building 003 Internal Zip 2834 11400 Burnet Road Austin, Texas 78758-3493 When you send information to IBM, you grant IBM a non-exclusive right to use or distribute the information in any way it believes appropriate without incurring any obligation to you. © Copyright International Business Machines Corporation 1999-2002. All rights reserved. Note to U.S Government Users – Documentation related to restricted rights – Use, duplication or disclosure is subject to restrictions set forth in GSA ADP Schedule Contract with IBM Corp. Contents Figures . xiii Tables . xv Preface . xvii The team that wrote this redbook. xvii Special notice . xix IBM trademarks . xix Comments welcome. xix Chapter 1. Problem determination introduction. 1 1.1 Problem determination process . 3 1.1.1 Defining the problem . 3 1.1.2 Gathering information from the user .
    [Show full text]
  • Reading a Mitek Shop Drawing 1234 SHOP1 CATHEDRAL 1 4 1 1 Job Name 7.500 S Nov 26 2013 Mitek Industries, Inc
    Job Truss Truss Type Qty Ply 1 2 3 5 6 Reading a MiTek Shop Drawing 1234 SHOP1 CATHEDRAL 1 4 1 1 Job name 7.500 s Nov 26 2013 MiTek Industries, Inc. Mon Apr 07 08:50:23 2014 Page 1 2 Truss label 8a 7 3 Truss type 4-0-0 5-0-0 12-0-0 19-0-0 25-0-14 31-1-11 38-0-0 40-0-0 4-0-0 1-0-0 7-0-0 7-0-0 6-0-14 6-0-14 6-10-5 2-0-0 4 Truss quantity 8b 5 Number of plies Scale = 1:67.1 5x6 9 6 Job description 6 7 Software version 10 11 7.14 12 8a Cumulated dimensions of top chord – panel lengths are added together along the top chord of truss 21 8.00 12 20 8b Panel lengths of the top chord – each section represents the horizontal distance between the centerline of two T4 3x4 consecutive panel points along the top chord W7 7 3x5 9 Drawing scale of the truss 12 13 5 T3 – inches of vertical rise for each 12 inches of horizontal run W8 3x6 10 Top chord slope W6 8 11 Top chord member label – identification label used to distinguish pieces 11-7-15 B4 1.5x4 B3 15 W9 3x6 15 14 9 12 Truss height – the height of the truss from the top of the bearing to the top of the top chord (trusses with multiple W5 7x8 13 levels of top chord will have multiple truss height dimensions) 3x7 4 W10 4.00 12 16 4x6 5x5 13 Plate size and orientation – plate size in inches and the two lines denote the direction of the plate 3x6 4.33 12 3 T2 12 B5 6-8-0 2 4.00 12 T5 W4 B2 17 3x4 22 14 Continuous lateral bracing location W3 3x9 1 T1 W1W2 10 15 Web member label B1 0-3-15 11 16 Heel height – the height from the top of the bearing to the top of the top chord at the outside edge of the
    [Show full text]
  • Hawkeye Screed 4-2020 Updateweb Hawkeye Screed 4
    The GOMACO Hawkeye Screed is designed for finishing a variety of projects including driveways, streets, ramps, or any flat slab. The truss system on the MV-18 model is manufactured out of high tensile tubular steel in an 18 in. (457 mm) equilateral triangle. This screed is built to last in concrete job-site conditions. The Worldwide Leader in Concrete Paving Technology HAWKEYE SCREED SPECIFICATIONS • Hawkeye screed model MV-18 is an engine-powered • The MV-18 can accommodate both winches at one screed that eliminates the need for an air compressor on end, allowing one man to move the screed forward. the job site. It is equipped with an 8.5 hp (6.3 kW) gasoline engine. • The MV-18 includes a 3/4 in. (19 mm) rustproof vibrator shaft with ball bearings on 30 in. (762 mm) • Truss sections for the MV-18 screed are available in 5 ft. centers. (1.52 m) and 7.5 ft. (2.29 m) lengths. All sections feature rigid stainless steel finishing screeds. • Eccentric weights clamp on the shaft. Heavier weights for finishing low-slump concrete are easily installed • Two 2500 lb. (1134 kg) capacity hand winches are without disassembly of the line shaft. included and 65 ft. (19.81 m) of 1/8 in. (3.2 mm) diameter aircraft cable with necessary pulleys and hooks. Optional • The standard width of the MV-18 screed is 11.5 ft. hydraulic powered or air-powered winches are available. (3.51 m) and weighs 312 lbs. (141.5 kg). The maximum frame width is 49 ft.
    [Show full text]