zoukankan      html  css  js  c++  java
  • ANSYS APDL 基础

    Notes on "ANSYS Mechanical APDL Basic Analysis Guide"

    Chater 1 : Getting Started

    1.1. Building the Model

    Fisrt specify a jobname and analysis title, then use PREP7 preprocessor to define the element types, element real constants, material preperties, and the model geometry.

    1.1.1 Specifying a Jobname and Analysis Title

    Defining the Jobname : /FILNAME command. when the Key argument is set to 1, ANSYS would start new files.

    Defining an Analysis Title : /TITLE command, /STITLE command add subtitles which appear in the output but not in graphic displays

    Defining Units : /UNITS command, serves as a record for subsequent reviews of the analysis

    1.1.2 Defining Element Types

    Must be in PREP7 (use /PREP7) to define element types, use ET command to define the element type by name and give the element a type reference number.

    When defining the actual elements, just point to the appropriate type reference number via the TYPE command

    Example : 

    ET, 1, BEAM188

    ET, 2, SHELL181

    Specify the key options via the KEYOPT command

    1.1.3 Creating Cross Sections

    when using beams or shells , issue the SECTYPE, SECDATA, etc to define cross sections

    when using line and area elements that require geometry data such as cross-sectional area and thickness to be specified as sections, verify via /ESHAPE and EPLOT

    1.1.4 Defining Element Real Constans

    Specify real constans via the R family of commands (R, RMODIF)

    the table of reference number versus real constants set is called the real constant table

    To verify the constant inout, issue the RLIST and ELIST commands

    RLIST lists all real constants sets

    ELIST,,,,,1 shows the real constant labels and their values for each element.

    1.1.5 Defining Material Properties

    each set of material properties has a material reference number, the table of material reference numbers versus material property sets is called material table

    use the MAT command to define the elements

    1.1.6 Creating the Model Geometry

    1.2 Applying Loads and Obtaining the Solution

  • 相关阅读:
    基于jQuery和Bootstrap的手风琴垂直菜单
    JavaScript右下角信息提示插件Notyf
    强大的jQuery幻灯片播放插件 支持全拼、拖拽和下载等功能
    较常用的Math方法及ES6中的扩展
    ES6 完全使用手册
    如何用纯 CSS 创作一个小球上台阶的动画
    BZOJ_1503_[NOI2004]郁闷的出纳员_权值线段树
    BZOJ_2815_[ZJOI2012]灾难 倍增lca + 构造
    BZOJ_3316_JC loves Mkk_ 二分答案 + 单调队列
    BZOJ_1260_[CQOI2007]涂色paint _区间DP
  • 原文地址:https://www.cnblogs.com/zhanchao/p/10106927.html
Copyright © 2011-2022 走看看