Community Profile

photo

MINATI PATRA


Last seen: alrededor de 1 mes ago|Active since 2018

Statistics

  • Thankful Level 3
  • First Answer

View badges

Content Feed

View by

Question


symbolic integration needed in the present code
syms h q x f(x) f0 f1(x) f2(x) f3(x) f = f0 + f1*q + f2*q.^2 + f3*q.^3; Eq0 = diff(f,x) - diff(f0,x); Eq1 = diff(f,x) - f^2; ...

alrededor de 1 mes ago | 1 answer | 0

1

answer

Question


dsolve problem gives error
M = 2; Kp = 5; Gr = 0.1; Gc = 0.1; L = 0.05; Pr = 1; S1 = 0.1; Sc = 0.78; Kc = 0.1; syms x f0(x) g0(x) h0(x) f(x) g(x) h(x) e...

alrededor de 2 meses ago | 1 answer | 0

1

answer

Question


What changes are needed to run the code
Psi = pi/2; L1 = 0.1; L2 = 0.1; L = 0.1; Pr = 1; M = 5; Ec = 0.5; Nb = 0.5; Nt = 0.1; fw = 0.5; Q = 0.1; Le = 2; Kc = 1; A = ...

7 meses ago | 1 answer | 0

1

answer

Question


Help me to run the code
% file modified by sujogya %dated 9.1.2021 % min z=x1-3x2+2x3 % max z'=-x1+3x2-2x3 % s.t. %3x1-x2+2x3<=7, %-2x1+4x2+0x3<=12,...

7 meses ago | 2 answers | 0

2

answers

Question


hold on option is not working in the present code
M = 0.2; L = 0.01; K = 0.1; G = 2; Pr = 2; s = 0.1; Ec = 0.01; m = 0.5; R = 0.5; fw = 0.5; a = 1; n = 0.5; for M = [0 .1 .2] ...

9 meses ago | 1 answer | 0

1

answer

Question


Can the code be modified and matched with the attached pdf
%% Can someone modify the code to run and match figs in the attached pdf AND also want to draw some surf plot % u_t(x,t) = ...

10 meses ago | 0 answers | 0

0

answers

Question


mixed odes and pdes in matlab solver
Can it be possible to solve Eqns. (26) - (30), To draw all the figs of attached pdf. Is there any solver? Help me!

10 meses ago | 0 answers | 0

0

answers

Question


Legend option and numbering in boxes
y1 = [85 83 82 87; 81 79 84 86; 82 81 89 87; 89 85 87 80; 90 91 85 87]; figure(1), bar(y1,'stacked'); labels = arrayfun(@(value...

11 meses ago | 2 answers | 0

2

answers

Question


vpa(Fv,5) can not consider all the terms
Fv = - 4.4574e-25*x^21 + 3.0044e-21*x^20 - 5.6303e-17*x^19 + 1.7379e-13*x^18 - 1.4891e-9*x^17 + 1.3636e-8*x^16 - 2.8806e-9*x^15 ...

alrededor de 1 año ago | 1 answer | 0

1

answer

Question


Which format can be choosen
syms x f = - 0.00000000000000000000000044574112852848068606808271927672*x^21 + 0.0000000000000000030044127779970749176557242324...

alrededor de 1 año ago | 1 answer | 0

1

answer

Question


Addition of derivative goes wrong
syms M k Ec Pr y T(M, k, Ec, Pr, y) = (A*Ec*Pr/(Ec*Pr-4*A))*( exp(-2*y*sqrt(A)) - exp(-y*sqrt(Ec*Pr)) ) + (y*sqrt(Ec*Pr)/2 ...

alrededor de 1 año ago | 0 answers | 0

0

answers

Question


Derivative of a function of three variables
%% Can it be possible to find derivative of 'C' simultaneously with all the variables syms y S K C = exp(-y*sqrt(S*K)); CD =...

alrededor de 1 año ago | 1 answer | 0

1

answer

Question


loop in dsolve code needed
D = 10; R = 0.5; a = 0.1; b = 0.5; A = 1.5; B = 1; C = 1; P = 7; xb = 5; N = 5; syms x f0(x) g0(x) f(k) g(k) eqn0 = [ diff(f...

alrededor de 1 año ago | 0 answers | 0

0

answers

Question


modification needed in dsolve code
Da = 10; Rd = 0.5; Tw = 1.5; C1 = 1; a1 = 0.1; a2 = 0.5; A1 = 1.5; B1 = 1; Pr =7; syms x f0(x) g0(x) f1(x) g1(x) f2(x) g2(x) f...

alrededor de 1 año ago | 1 answer | 0

1

answer

Question


dsolve code is not running
syms x f(x) g(x) h(x) M2 M3 a1 k K L A Rd Br Pr Nb Nt G Le H eqn = [ diff(f,2) - L*diff(f)*diff(g) + A*a1*exp(L*g) == 0,... ...

mas de 1另前| 0 | 3的答案

3

answers

Question


Need dsolve code to run for Symbolic solution
syms U(y) T(y) C(y) M Kp Pr phi Gr Gc Sc Kc a % % % Gr = 1; Gc = 1; M =1; Kp = 0.1; Pr = 1; phi = 0.1; Sc = 0.22; Kc = 1; ...

más de 1 año ago | 0 answers | 0

0

answers

Question


Can dsolve is enough to solve these ODEs
syms a s t y u(y,t) g(y,t) h(y,t) M Kp Pr phi Gr Gc Sc Kc U(y,s) T(y,s) C(y,s) % % Gr = 1; Gc = 1; M =1; Kp = 0.1; Pr = 1; p...

más de 1 año ago | 0 answers | 0

0

answers

Question


Nu and Sh value should be non-zero
function main x = linspace(0,1,101); t = x; m = 0; sol = pdepe(m,@pde,@ic,@bc,x,t,[]); U = sol(:,:,1); T = sol(:,:,2); ...

más de 1 año ago | 0 answers | 0

0

answers

Answered
help solving differential equations
@ eden meirovich What about bvp 4c?

más de 1 año ago | 0

Question


Can this dsolve code find solution recursively
syms x f f0(x) f1(x) f2(x) f3(x) f4(x) f5(x) f6(x) eqn0 = diff(f1,3) == 0; cond0 = [f1(0) == 0, subs(diff(f1),0) =...

más de 1 año ago | 0 answers | 0

0

answers

Question


Unable to solve the collocation equations -- a singular Jacobian encountered
b1 = 0.1; b2 = 0.01; A = 0.1; L = 1; b = 0.3; M = 1; R = 2; E = 1; Pr = 2; N = 2; rho = 1; a1 = 1; Ec = 10; G = 1; BC = @(ya,yb...

más de 1 año ago | 0 answers | 0

0

answers

Question


Unable to find value of T1
syms L m x xx s theta_b h Z y U T0 T1 T2 k0 b Tinf Tb sumsol k=6; sym('u0(x)');('u1(x)');('u2(x)');('u3(x)');('u4(x)');('u5(x)...

más de 2 años ago | 1 answer | 0

1

answer

Answered
ERROR came as "Index exceeds matrix dimensions".
u, θand ϕ are coded in u, v and w respectively.

casi 3 años ago | 0

Answered
ERROR came as "Index exceeds matrix dimensions".
Dear Walter Please see Equation (12), (Attached pdf) 2nd line is for gl 3rd line is for gr

casi 3 años ago | 0

Question


How to get single curve.
H=10;R=5;Pr=1;Q=H-(R/Pr); xl=0; xr=5; J = 10; dx = (xr-xl) / J; tf = 01; Nt = 100; dt = tf/Nt; mu = dt/(dx)^2; % Evaluate the ...

casi 3 años ago | 1 answer | 0

1

answer

Question


ERROR came as "Index exceeds matrix dimensions".
%% When I incorporate 3 eqns, ERROR came as "Index exceeds matrix dimensions". %%Here I have initial condition f=[0 0 0 ], BC: ...

casi 3 años ago | 3 answers | 0

3

answers

Answered
How to code in bvp4c
I need the to write fw= - 0.2 and 0.2 in the CODE so that the legend will come automatically. Attached fig. can be follow...

casi 3 años ago | 0

Question


How to code in bvp4c
How to code in bvp4c I have drawn 6 curves in a fig. and want 1st, 3rd and 5th curve as dashed lines others solid lines in...

casi 3 años ago | 1 answer | 0

1

answer

Question


How to plot for: -T0(5) (Y-axis) vs Nt (ranges from 0.1 to 0.5 in X-axis) where already 'x' varies in the differential
function main format('long'); gg=['r','k','b','g','m','c','y','r.','m.','k.']; Pr=10; Le=10; %Nt=.1; Nb=.1; xa=...

alrededor de 4 años ago | 0 answers | 0

0

answers