Skip to content

How to use Modal-superposition method for Harmonic analysis under base excitation #3508

Answered by mikerife
Victor-Kao asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @Victor-Kao & @germa89
MAPDL does not allow applied displacements with the D command with a mode supperposition harmonic analysis. The DVAL command is used, along with the MODCONT command. Also the D command is used in the modal solution to define the load identification number. The modal then harmonic solution would then be:

## SOLU #######################################################
mapdl.run("/SOLU")
mapdl.antype(2)
mapdl.modopt('LANB',4)
mapdl.mxpand('ALL','','','YES','','YES')
mapdl.outpr('ALL')
mapdl.outres("ALL","ALL")	
# mapdl.outres("NSOL","1")
# Apply BC
mapdl.modcont('', 'on')
mapdl.d(1,"UZ",1)
mapdl.allsel()
modal_solve = mapdl.solve()
mapdl.finish()

mapdl.run("/SOLU")
m…

Replies: 1 comment 8 replies

Comment options

You must be logged in to vote
8 replies
@Victor-Kao
Comment options

@Victor-Kao
Comment options

@germa89
Comment options

@mikerife
Comment options

Answer selected by germa89
@Victor-Kao
Comment options

@mikerife
Comment options

@Victor-Kao
Comment options

@mikerife
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants