Estadística
10 Preguntas
0 Respuestas
CLASIFICACIÓN
262.567
of 301.555
REPUTACIÓN
0
CONTRIBUCIONES
10 Preguntas
0 Respuestas
ACEPTACIÓN DE RESPUESTAS
20.0%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.323
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
of 175.367
CONTRIBUCIONES
0 Problemas
0 Soluciones
PUNTUACIÓN
0
NÚMERO DE INSIGNIAS
0
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
Pregunta
Why does my solution to an ordinary second order differential equation look weird at low flow rates , when it decreases at some point which doesnt make any sense and then normal ?
.Only the important part of the code . The main function of the code is to find bubble size for different flow rates. .I used...
casi 8 años hace | 0 respuestas | 0
0
respuestasPregunta
Why does this function always gets solved at the initial point even though I keep on trying for different initial guess ? What is wrong with my fsolve ? Any kind of help will be appreciated
if true % Bubble formation in highly viscous liquids % Model: Ramakrishnan, Kumar, Kuloor 1970 % taking place under c...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
Why does one of my nonlinear equation is always solved at the initail point using fsolve , even though I keep on changing the initial point to different extremes and ranges ?
function [v_finRammicro,v_rate,v_fbRammicro,v_secRammicro] = mainRamakrishnamicro () format long v_fbRammicro =...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
Why do I get the same error even though I increased the tolerance of the fsolve function ?
options = optimoptions('fsolve','TolX',1e-12); options = optimoptions(options,'TolFun',1e-12); And Still I ge...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
I have to solve a second order differential equation in a loop with different initial values and variable values. The solver works perfectly for one loop. How can I save all the values for time, distance and velocity for each loop separately?
function [V,X1,v_fb,ub,so,t,y,v_fin,t_det,dis,db_f] = mainScargode() g= 9.81; sig= 0.072; D_or= 1.8e-03; ...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
I used an Euler's approach to solve the second order differential equation . But I get infinty values after fourth loop. The equations are correct and I cross checked them many times. Is there something wrong with the syntax or intialization ?
if true function [V,X1,v_fb,ub,so] = mainScargsingleloop() g= 9.81; sig= 0.072; D_or= 7.8e-03; ...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
I get a totally erroneous graph as the output and the result says , 'fsolve stalled ' and in accuracy possible. I tried to change the Tolerance level but still the same output. Does someone has some solutions on increasing accuracy of 'fsolve' ?
if true % function mainScargEuler() g= 9.81; sig= 0.072; D_or= 7.8e-03; % Orifice Di...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
The function F2 is not working correctly. I have to solve a second order differential equation and the ODE45 solver in the main function doesnt run. The main function actually takes values from two other functions, so whx is my ODE45 not working ?
function mainScarg v_fb = zeros(40,1); v_rate = zeros(40,1); v_fin = zeros(40,1); tdet = zeros(40,1); ...
más de 8 años hace | 1 respuesta | 0
1
respuestaPregunta
I get a graph, but I think the iteration is going wrong as i get a totally unexpected curve. I need to run the F1 first and use the answer from that to run F2. Is it the correct method or did i go some where wrong ? Thanks in advance
function mainRamakrishna v_fb = zeros(15); v_rate = zeros(15); v_fin = zeros(15); A = zeros(15); B...
más de 8 años hace | 0 respuestas | 0
0
respuestasPregunta
Why is my iteration not working. ? ( the solution array has all the same value from first iteration )
%function F = Gaddis(x) for (i = 1:40) vol(1) = 5*10^(-6); % volumetric gas flow rate s...
más de 8 años hace | 1 respuesta | 0

