Hi, I run with the codes below to create LSDYNA RigidWall with one local coordinate system, why it turns up question mark on Rigid Wall when I have confirm the setting is right after executing the code
Below is the coding:
analysis = Model.Analyses[0] cs = DataModel.GetObjectsByName("CS")[0] csId = cs.ObjectId csIdstr = str(csId) rigidWall = DataModel.GetObjectsByName("Rigid Wall") analysispre = DataModel.Tree.Activate(analysis) rigidWall = analysis.CreateLoadObject("Rigid Wall","LSDYNA") rigidWallID = rigidWall.ObjectId myrigidWall = DataModel.GetUserObjectById(rigidWallID) temp_prop = myrigidWall.Properties['Coordinate System'] temp_prop.Value = csIdstr ExtAPI.DataModel.Tree.Refresh()