Atom topic feed | site map | contact | login | Protection des données personnelles | Powered by FluxBB | réalisation artaban
You are not logged in.
Pages: 1
Dear developpers,
a proposal: when doing a harmonic analysis the list of exciting frequencies should also contain the exact eigenfrequencies of the system (which must be calculated before). As far as I know there is not a command
list=DEFI_LIST_FREQ
(RESULTAT=modes,
LOWER_BOUND=1.,
UPPER_BOUND=1000.,
N_PER_MODE=7.
SPREAD = 4.)
..
with
RESULTAT resultat of a modal analysis
LOWER_BOUND lower bound of freq range
UPPER_BOUND upper bound of freq range
N_PER_MODE number of evenly spaced exciting frequencies per eigenfrequency, the 4th is the eigenfreq.
SPREAD range of spread of the evenly spaced N_PER_MODE values per eigenfrequency
which creates such a list in an automatic manner from a modal resultat.
Such a command exists for example in Nastran (bulk data keyword FREQ4).
Could it be realized for Code-Aster?
Johannes Ackva
______________________________________________________________________
Ingenieurbüro für Mechanik
Dr.-Ing. Johannes Ackva
Markgrafenstr. 21
D 91717 Wassertrüdingen
______________________________________________________________________
next CODE-ASTER-courses
*** Code-Aster QuickStart, 8-9 of May 2012, at Gompute User meeting in Göteborg, Sweden
www.simdi.se
CODE-ASTER-courses at Ingenieurbüro für Mechanik, Germany
*** SALOME and CODE-ASTER for beginners and nearly-beginners
4 days, Wed 19 Sep- Sat 22 Sep 2012
*** DYNAMIC ANALYSIS WITH CODE-ASTER
2 days, Thursday 18 Oct- Fri 19 Okt 2012
www.code-aster.de
www.code-aster.de Training & Support for NASTRAN and CODE-ASTER
Ingenieurbüro für Mechanik
D 91717 Wassertrüdingen / Germany
www.code-aster.de Training & Support for NASTRAN and CODE-ASTER
Offline
Hi,
While some fast and dirty python such as
dico = MODE.LIST_VARI_ACCES()
fmod=dico['FREQ']
frq=list(N.linspace(fmin,fmax,nmbre))
for f in fmod:
frq.append(f)
frq.sort()
LiF=DEFI_LIST_REEL(VALE=frq )
would help,
I agree with Johannes proposal. This function is needed every time we want to compute the dynamic response of a structure, and it would be helpfull to integrate it in the part of the code under QA. Nice suggestion.
Regards
Yvon Goth
Offline
Yes, it's a good idea.
Thank you for your suggestion !
Code_Asterの開発者
Offline
Hi,
This feature is now available in Code_Aster starting from version 12.015. See this news for more details.
TdS
Offline
Pages: 1