Damping Ratio

Forum for OpenSees users to post questions, comments, etc. on the use of the OpenSees interpreter, OpenSees.exe

Moderators: silvia, selimgunay, Moderators

Post Reply
Gholamreza
Posts: 84
Joined: Tue Nov 07, 2017 7:47 am
Location: University of Central Florida

Damping Ratio

Post by Gholamreza » Mon Sep 17, 2018 7:57 am

Hello Everyone,
I modeled a 9story structure and I'd like to have specific damping ration for the first mode. I can calculate the critical damping (Cc=2mw), and we know damping ratio = (Damping-coefficient/Critical-Damping). Any idea how I can specify damping coefficient ? should I use Rayleigh command to specify the damping coefficient ? Thanks

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

Re: Damping Ratio

Post by Prafullamalla » Thu Sep 20, 2018 7:30 am

If I am not wrong you are searching for this..

# set damping based on first eigen mode
set pi [expr acos(-1.0)];
set freq [expr [eigen 1]**0.5]
set period [expr 2*$pi/$freq]
puts $period
set damp 0.02;
rayleigh [expr 2*$damp*$freq] 0. 0. 0.
Prafulla Malla, Nepal
Praf_malla@hotmail.com

Gholamreza
Posts: 84
Joined: Tue Nov 07, 2017 7:47 am
Location: University of Central Florida

Re: Damping Ratio

Post by Gholamreza » Thu Sep 20, 2018 8:27 am

That exactly what I needed. Thank you

Post Reply