phase portrait for system of ode

9 ビュー (過去 30 日間)
nune pratyusha
nune pratyusha 2021 年 2 月 13 日
回答済み: SaiDileep Kola 2021 年 2 月 26 日
dx/dt=y
dy/dt=-(1/r+g+a+b*|x|)y/c-x/(lc)
for this system i am finding phase portraits ,my code is
clc
clear all
%data:
r = 1430;
a = -0.0683;
b = 0.0676;
c = 36*10^-9;
g = -0.0676;
l=27
[x,y]=meshgrid(-2:0.01:2.05, -2:0.01:2.05);
dx = y;
dy = -(1/c)*((1/r)+g+a+b*abs(x)).*y-x/(l*c)
streamslice(x, y, dx, dy,'filled');
% hold on
% figure
quiver(x, y, dx, dy);
% plot(dx,dy)
% figure
title('Phase portrait')
% axis tight
my output is coming fizzy but i want one single elliptical nature phase portrait
  1 件のコメント
darova
darova 2021 年 2 月 13 日
What is the question?

サインインしてコメントする。

採用された回答

SaiDileep Kola
SaiDileep Kola 2021 年 2 月 26 日
Refer the answer to similar topic here

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by