I would like to create Materials and their properties in Abaqus using python.
Therefore I use the following code:
mdb.models['C-54vol%_coating-250mu'].Material(name='Carbon_Fiber') mdb.models['C-54vol%_coating-250mu'].materials['Carbon_Fiber'].Density(table=(( 1.79, ), )) mdb.models['C-54vol%_coating-250mu'].materials['Carbon_Fiber'].Conductivity( table=((6.0, ), )) mdb.models['C-54vol%_coating-250mu'].materials['Carbon_Fiber'].SpecificHeat( table=((0.966, ), ))
Here "C-54vol%_coating-250mu" is the name of the model. How can I iterate over all models to create the materials for all models?