Users:General FEM Analysis/Analyses Reference/Cutting Pattern

From Carat++ Public Wiki
Jump to: navigation, search


Contents

General Description

Cutting pattern generation determines a plane and (optimally) stress-free geometry which can be reassembled to build a membrane with a certain prestress and shape (as it was determined in Formfinding).


Structure of Equation System

A nonlinear problem is formulated by the equation r = f_int(u) where r specifies the residual vector and f_int defines the internal forces respectively. In general, the internal forces depend on the actual displacement field u. Thus, the equation is nonlinear with respect to the a priori unknown equilibrium displacements.

At the equilibrium point the residual vector is equal to zero. The above specified nonlinear problem is linearized for the actual displacement state and solved e.g. by a Newton-Raphson scheme where the residual vector is used to compute incremental displacements by K_t u_inc = r.


Input Parameters

Parameter Description

Compulsory Parameters
Parameter Values, Default(*) Description
PC-ANALYSIS int : CUTTING_PATTERN Keyword of analysis with analysis ID
SOLVER PC-SOLVER int Linking to a linear solver (direct or iterative)
OUTPUT PC-OUT int Linking to output objects (specifies the type of output format, e.g. GiD)
COMPCASE LD-COM int Linking to computation case object which specify the boundary conditions (loading and supports). Only a single computation case is allowed.
DOMAIN EL-DOMAIN int Linking to the domain the analysis should work on
MAX_ITER_EQUILIBRIUM int Maximum number of equilibrium iterations that are allowed.
EQUILIBRIUM_ACCURACY float Equilibrium accuracy that has to be reached for convergence. The convergence is checked with the L2 norm of the incremental displacements.
PATTERN PART int The parts which should be included in the analysis, separation with comma.
BC_CONFIGURATION TYPE int The type of boundary condition configuration, 4 means largest distance between the supports. For each part, one type must be given.
RELAXATION_METHOD STATIC or NONE or GALERKIN or COMBINED Definition of relaxation method.
FLATTENING_AREA 0 or 1 0... prestress area. 1... mean surface normal.
PATTERNING_METHOD GALERKIN or LS_NR or LS_CG or NONE Definition of the patterning method. GALERKIN... principle of virtual work. LS_NR and LS_CG... optimization problem solved with Newton-Raphson or Conjugate Gradient approach.
Optional Parameters
TRACED_NODE int Node ID of traced node. Used for screen and log file output.
TRACED_NODAL_DOF dof type DOF type of node TRACED_NODE that has to be traced (DISP_X, DISP_Y, DISP_Z, ...).
STEP_LENGTH_CONTROL FIXED or CRISFIELD_RAMM Type of step length control algorithm (for ARCLENGTH method). FIXED specifies a constant step size where the desired step size is defined by the parameter STEP_LENGTH_CONTROL_REALS. CRISFIELD_RAMM specifies an adaptive method according to Crisfield and Ramm, c.f. [1]. In this case the parameter STEP_LENGTH_CONTROL_INTS = int specifies the number of restarts that are allowed. The other necessary parameters are specified by STEP_LENGTH_CONTROL_REALS. See the example below.
STEP_LENGTH_CONTROL_REALS float, float, ... respective number of floats for step length control algorithm
STEP_LENGTH_CONTROL_INTS int, int, ... respective number of integers for step length control algorithm
SIMULTANEOUS_EIGENVALUE_ANALYSIS 1 or 0 flag to specify if a simultaneous eigenvalue analysis should be performed, 0 - no eigenvalue analysis, 1 - perform eigenvalue analysis. This flag requires definition of parameter EIGEN_SOLVER.
EIGEN_SOLVER PC-SOLVER int Linking to an eigenvalue solver
IMPERFECTION_MODES int, int, int, ... specifies which eigen modes should be summarized to the imperfection mode. Computation of imperfect design requires definition of parameter EIGEN_SOLVER.
IMPERFECTION_SIZE float specifies the size of the imperfection mode.

Example of a Complete Input Block

PC-ANALYSIS 1: STA_GEO_NONLIN
  PATHCONTROL = ARCLENGTH ! or DISPLACEMENT or ARCLENGTH
  SOLVER = PC-SOLVER 1
  OUTPUT = PC-OUT 1
  COMPCASE = LD-COM 1
  DOMAIN = EL-DOMAIN 1
  NUM_STEP = 30
  MAX_ITER_EQUILIBRIUM = 100
  EQUILIBRIUM_ACCURACY = 1e-10
  CURVE=LD-CURVE 1
  TRACED_NODE=2
  TRACED_NODAL_DOF=DISP_Y 
  ! Example: fixed step length of 0.05
    STEP_LENGTH_CONTROL = FIXED
    STEP_LENGTH_CONTROL_REALS = 0.05         ! constant step length of 0.05
  ! Example adaptive step length according to Crisfield and Ramm
    STEP_LENGTH_CONTROL = CRISFIELD_RAMM
    STEP_LENGTH_CONTROL_REALS = 0.1, 1.0     ! initial step length = 0.1, exponent p = 1.0
    STEP_LENGTH_CONTROL_INTS = 5             ! 5 equilibrium iterations per step are desired
  ! Example: no simultaneous eigenvalue analysis
    SIMULTANEOUS_EIGENVALUE_ANALYSIS = 0 
  ! Example: simultaneous eigenvalue analysis
    SIMULTANEOUS_EIGENVALUE_ANALYSIS = 1
    EIGEN_SOLVER = PC-SOLVER 2
  ! Example: use imperfect design with modes 1, 2, 4, and 6
    IMPERFECTION_MODES = 1, 2, 4, 6
    IMPERFECTION_SIZE = 0.015                ! maximum size of imperfection mode equals 0.015
    EIGEN_SOLVER = PC-SOLVER 2

Example

The following simple example shows a geometrically nonlinear analysis of a 2bar truss system using the arclength method. It uses a fixed step size for computation. The respective input file can be found in the SVN repository under

carat20/examples/benchmark_examples/analyses/stanln_2bartruss_arclength_l/2bartruss_arclength_fixed.txt

The problem computes a snap through problem. The boundary conditions are visualized by the figure below.

Simple 2bar truss structure discretized with truss elements

The load f is increased by the arclength method such that the displacements depicted in the figure below occur.

Truss snap through

The figure below shows the load displacement path of the y-displacement of the center node. The well known snap through behavior is clearly visible. For a load factor of approx. 0.14 the structure shows instability. In the following the arclength control reduces the load factor until -0.14 to compute equilibrium states. Obviously these states can be only be computed by arclength or displacement control. After a complete snap through the load can be increased further. Now the complete structure works in tension which does not yield to further instability points.

Load displacement path of 2bar truss

References

  1. Cite error: Invalid <ref> tag; no text was provided for refs named Rei94




Whos here now:   Members 0   Guests 0   Bots & Crawlers 1
 
Personal tools
Content for Developers