Skip to content

Latest commit

History

68 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

Parametric Excitation

Source code of a parametric excitation research developed at University of São Paulo.

Introduction

Reduced order model (ROM)

The main code (write in MatlabR2019a) is a simple tool to evaluate, using a ROM, the dynamics of a vertical slender beam under parametric excitation. This code also can do a comparison with some numerical simulations (in the present case, an in-house FEM solver was used, called Giraffe).

  • Assumptions about the model:
    1. Bernoulli-Euler beam formulation;
    2. Considering small strain hypothesis, but large displacement;
    3. Temporal-spatial separation of the response using three modes;
    4. Galerkin's method with three sinusoidal shape functions.

Mathematical formulation

Obtaining the ROM can be a laborious task, thus to help with this, a Wolfram Mathematica script is provided here. With this script one can obtain and check the nondimensional equations of the ROM and easily adapte it to perform some different pre/postprocessing.

FEM solver - Giraffe

The Giraffe (Generic Interface For Finite Element) software was used to evaluate numerically the beam. It is a FEM-based solver, also developed at University of São Paulo by prof. Alfredo Gay Neto and his research group. In this study, it is used the Timoshenko's geometrically exact beam formulation implemented in Giraffe to describe the structure.

Using the code

For now, there is no GUI and this will probably take some time, if it actually happens to this program. But, as it is only some scripts to solve a system of equations and postprocess the results, this should not be a problem.

You can change some I/O options in the main.m file according to your needs. To do this, you just have to change the parameters for the GeneralOptions constructor:

genOpt = GeneralOptions(...
1,... evaluate FEM model in water1,... evaluate FEM model in air1,... evaluate ROM model in water1,... evaluate ROM model in air
[11],... plot tensions [top bottom]1,... plot results in multiple tabs (if false individual figures are opened, like in the paper and in ".\figs" folder)1,... save ALL figures (the default option is to save PDF figures)0,... export .mat1 ... load .mat
);

The last option must be true unless you will read Giraffe monitors.

The user can choose the excitation scenarios to plot/evaluate in the main file:

genOpt.SolOpt.n_plot = [24]; % to evaluate the first and second Mathieu's instabilities

The saving option in GeneralOptions constructor can be changed for only one specific scenario and model in the SetModel.m file. For example, to save only the ROM scalogram for the immersed structure, set the save option to false in GeneralOptions at main.m and in SetModel.m choose:

...block of codeifgOpt.include_ROM_water
% ROM options: damping coefficient, immersed?, natural frequency, top tension 
rom{2} = ROM(0.112982, true, gOpt.ROM_freq_water(n), 33.4405); rom{2}.SetOutputOptions(...
0, ... save displacement time series1, ... save scalogram (this option MUST BE TRUE OR 1)0, ... save tension 0, ... show phaseSpace1 ... show scalogram
);
... block of codeend
... block of code

About

Source code of parametric excitation research developed at University of São Paulo

Topics

Resources

Stars

2 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors

Languages