modify wiki
Tests / Hermetic test suite (push) Has been cancelled
Tests / Skill frontmatter validation (push) Has been cancelled

This commit is contained in:
김경종
2026-05-29 17:05:53 +09:00
parent b7f84e1c0f
commit b7b79e38b1
64 changed files with 3131 additions and 48 deletions
+55
View File
@@ -0,0 +1,55 @@
---
type: concept
title: "Abaqus Input File Syntax"
complexity: intermediate
domain: computational-mechanics
created: 2026-05-29
updated: 2026-05-29
address: c-000072
aliases:
- ABAQUS input syntax
- Abaqus keyword syntax
- Abaqus input file
tags:
- concept
- finite-element-method
- abaqus
- input-file
status: current
related:
- "[[Abaqus-Analysis-User-s-Guide-Volume-I|Abaqus Analysis User's Guide Volume I]]"
- "[[ABAQUS]]"
- "[[Abaqus Spatial Model Definition]]"
- "[[Abaqus Job Execution Workflow]]"
- "[[Finite Element Program Implementation]]"
sources:
- "[[Abaqus-Analysis-User-s-Guide-Volume-I|Abaqus Analysis User's Guide Volume I]]"
---
# Abaqus Input File Syntax
## Definition
Abaqus input file syntax is the keyword-based text format used to define models, analysis steps, procedure controls, loads, boundary conditions, interactions, and output requests for [[ABAQUS]].
## How It Works
An Abaqus input file is an ASCII file arranged as option blocks. Keyword lines begin with `*`, can include comma-separated parameters, and are followed by data lines when the option requires numeric or label data. Comment lines begin with `**`.
The guide separates input into model data and history data. Model data define the reusable analysis model: nodes, elements, materials, sections, sets, initial conditions, and assembly structure. History data define analysis steps: procedure type, loads, boundary conditions, interactions, controls, and output requests. `*STEP` and `*END STEP` delimit each step.
Sets and labels are the main referencing mechanism. Nodes and elements can be grouped into sets so later options can apply constraints, sections, loads, surfaces, or output requests without restating individual IDs. Labels are generally case-insensitive unless quoted, and include files can split a large model across multiple files.
## Why It Matters
The input syntax is the user-visible API of a finite element code. It turns the abstract [[Finite Element Program Implementation]] workflow into a declarative model description that the solver can parse into nodes, elements, degrees of freedom, procedures, and output requests.
## Connections
- [[Abaqus Spatial Model Definition]] supplies the node, element, set, and assembly content referenced by the syntax.
- [[Abaqus Job Execution Workflow]] consumes the input file through the `abaqus` command and related checks.
- [[Abaqus Output Database and Results Files]] is controlled by output requests placed in history data.
## Sources
- [[Abaqus-Analysis-User-s-Guide-Volume-I|Abaqus Analysis User's Guide Volume I]]