Hello,
I want to use C3D8R element in Step 2 (as Step 1 is Initial) for dynamic analysis with a certain set of material properties (Concrete and steel). The result of step 2 will propagate to Step 3 in which I will be required to use DC3D8 element with another set of material properties...
I want to read the data extracted from the text file into Abaqus File for the simulation. Here is my code:
import os
os.chdir(r"dir")
for file in os.listdir("dir"):
if file.endswith('.txt'):
print os.path.join(r"dir", file)
with...