Material definition by python script

Hello all,

I am attempting to model a hyperelastic material by embedding an empiricial uniaxial tension test data. it seems as I have found the right commad on Abaqus documentation so that to create the material, but when I run the script in Abaqus CAE, a syntax error occurs in the last line. I assume the order of nominal stresses and strains in the table is incorrect . I would appreciate if you can help me to reveal the mistake in the last line of the shown script. Many thanks in advance!

 

Script:

# Material properties definition for a part 1

mdb.models['Model-1'].Material(name='rubber')

mdb.models['Model-1'].materials['rubber'].Density(table=((1.1e-09, ),))

mdb.models['Model-1'].materials[' rubber'].hyperelastic.UniaxialTestData(table=((0.0, 0.0, 0.0515, 0.0372, 0.0716, 0.0575, 0.0906, 0.0777, 0.1085, 0.0974, 0.1254, 0.1172, 0.1414, 0.1374, 0.1566, 0.1581, 0.1718, 0.1778),), type=MARLOW)

Regards

Dmytro