Template File

The data is given in CSV form precisely as would be given in data files. For each table started by the cell magic %%Table, the table name follows immediately.


In [ ]:
from Frame2D import Frame2D

theframe = Frame2D('Template')

Input Data

Nodes

Table nodes (file nodes.csv) provides the $x$-$y$ coordinates of each node. Other columns, such as the $z$- coordinate are optional, and ignored if given.


In [ ]:
%%Table nodes
NODEID,X,Y,Z

Supports

Table supports (file supports.csv) specifies the support fixity, by indicating the constrained direction for each node. There can be 1, 2 or 3 constraints, selected from the set 'FX', 'FY' or 'MZ', in any order for each constrained node. Directions not mentioned are 'free' or unconstrained.


In [ ]:
%%Table supports
NODEID,C0,C1,C2

Members

Table members (file members.csv) specifies the member incidences. For each member, specify the id of the nodes at the 'j-' and 'k-' ends. These ends are used to interpret the signs of various values.


In [ ]:
%%Table members
MEMBERID,NODEJ,NODEK

Releases

Table releases (file releases.csv) is optional and specifies internal force releases in some members. Currently only moment releases at the 'j-' end ('MZJ') and 'k-' end ('MZK') are supported. These specify that the internal bending moment at those locations are zero. You can only specify one release per line, but you can have more than one line for a member.


In [ ]:
%%Table releases
MEMBERID,RELEASE

Properties

Table properties (file properties.csv) specifies the member properties for each member. If the 'SST' library is available, you may specify the size of the member by using the designation of a shape in the CISC Structural Section Tables. If either IX or A is missing, it is retreived using the sst library. If the values on any line are missing, they are copied from the line above.


In [ ]:
%%Table properties
MEMBERID,SIZE,IX,A

Node Loads

Table node_loads (file node_loads.csv) specifies the forces applied directly to the nodes. DIRN (direction) may be one of 'FX,FY,MZ'. 'LOAD' is an identifier of the kind of load being applied and F is the value of the load, normally given as a service or specified load. A later input table will specify load combinations and factors.


In [ ]:
%%Table node_loads
LOAD,NODEID,DIRN,F

Support Displacements

Table support_displacements (file support_displacements.csv) is optional and specifies imposed displacements of the supports. DIRN (direction) is one of 'DX, DY, RZ'. LOAD is as for Node Loads, above.

Of course, in this example the frame is statically determinate and so the support displacement will have no effect on the reactions or member end forces.


In [ ]:
%%Table support_displacements
LOAD,NODEID,DIRN,DELTA

Member Loads

Table member_loads (file member_loads.csv) specifies loads acting on members. Current types are PL (concentrated transverse, ie point load), CM (concentrated moment), UDL (uniformly distributed load over entire span), LVL (linearly varying load over a portion of the span) and PLA (point load applied parallel to member coincident with centroidal axis). Values W1 and W2 are loads or load intensities and A, B, and C are dimensions appropriate to the kind of load.


In [ ]:
%%Table member_loads
LOAD,MEMBERID,TYPE,W1,W2,A,B,C

Load Combinations

Table load_combinations (file load_combinations.csv) is optional and specifies factored combinations of loads. By default, there is always a load combination called all that includes all loads with a factor of 1.0. A frame solution (see below) indicates which CASE to use.


In [ ]:
%%Table load_combinations
CASE,LOAD,FACTOR

Solution

The following outputs all tables, prints a description of the input data, produces a solution for load case 'one' (all load and case names are case-insensitive) and finally prints the results.


In [ ]:
theframe.input_all()
theframe.print_input()
RS = theframe.solve('one')
theframe.print_results(rs=RS)

In [ ]: