Boundary Value Problem based on specific problem
Mostrar comentarios más antiguos
clear all;
close all;
clc;
%% INPUTs:
f = 6; % Natural Cyclic Frequency (1/sec or Hertz-Hz)
x0 = 0.02; % Initial Displacement (in m)
v0 = 0.25; % Initial Velocity (in m/s)
%% OUTPUTs:
wn = 2*pi()*f % Natural Circular Frequency or Angular Frequency (rad/s)
T = 1/f % Fundamental Time-Period (sec)
A = sqrt((x0^2) + (v0/wn)^2) % Amplitude (m)
vm = A*wn % Maximum Velocity (m/s)
am = vm*wn % Maximum Acceleration (m/s/s)
Phi = atand(x0*wn/v0) % Phase Angle (in degree)
syms X(t)
E = diff(X,t,2) + (wn^2)*X == 0;
x = dsolve(E) % C1 & C2 are constant and can be determined by BCs
%% I need to find constant C1 & C2 through boundary value problem as x(0) = 0 & x'(0)=0. Can someone help me out?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Equation Solving en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


