Search found 6 matches

by harsh
Wed Feb 17, 2021 10:59 pm
Forum: OpenSeesPy
Topic: Adding new p-y material in opensees
Replies: 2
Views: 3671

Re: Adding new p-y material in opensees

Thank you for the reply.
Once the material is developed, should I just create a pull request or any other documentation is also required?
by harsh
Tue Feb 16, 2021 7:50 am
Forum: OpenSeesPy
Topic: Adding new p-y material in opensees
Replies: 2
Views: 3671

Adding new p-y material in opensees

Hi,

I am trying to add new uniaxial p-y material in opensees and was wondering whether the code should be developed based on the stress and strain or it should developed in terms of soil resistance (p) and displacement (y).


Kind Regards,
Harsh Mistry
by harsh
Tue Feb 02, 2021 10:51 am
Forum: OpenSeesPy
Topic: fiber section stress-strain output through recorder command
Replies: 9
Views: 11854

Re: fiber section stress-strain output through recorder command

Hi,

I am trying to record 'stressStrain' using the commands mentioned on this post but my output file just shows the time column.

Code: Select all

op.recorder('Element', '-file', 'stress2.txt','-time', '-ele', 201, '-section', '201', '-fiber', '4','4','3001','stressStrain')

I also tried to record the 'globalForce' for same element and it works perfectly fine.

Code: Select all

op.recorder('Element', '-file', "ele_force_H.txt",'-time', '-ele', 201, 'globalForce')
Could someone please help me identifying the mistake.
by harsh
Tue Feb 02, 2021 10:04 am
Forum: OpenSeesPy
Topic: Warning material type FluidSolidPorousMaterial is unknown
Replies: 3
Views: 4650

Re: Warning material type FluidSolidPorousMaterial is unknown

Opensees Command:

Code: Select all

nDMaterial FluidSolidPorous 1 2 3 2.2e6
Openseespy Command:

Code: Select all

op.nDMaterial('FluidSolidPorousMaterial', 1, 2, 3, 2.2E+06,101)  
I think there is a typo error in the openseespy documentation. On the documentation it says to use 'FluidSolidPorousMaterial' but i tried using 'FluidSolidPorous' and it works fine.

Thank You for help.
by harsh
Tue Feb 02, 2021 3:44 am
Forum: OpenSeesPy
Topic: Warning material type FluidSolidPorousMaterial is unknown
Replies: 3
Views: 4650

Warning material type FluidSolidPorousMaterial is unknown

Hi,


Is the nDMaterial ("FluidSolidPorousMaterial") not available for openseespy.
Because i tried using it and it shows the following warning:
"WARNING material type FluidSolidPorousMaterial is unknown"

I tried using same material in Opensees.exe and it works fine.

Please provide me any advice.

Thank You!