Message Boards Message Boards

0
|
3676 Views
|
5 Replies
|
1 Total Likes
View groups...
Share
Share this post:

Determine the equilibrium points of a non-linear system

Posted 4 years ago

Hi I am trying to determine the equilibrium points in terms of the nondimensional parameters. the following is the non dimensionalised system:

Attachment

Attachment

Attachments:
POSTED BY: MANIKANDAN R
5 Replies
Posted 4 years ago

Sir, Herein Mathematica file attached

Attachments:
POSTED BY: MANIKANDAN R

Please post code in copy-pastable format.

POSTED BY: Daniel Lichtblau
Posted 4 years ago

Si thanks, Please find

u[x, y, z] := y;

v[x, y, z] := (-d*
     y) - (UMAXJ*(tanh[k_ 1*sin[x] + k_ 2*y + k_ 3*z])) + (d_ 2*
     z) - (sin[x]);

w[x, y, z] := (d*y) + (UMAXJ*(tanh[k_ 1*sin[x] + k_ 2*y + k_ 3*z]) - 
     d_ 2*z) + (mu1*((UMAXJ*tanh[k_ 1*sin[x] + k_ 2*y + k_ 3*z]) - 
       d_ 2*z)) + (sin[x]);

sols = NSolve[{u[x, y, z] == 0, v[x, y, z] == 0, w[x, y, z] == 0}, {u,
     v, w}, Reals];
POSTED BY: MANIKANDAN R
Posted 4 years ago

Try

u[x_,y_,z_]:= y;
v[x_,y_,z_]:= -d*y - UMAXJ*Tanh[k1*Sin[x] + k2*y + k3*z] + d2*z - Sin[x];
w[x_,y_,z_]:=  d*y + UMAXJ*Tanh[k1*Sin[x] + k2*y + k3*z] - d2*z + Sin[x] +
                mu1*(UMAXJ*Tanh[k1*Sin[x] + k2*y + k3*z] - d2*z);
Simplify[w[x,y,z]==0,u[x,y,z]==0&&v[x,y,z]==0]

which returns

mu1*Sin[x]==0
POSTED BY: Bill Nelson
Posted 4 years ago

Thanks

POSTED BY: MANIKANDAN R
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard

Group Abstract Group Abstract