Two Step Modeling

This approach of submodeling involves two steps, analysis of the global model and the local model.

  1. Analysis of the global model
    • In this stage, the global model is analyzed, and the results are stored in along with model information (nodal coordinates).
  2. Analysis of the local model
    • The results from the global model are imported from .h3d file using ASSIGN,H3DRES.
    • The specific subcase in the global model, from which results are to be imported, is specified using IMPORT,SUB.
    • A grid set is defined for the nodes in the interface/transfer zone (local side).
    • SPCD is defined on these grid sets with a value = M to signify the mapping.
      Note: The mapping displacement enforcement can also be directly through SPC instead of SPC/SPCD combination.
    • The mapped enforced displacements on this grid set is calculated and applied internally by OptiStruct through point cloud interpolation.

Input File of the Global Model

SUBCASE 1001 
	ANALYSIS STATICS	
	LABEL Global
	SPC = 10
	LOAD =20
	DISP (ROTA, H3D) = SET_ID
BEGIN BULK
..
Bulk data of the Global Model
..
ENDDATA

Input file of the Local Model

ASSIGN, H3DRES, 100, global_model.h3d
SUBCASE 2001  
	LABEL Local
	ANALYSIS STATICS
	SPC = 200
	LOAD = 400
 
IMPORT (SUB = 1001) = 100
BEGIN BULK
.
.
SPC, 200, 1000, 123456, 0.0
+, GSET

SPCD, 400, 1000, 123456, M
+, GSET
SET, 1000, GRID, LIST
+, 61040, 61041, 61042, 61043, 61044, 61045, 61046, 61047,
+, 61048, 61049, 61050, 61051, 61052
ENDDATA

Comments

  1. Currently, only displacement results can be mapped in the two step submodeling process and only .h3d file format is supported.
  2. By default, only translational displacements are mapped and if rotational displacements are desired, then they must be additionally requested.
  3. Supported analysis types for two-step submodeling process include linear and nonlinear (SMDISP/LGDISP) static analyses and direct and modal transient analyses. For direct and modal transient analysis, the typical application is to use modal transient for the global model and direct transient for the local model. However, all combinations of global and local models are supported. For transient analysis in the local model, the SPCD used for displacement mapping definition should be referenced via a TLOAD1 entry and referenced along with any other applied loading.