-
-
January 26, 2024 at 11:26 amhesamkeshavarzzSubscriber
Hi everyone,
In my simulation, I need to input contact stiffness and also TCC as a function of location. by which command I can do it?
ThanksÂ
-
January 29, 2024 at 1:48 pmChandra SekaranAnsys Employee
You can define contact stiffness/TCC as funciton of location by adding APDL commands. You will need to use 'table' arrays to do so. You can read up on 'table' arrays in section 3.10 (3.10.3) of the APDL guide at https://ansyshelp.ansys.com/account/secured?returnurl=/Views/Secured/corp/v241/en/ans_apdl/Hlp_P_APDL3_11.html . Here is a sample APDL command snippet that can be inserted under the specific contact region in Mechanical to set this type of table. Please refer to the MAPDL elements reference guide under contact174 element for the real constant numbers.
! tcc is a function of X and Z coordinates. TCC is defined for 3 values of X and 2 values of Z
! The X and Z values must be in ascending order. You must fill all 6 cells (3x2) with TCC values
*dim,tcc_vs_xz,table,3,2,1,x,z Â
! 0th column is X values. 0th row is Z values. Fill these first
tcc_vs_xz(1,0)= 0 Â Â Â Â Â Â Â Â ! x coordinates
tcc_vs_xz(2,0)=2.5
tcc_vs_xz(3,0)=7.0 Â Â Â Â Â Â Âtcc_vs_xz(0,1)=5.5 Â Â Â Â Â Â Â ! z coordinates
tcc_vs_xz(0,2)=9.75 Â! fill the cells with TCC values
tcc_vs_xz(1,1)= 2000
tcc_vs_xz(1,2)= 5000
tcc_vs_xz(2,1)= 20000
tcc_vs_xz(2,2)= 9000
tcc_vs_xz(3,1)= 7500
tcc_vs_xz(3,2)= 6000rmod,cid,14,%tcc_vs_xz% Â Â Â ! modify 14th real constant of contact174 element (which is TCC) to use the table
Â
-
February 1, 2024 at 1:26 pmhesamkeshavarzzSubscriber
Thank you so much indeed
-
-
- The topic ‘Contact stiffness’ is closed to new replies.
- Problem with access to session files
- Ayuda con Error: “Unable to access the source: EngineeringData”
- At least one body has been found to have only 1 element in at least 2 directions
- Error when opening saved Workbench project
- Geometric stiffness matrix for solid elements
- How to select the interface delamination surface of a laminate?
- How to apply Compression-only Support?
- Timestep range set for animation export
- Image to file in Mechanical is bugged and does not show text
- SMART crack under fatigue conditions, different crack sizes can’t growth
-
1191
-
513
-
488
-
225
-
209
© 2024 Copyright ANSYS, Inc. All rights reserved.