In [ ]:
 
In [1]:
# Environment Check -- Deactivate on a working host
import sys
print(sys.executable)
print(sys.version)
print(sys.version_info)
/opt/jupyterhub/bin/python3
3.8.2 (default, Apr 27 2020, 15:53:34) 
[GCC 9.3.0]
sys.version_info(major=3, minor=8, micro=2, releaselevel='final', serial=0)

Nature Inspired Portal Design

This notebook examines the design of a portal (like a doorway) using Biological Inspired Design principles from ENGR 1320 (we will examine geological inspiration too), and Computational Thinking from ENGR 1330.

Design Process

A design flowchart for a civil engineering project is shown below

The flowchart identifies four major phases represented by rectangular blocks, with information and decision flows. The diagram depicts decision flow as a feed-forward process, whereas the information is a feed-back process, the result of a decision in an attempt to move the design from planning to operation creates information requirements that feed backward, and may influence the decision.

Planning

The planning phase identifies a specific plan from a general idea.

Design

The design phase identifies within the limits of the specific plan a complete detailed design; dimensions, materials selection, sub-system sequencing, and such.

Construction

The construction phase is carried out within the limits defined by the detailed design to create a complete physical project; a building, vehicle, report, computer program, or such -- in Civil Engineering the result is usually something in the built environment, although process control software (SCADA for instance) also fits within this process flow, as does a drainage master plan; the point here is construction actually builds the project into some tangible object.

Operation

The operation phase is the actual use of the object along with meaningful recordkeeping to assess the success or failure of the project. The operation phase is limited by what the three prior phases have provided.

This process diagram is a useful roadmap for an engineering design, now onward with the example

Problem Layout

The portal frame below is to be designed in steel (a material selection that can be examined further on) on a rigid-plastic basis to have a factor of safety of 2.0 for the loading condition shown.

The two columns are of identical section and the beam may have a different section.

In classical design literature the design process at this point is stated something along the lines of

"Because member lengths are known, and the material is specified, the design process consists of selecting the appropriate member cross section. As a rigid-plastic design is required, an appropriate choice for a measure of the size of a member is its fully plastic moment. The designer has to make decisions upon the fully plastic moment of the beam member, to which a variable $M_1$ will be assigned, and the column members to which variable $M_2$ is assigned."

We will proceede with this analysis process initially to frame a design approach, then appeal to nature-inspired for some additional guidance if we relax the material choice, and expand our concept of a material cross section to a composite (e.g. a truss is a macroscopic composite of air and steel) section.

Limits on the values the two moments can take are governed by the factor of safety requirement of 2.0 against collapse under the given loading. The designer wants to ensure that in a possible collapse mode of the frame, the work done on the frame by the factored applied loads does not exceede the energy capacity of the plastic deformations (rotations at plastic hinges -- the corner junctions, possibly welds, and the support connections -- also possibly welds) of the frame

The figure below shows sic possible collapse mechanisms of the frame and the energy-balance requirement associated with each kinematic mechanism. There are three general failure mechanisms: a beam failure (a and b), a sway failure (c and d), and combined failure (e and f). There are two mechanisms for each general failure type because until the sections are specified we do not know if the beam is weaker than the column ($M_1 < M_2$) or the opposite.

Problem Layout

The portal frame below is to be designed in steel (a material selection that can be examined further on) on a rigid-plastic basis to have a factor of safety of 2.0 for the loading condition shown.

The two columns are of identical section and the beam may have a different section.

'more background'

In [ ]: