asdconcrete3D material is unknown

Forum for asking and answering questions related to use of the OpenSeesPy module

Moderators: silvia, selimgunay, Moderators

Post Reply
Prafullamalla
Posts: 160
Joined: Mon Feb 02, 2015 6:32 pm

asdconcrete3D material is unknown

Post by Prafullamalla » Tue Apr 18, 2023 6:08 am

Although the material is available in the opensees documentation. But it gives WARNING material type ASDConcrete3D is unknown
Prafulla Malla, Nepal
Praf_malla@hotmail.com

mhscott
Posts: 873
Joined: Tue Jul 06, 2004 3:38 pm
Location: Corvallis, Oregon USA
Contact:

Re: asdconcrete3D material is unknown

Post by mhscott » Tue Apr 18, 2023 6:58 am

Upgrade your OpenSeesPy version

Prafullamalla
Posts: 160
Joined: Mon Feb 02, 2015 6:32 pm

Re: asdconcrete3D material is unknown

Post by Prafullamalla » Fri Apr 28, 2023 8:08 pm

I upgraded to version 3.4.0.8 but still I got WARNING material type ASDConcrete3D is unknown.
Prafulla Malla, Nepal
Praf_malla@hotmail.com

mhscott
Posts: 873
Joined: Tue Jul 06, 2004 3:38 pm
Location: Corvallis, Oregon USA
Contact:

Re: asdconcrete3D material is unknown

Post by mhscott » Wed May 03, 2023 6:51 am

Please post a short script that produces the error.

Prafullamalla
Posts: 160
Joined: Mon Feb 02, 2015 6:32 pm

Re: asdconcrete3D material is unknown

Post by Prafullamalla » Sun May 07, 2023 4:52 am

Code: Select all

from openseespy import opensees as ops

ops.wipe()
ops.model('basic', '-ndm', 2, '-ndf', 2)
	
# the isotropic material
E = 30000.0
v = 0.2
sig0 = 30.0
	# define a perfect bilinear behavior in tension and compression to record the failure surface
fc = sig0
ec = fc/E
ft = fc/10.0
et = ft/E
ops.nDMaterial('ASDConcrete3D', 1, E, v,
	'-Ce', 0.0, ec, ec+1,
	'-Cs', 0.0, fc, fc,
	'-Cd', 0.0, 0.0, 0.0,
	'-Te', 0.0, et, et+1,
	'-Ts', 0.0, ft, ft,
	'-Td', 0.0, 0.0, 0.0)
Prafulla Malla, Nepal
Praf_malla@hotmail.com

mhscott
Posts: 873
Joined: Tue Jul 06, 2004 3:38 pm
Location: Corvallis, Oregon USA
Contact:

Re: asdconcrete3D material is unknown

Post by mhscott » Sun May 07, 2023 7:14 am

Thanks! Try downgrading OpenSeesPy to 3.4.0.7

Prafullamalla
Posts: 160
Joined: Mon Feb 02, 2015 6:32 pm

Re: asdconcrete3D material is unknown

Post by Prafullamalla » Thu May 11, 2023 1:01 am

I downgraded to version 3.4.0.7 but it didn't work. Got same error
Prafulla Malla, Nepal
Praf_malla@hotmail.com

Post Reply