Agent SkillsCai-aa/CAE-Agent-Hub › curing-contact

curing-contact

GitHub

用于复合材料固化仿真中模具与复合材料的接触对定义、摩擦系数设置及接触行为配置,支持随温度变化的摩擦模型。

Skill/abaqus/composite-curing-simulation/setup/curing-contact/SKILL.md Cai-aa/CAE-Agent-Hub

Trigger Scenarios

用户要求设置复合材料与模具的接触 提及“接触”、“摩擦”或“contact pair” 需要修改摩擦系数 遇到接触相关的收敛问题

Install

npx skills add Cai-aa/CAE-Agent-Hub --skill curing-contact -g -y
More Options

Non-standard path

npx skills add https://github.com/Cai-aa/CAE-Agent-Hub/tree/main/Skill/abaqus/composite-curing-simulation/setup/curing-contact -g -y

Use without installing

npx skills use Cai-aa/CAE-Agent-Hub@curing-contact

指定 Agent (Claude Code)

npx skills add Cai-aa/CAE-Agent-Hub --skill curing-contact -a claude-code -g -y

安装 repo 全部 skill

npx skills add Cai-aa/CAE-Agent-Hub --all -g -y

预览 repo 内 skill

npx skills add Cai-aa/CAE-Agent-Hub --list

SKILL.md

Frontmatter
{
    "name": "curing-contact",
    "description": "Define contact pairs and friction for composite curing simulation: mold-composite contact (S1↔S4+S6), temperature-dependent friction (0.45→0.2→0.169), HARD contact property. Invoke when setting up contact, friction, or mold interaction in curing models."
}

Curing Contact Setup

Define the frictional contact between the composite (P8-1) and the mold (TOOL-1). This is the physical mechanism that constrains the composite during curing and creates asymmetric springback upon demolding.

When to Invoke

  • User asks to set up contact between composite and mold
  • User mentions "接触", "摩擦", "模具接触", "contact pair"
  • User needs to change friction coefficients
  • User encounters contact-related convergence issues

Contact Pair Definition

*Surface, type=ELEMENT, name=com-surface
P8-1.S1                      # Composite outer surface (contact with mold)

*Surface, type=ELEMENT, name=tool-surface
TOOL-1.S4, S6                # Mold contact surfaces

*Contact Pair, interaction=INTER-1, type=SURFACE TO SURFACE
com-surface, tool-surface    # Master: tool, Slave: composite

Surface assignments:

Surface Part Element Face Role
com-surface P8-1 (composite) S1 (outer) Slave surface
tool-surface TOOL-1 (mold) S4 + S6 Master surface

Why S1 on composite?

  • S1 is the element face on the outer surface of the composite
  • This is the face that physically touches the mold
  • S2 is the inner surface (where pressure is applied)

Why S4+S6 on TOOL?

  • The mold is an L-shaped bracket with two contact faces
  • S4 and S6 correspond to the two inner faces of the mold L-shape
  • Both faces must be included to capture full contact

Contact Interaction Property

*Surface Interaction, name=INTER-1
*Friction
0.45                         # Step vis: viscous state friction
*Surface Behavior, pressure-overclosure=HARD

Temperature-Dependent Friction

Friction changes with material state (temperature-dependent). Each step has a different friction coefficient:

Step Temperature Range Material State Friction Coefficient
vis 25°C → 150°C Viscous (rubbery) 0.45
rub 150°C → 180°C Rubbery 0.20
glassy 180°C → 25°C Glassy (cured) 0.169
sp 25°C N/A (contact removed)

Physics behind friction change:

  • Viscous (0.45): High friction because resin is viscous and sticky; composite strongly adheres to mold
  • Rubbery (0.20): Lower friction as resin becomes more rubbery; some slip occurs
  • Glassy (0.169): Lowest friction as material vitrifies; cured composite can slide more freely on mold

How to implement per-step friction:

*Step, name=vis
*Change Friction, interaction=INTER-1
0.45, 

*Step, name=rub
*Change Friction, interaction=INTER-1
0.20, 

*Step, name=glassy
*Change Friction, interaction=INTER-1
0.169, 

HARD Contact Behavior

*Surface Behavior, pressure-overclosure=HARD
  • HARD: Standard hard contact — no penetration allowed, no tension
  • Pressure transfers only when surfaces are in contact
  • Gap opens when pressure goes to zero (no adhesion)

Contact in Springback Step (sp)

In the sp step, contact is completely removed via Model Change:

*Step, name=sp
*Model Change, remove
TOOL-1.EL                    # Remove mold elements
*Model Change, remove
TOOL-1, com-surface          # Remove composite contact surface assignment
*Model Change, remove
TOOL-1, tool-surface         # Remove tool contact surface assignment

After Model Change:

  • No contact pair exists
  • No friction
  • Composite is free to deform (constrained only by Set-2)
  • Residual stresses drive springback deformation

Why Contact Creates Asymmetric Springback

  1. Friction varies spatially: Different regions of the composite experience different normal pressures, leading to varying frictional resistance
  2. L-bracket geometry: The corner region has higher contact pressure than the arm tips, creating non-uniform constraint
  3. Thermal expansion: During heating, the composite expands and slides against the mold; friction resists this sliding asymmetrically
  4. Demolding release: When the mold is removed, the stored frictional energy releases unevenly, causing asymmetric deformation
  5. Result: Maximum displacement at free edges (arm tips), minimum at the corner — this is the correct physical pattern

P8_only vs P8_mold Contact Comparison

Aspect P8_mold (Correct) P8_only (Incorrect)
Contact pair com-surface ↔ tool-surface None
Friction 0.45 → 0.2 → 0.169 None
Contact behavior HARD None
Demolding Model Change removes contact No demolding
Composite constraint Friction (allows slip) ENCASTRE (no slip)
Springback pattern Asymmetric (correct) Center-symmetric (wrong)

Common Errors

Error Cause Fix
Penetration in ODB Contact not properly defined Verify surface assignments (S1 on composite, S4+S6 on tool)
No springback Contact not removed in sp Add *Model Change, remove for TOOL elements and surfaces
Convergence issues Friction too high Check friction values: 0.45/0.2/0.169 for vis/rub/glassy
Symmetric deformation No contact (P8_only model) Use P8_mold_V2.inp with proper contact pair
CPRESS = 0 everywhere Wrong surface pair Verify master/slave assignment; tool is master

Version History

  • 2178ed3 Current 2026-07-24 17:39

Same Skill Collection

Skill/abaqus/analysis/abaqus-contact-analysis/SKILL.md
Skill/abaqus/analysis/abaqus-coupled-analysis/SKILL.md
Skill/abaqus/analysis/abaqus-dynamic-analysis/SKILL.md
Skill/abaqus/analysis/abaqus-fatigue-analysis/SKILL.md
Skill/abaqus/analysis/abaqus-modal-analysis/SKILL.md
Skill/abaqus/analysis/abaqus-static-analysis/SKILL.md
Skill/abaqus/analysis/abaqus-thermal-analysis/SKILL.md
Skill/abaqus/composite-curing-simulation/core/composite-curing/SKILL.md
Skill/abaqus/composite-curing-simulation/modeling/composite-layup/SKILL.md
Skill/abaqus/composite-curing-simulation/modeling/composite-mesh/SKILL.md
Skill/abaqus/composite-curing-simulation/modeling/mold-geometry/SKILL.md
Skill/abaqus/composite-curing-simulation/setup/curing-bc/SKILL.md
Skill/abaqus/composite-curing-simulation/SKILL.md
Skill/abaqus/core/abaqus/SKILL.md
Skill/abaqus/execution/abaqus-export/SKILL.md
Skill/abaqus/execution/abaqus-job/SKILL.md
Skill/abaqus/modeling/abaqus-geometry/SKILL.md
Skill/abaqus/modeling/abaqus-interaction/SKILL.md
Skill/abaqus/modeling/abaqus-material/SKILL.md
Skill/abaqus/modeling/abaqus-mesh/SKILL.md
Skill/abaqus/optimization/abaqus-optimization/SKILL.md
Skill/abaqus/optimization/abaqus-shape-optimization/SKILL.md
Skill/abaqus/optimization/abaqus-topology-optimization/SKILL.md
Skill/abaqus/postprocessing/abaqus-odb/SKILL.md
Skill/abaqus/reference/fea-structural/SKILL.md
Skill/abaqus/reference/fenics-fem/SKILL.md
Skill/abaqus/setup/abaqus-amplitude/SKILL.md
Skill/abaqus/setup/abaqus-bc/SKILL.md
Skill/abaqus/setup/abaqus-docs/SKILL.md
Skill/abaqus/setup/abaqus-field/SKILL.md
Skill/abaqus/setup/abaqus-load/SKILL.md
Skill/abaqus/setup/abaqus-output/SKILL.md
Skill/abaqus/setup/abaqus-step/SKILL.md
Skill/Ansys/aedt-evidence-electromagnetics/SKILL.md
Skill/Ansys/ansys-mechanical-evidence-structural/SKILL.md
Skill/calculix/calculix-fem/SKILL.md
Skill/calculix/calculix-sizing-optimization/SKILL.md
Skill/comsol/comsol-motor-nvh-evidence/SKILL.md
Skill/lammps/lammps-evidence-md/SKILL.md
Skill/ovito/ovito-evidence-postprocessing/SKILL.md
Skill/Ansys/ansys-structural-workbench/SKILL.md
Skill/fep-agent-hub/SKILL.md

Metadata

Files
0
Version
fc7b93e
Hash
bf83c5a1
Indexed
2026-07-24 17:39

inicio - Wiki
Copyright © 2011-2026 iteam. Current version is 2.155.2. UTC+08:00, 2026-08-17 03:51
浙ICP备14020137号-1 $mapa de visitantes$