Openseespy Documentation Release 3.3.0.0

Total Page:16

File Type:pdf, Size:1020Kb

Openseespy Documentation Release 3.3.0.0 OpenSeesPy Documentation Release 3.3.0.0 Minjie Zhu Sep 04, 2021 Contents 1 Developer 3 Index 447 i ii OpenSeesPy Documentation, Release 3.3.0.0 Important: Version 3.3.0.0 is released! OpenSeesPy is on PyPi (Windows, Linux, Mac). The latest version of this document can be found at https://openseespydoc.readthedocs.io/en/latest/. Note: Questions including modeling issues and the use of OpenSeesPy, please post on OpenSeesPy Forum. You are very welcome to contribute to OpenSeesPy with new command documents and examples by sending pull requests through github pulls. For errors in this document, submit on github issues. OpenSeesPy is a Python 3 interpreter of OpenSees. A minimum script is shown below: # import OpenSeesPy import openseespy.opensees as ops # import OpenSeesPy plotting commands import openseespy.postprocessing.Get_Rendering as opsplt # wipe model ops.wipe() # create model ops.model('basic','-ndm',2,'-ndf',3) # plot model opsplt.plot_model() To run a test of the pip installation: pytest--pyargs openseespy.test Contents 1 OpenSeesPy Documentation, Release 3.3.0.0 2 Contents CHAPTER 1 Developer Minjie Zhu Research Associate Civil and Construction Engineering Oregon State University 1.1 Installation 1. PyPi (Windows, Linux, Mac) 2. Other Instalation 1.1.1 PyPi (Windows, Linux, Mac) 1. PyPi (Windows) 2. PyPi (Linux) 3. PyPi (Mac) PyPi (Windows) Install Anaconda • Install Anaconda 3 OpenSeesPy Documentation, Release 3.3.0.0 Install In Jupyter Notebook • Start Jupyter Notebook • run install command in the notebook Install In command line • Start Anaconda Prompt 4 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 • To install python-m pip install openseespy python-m pip install--user openseespy • To upgrade python-m pip install--upgrade openseespy python-m pip install--user--upgrade openseespy • To import import openseespy.opensees as ops PyPi (Linux) Install Python • Install Python 3 using your Linux’s package manager – Ubuntu/Debian: sudo apt install python3 python3-pip – Centos/Redhat: sudo yum install python3 python3-pip Install in terminal • To install python3-m pip install openseespy python3-m pip install--user openseespy • To upgrade 1.1. Installation 5 OpenSeesPy Documentation, Release 3.3.0.0 python3-m pip install--upgrade openseespy python3-m pip install--user--upgrade openseespy • To import import openseespy.opensees as ops PyPi (Mac) Install Python • Install Python 3.8 Install in terminal • To install python3.8-m pip install openseespy python3.8-m pip install--user openseespy • To upgrade python3.8-m pip install--upgrade openseespy python3.8-m pip install--user--upgrade openseespy • To import import openseespy.opensees as ops 1.1.2 Other Instalation 1. DesignSafe (Web-based) 2. Windows Subsystem for Linux (Windows) DesignSafe (Web-based) OpenSeesPy has been offical in DesignSafe. 1. OpenSeesPy in DesignSafe 2. Paraview in DesignSafe OpenSeesPy in DesignSafe Follow steps below to run OpenSeesPy in DesignSafe. Tip: 6 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 • Go To DesignSafe website and click register Tip: • Register an account for free and log in 1.1. Installation 7 OpenSeesPy Documentation, Release 3.3.0.0 Tip: • Land on your own portal and go to workspace 8 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 Tip: • In your workspace, select Jupyter, launch it, and start my server 1.1. Installation 9 OpenSeesPy Documentation, Release 3.3.0.0 Tip: • Now you should be in the Jupyter Notebook • Go to mydata and alwasy save your data under this folder 10 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 Tip: • In the mydata folder, select New and then Python 3 Tip: • The OpenSeesPy version on DesignSafe is not the latest. • To update to the latest and import: 1.1. Installation 11 OpenSeesPy Documentation, Release 3.3.0.0 Tip: • Now you can write OpenSeesPy script in Jupyter Notebook, run the script, and show results • To show figure in the Notebook, you should include %matplotlib inline at the beginning 12 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 Paraview in DesignSafe DesignSafe provides paraview for viewing OpenSeesPy results: Tip: • Make sure the steps in OpenSeesPy in DesignSafe are completed. Tip: • Go to Workspace and select Visualizaion and Paraview. Tip: • In the Job Submission windows, you should select Working Directory, Maximum job runtime, Job name, and Node Count, and click Run. 1.1. Installation 13 OpenSeesPy Documentation, Release 3.3.0.0 Tip: • You can see the job status on the right 14 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 Tip: • Wait until see this windows and connect to Paraview 1.1. Installation 15 OpenSeesPy Documentation, Release 3.3.0.0 Tip: • Now open the pvd file in Paraview 16 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 Tip: • Initially, you see nothing • Check the Pipeline Browser • Click on the eye left to the file in Pipeline Browser Tip: • Change the Solid Color to other variables • Change Surface to Surface With Edges 1.1. Installation 17 OpenSeesPy Documentation, Release 3.3.0.0 Windows Subsystem for Linux (Windows) This is a real Linux subsystem for you to run OpenSeesPy Linux version on Windows. Install the Windows Subsystem for Linux Follow the instruction on here to install Windows Subsystem for Linux on Windows 10. There are a couple of Linux distributions available and Ubuntu is recommended. Once the Linux is installed, it will show as an application in the start menu. 18 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 Install Anaconda and start Jupyter Notebook • Run the subsystem from start menu and a terminal window will show. • Download Anaconda Linux version with command ~$ wget https://repo.anaconda.com/archive/Anaconda3-2021.05-Linux-x86_64.sh • Install Anconda Linux version with commands ~$ bash Anaconda3-2021.05-Linux-x86_64.sh >>> Please answer 'yes' or 'no': >>> yes >>> Anaconda3 will not be installed into this location: [/home/username/anaconda3] >>> (enter) • Start Jupyter Notebook ~$ /home/username/anaconda3/bin/jupyter-notebook • Copy the address in red box to a web browser 1.1. Installation 19 OpenSeesPy Documentation, Release 3.3.0.0 In Jupyter Notebook Start a new notebook and then 20 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 In the command line (optional) • Run Anaconda with following command, where username is your username of your computer. Please use the username shown in last step ~$ /home/username/anaconda3/bin/python3.8 • Install or Upgrade OpenSeesPy with commands ~$ /home/username/anaconda3/bin/python3.8 -m pip install openseespy ~$ /home/username/anaconda3/bin/python3.8 -m pip install --upgrade openseespy 1.1. Installation 21 OpenSeesPy Documentation, Release 3.3.0.0 • Run OpenSeesPy First run Anaconda with ~$ /home/username/anaconda3/bin/python3.8 Then import OpenSeesPy with import openseespy.opensees as ops ops.printModel() • run OpenSeesPy scripts /home/username/anaconda3/bin/python3.8 script.py 1.2 Compilation 1. Compilation for Windows 2. Compilation for MacOS 3. Compilation using QT 22 Chapter 1. Developer OpenSeesPy Documentation, Release 3.3.0.0 1.2.1 Compilation for Windows 1.2.2 Compilation for MacOS This is a suggestive guide for MacOS. • Download OpenSees Source code git clone https://github.com/OpenSees/OpenSees.git • Install MacPorts for your macOs. • Install gcc8 sudo port install gcc8 • Install Python 3.8 using MacPorts sudo port install python38 python38-devel • Install boost using Macports sudo port install boost • Create Makefile.def – Copy one of MAKES/Makefile.def.MacOS10.x to the root and rename to Makefile.def – Change the path and variables for your system • Compile – Run make python -j from root – The library file will be at SRC/interpreter/opensees.so 1.2.3 Compilation using QT Following is the OpenSees Compilation using QT by Stevan Gavrilovic github PhD Candidate University of British Columbia Original instructions can be found at here. A Qt build environment for OpenSees OpenSeesQt A Qt build environment for OpenSees – Open System For Earthquake Engineering Simulation Pacific Earthquake Engineering Research Center(http://opensees.berkeley.edu). Qt is an open source, cross-platform development environment that is free for many uses. Please see the license. 1.2. Compilation 23 OpenSeesPy Documentation, Release 3.3.0.0 Dependency The purpose of this project is to create a package that will allow aspiring developers to get started on writing code without having to worry about the compilation environment. A program as large as OpenSees relies on many third- party libraries, often referred to as dependencies. It can be a daunting task assembling, compiling, and linking these libraries. Many times, these libraries depend on other libraries, and so on. The current list of dependencies includes: • MUMPS (5.1.2) • Scalapack (2.0.2.13) • UMFPACK (5.7.7) contained in Suite-Sparse (5.3.0) • SUPERLU (5.2.1) • SUPERLUMT (3.0) • SUPERLUDIST (5.1.0) • Openblas (0.3.5) • Parmetis (4.0.3) • ARPACK (3.6.3) • Libevent (2.1.8) • GCC(8.2.0) • TCL (8.6.9)** Tcl only • Python(3.7.2)** OpenSeesPy only Please ensure that your project complies with each library’s licensing requirements. Another feature of this build platform is modularity. Developers can select from a list of build options that can be turned on and off as required. The basic configuration builds the structural analysis core. Other build options include parallel processing, reliability, and the particle finite element method (PFEM) modules. Python and Tcl interpreters are additional build options. These options are located in single configuration file called qmake.conf. By default, the environment is configured to build the core along with the parallel processing module. Other options can be turned on by deleting the ‘#’symbol that precedes the option; this includes the option into the build environment.
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]