Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Error in python script Value Error

Status
Not open for further replies.

Rabia786

Aerospace
Dec 18, 2023
1
0
0
GB
Hello,
I am doing this ABAQUS script as below however it continues to give me a Value Error, part where Value Error is I have shown below:
# Apply concentrated force at the specified point
top_point = part.vertices.findAt(((length / 2, height, width / 2),))
top_point_set = part.Set(vertices=top_point, name='LoadPoint')
model.ConcentratedForce(name='AppliedForce', createStepName=step_name,
region=top_point_set, cf3=-force_magnitude)

Can anyone please help me how to fix this?

#*
#* The input file was not generated.
#* ValueError: The following loads reference regions which
#* cannot be found in the current model:
#* AppliedForce
#*
#*
#* The input file was not generated.
 
Replies continue below

Recommended for you

Status
Not open for further replies.
Back
Top