Hi! I would like make a script that I can input specific load on a specific element or specific displacement to a specific node. I know node (or element) label. So I tried it with below script, but it didn't work. I will appreciate it if one of you let me know how I can fix the script.
1) Load : 0.123 -> Element label: 144811
mdb.models['Model-2'].Pressure(amplitude=UNSET, createStepName='Step-1’, distributionType=UNIFORM, field='', magnitude=0.123, name='Load-1', region= mdb.models['Model-2’].elements[144811])
2) displacement : u1=1.0, u2=2.0, u3=3.0, ur1=4.0, ur2=5.0, ur3=6.0 ---> Node label: 140555
mdb.models['Model-2'].DisplacementBC(amplitude=UNSET, createStepName='Step-1', distributionType=UNIFORM, fieldName='', fixed=OFF, localCsys=None, name=‘BC-2', region=mdb.models['Model-2’].nodes[140555], u1=1.0, u2=2.0, u3=3.0, ur1=4.0, ur2=5.0, ur3=6.0)