Rahmat Sunarya
Rahmat Sunarya
  • Видео 138
  • Просмотров 231 063

Видео

Diffusion - Advection Partial Differential Equation Solved by pdepe MATLAB (PDE)
Просмотров 2894 месяца назад
Diffusion - Advection Partial Differential Equation Solved by pdepe MATLAB (PDE) clc;clear;close all; %meshing time & space t=linspace(0,60,61); %time z=linspace(0,1,100); %space (axial) m=0; %remember m=0 sol=pdepe(m,@pdefun,@icfun,@bcfun,z,t); C=sol(:,:,1); imagesc(z,t,C) colormap jet colorbar title('Concentration profile') xlabel('position (cm)') ylabel('time (s)')
Friction Factor Colebrook Equation (MATLAB) using fzero syntax
Просмотров 1375 месяцев назад
#matlab #colebrook #frictionfactor #fluidmechanics clc; clear all; close all; %initial guess f0=0.1; [f, yval]=fzero(@cb,f0) %Colebrook Equation function y=cb(f) NRe=6.5e4; %Reynold Number eD = 0.00013; % e/D y=1/sqrt(f) 0.86*log(eD/3.7 2.51/NRe/sqrt(f)); end
Dimensionless Generic Breakthrough Curve
Просмотров 1946 месяцев назад
#matlab #adsorption #curvefitting Inspired by : Saikat Roy & Arun S. Moharir (2019). Modeling the Generic Breakthrough Curve for Adsorption Process; arxiv.org/pdf/1907.00195 clc;clear;close all; %parameter L=0.3; %m eps=0.4; %- u=0.005; %m/s LDF=0.5; %1/s LDF=15*De/Rp^2 (LDF = for simplification) b=0.1; %m3/kg qm=0.02; %kg adsd/kg adst c0=1.5; %kg/m3 rhop=1100; %kg/m3 %time-mesh t=linspace(0,50...
Ordinary Differential Equations (ODEs) Second-Order Finite Difference Solved by MATLAB
Просмотров 1997 месяцев назад
28.8 Compound A diffuses through a 4-cm-long tube and reacts as it diffuses. The equation governing diffusion with reaction is: 𝐷 (𝑑^2 𝐴)/(𝑑𝑥^2 )−𝑘𝐴=0 At one end of the tube, there is a large source of A at a concentration of 0.1 M. At the other end of the tube there is an adsorbent material that quickly adsorbs any A, making the concentration 0 M. If D = 1.5 x 10-6 cm2/s and k = 5 x 10-6 1/s, ...
System Ordinary Differential Equations (ODEs) Solved by MATLAB
Просмотров 1137 месяцев назад
28.7 The following equations define the concentrations of three reactants: (𝑑𝑐_𝑎)/𝑑𝑡=−10𝑐_𝑎 𝑐_𝑐 𝑐_𝑏 (𝑑𝑐_𝑏)/𝑑𝑡=10𝑐_𝑎 𝑐_𝑐−𝑐_𝑏 (𝑑𝑐_𝑐)/𝑑𝑡=−10𝑐_𝑎 𝑐_𝑐 𝑐_𝑏−2𝑐_𝑐 If the initial conditions are ca = 50, cb = 0, and cc = 40, find the concentrations for the times from 0 to 3 s. #odesolver #chapra #canale #matlab
Non Linear Curve Fitting : Signal-to-Noise Ratio (SNR). Acoustic Concentration Measurement
Просмотров 1137 месяцев назад
#curvefitting #acoustic #matlab Paper : www.researchgate.net/publication/329773388_Applicability_of_Acoustic_Concentration_Measurements_in_Suspensions_of_Artificial_and_Natural_Sediments_Using_an_Acoustic_Doppler_Velocimeter ta in comment section Cdata=[0.001 0.002 0.002 0.004 0.005 0.010 0.020 0.042 0.107 0.202 0.206 0.399 0.600 0.855 1.161 1.699 2.078 2.751 4.569 7.401 9.524 13.574 20.902 26....
Breakthrough Adsorption using Dimensionless Number. Solved byt Method of Line
Просмотров 3238 месяцев назад
The Advection PDE-ODE Equation Partial Differential Equation (PDE) Ordinary Differential Equation (ODE) #ode15s #adsorption #maths #mathematics #dimensionless #sherwoodnumber
The Simplest Way to Make an Adsorption Breakthrough Curve
Просмотров 3878 месяцев назад
The Advection PDE-ODE Equation Partial Differential Equation (PDE) Ordinary Differential Equation (ODE) #ode15s #adsorption #maths #mathematics
Partial Differential Equation (PDE) Burgers - Huxley Equation | Method of Line (MATLAB)
Просмотров 40011 месяцев назад
#Burgers #Huxley #waveequation #pde #matlab
Partial Differential Equation (PDE) Fix Bed Reactor with The Danckwerts boundary conditions
Просмотров 38611 месяцев назад
#PDE #danckwerts #matlab #methodofline Partial Differential Equation (PDE) Fix Bed Reactor with The Danckwerts boundary conditions Method of Line Matlab Pe=200; %Peclet Number Da=2; mkohler number v=2; Nx=151; L=1; x=linspace(0,L,Nx); dx=x(2)-x(1); tf=2; Nt=101; t=linspace(0,tf,101); IC=zeros(1,Nx);
Flash Tank Calculation Real System Scatchard-Hildebrand and Second Virial
Просмотров 21311 месяцев назад
#VLE #thermodynamics #flash Flash Tank Calculation Real System Scatchard-Hildebrand and Second Virial z=[0.2 0.3 0.4 0.1]; ed mole fraction t=40; lcius T=t 273.15; %Kelvin Pt=3; %atm R=82.057; %mL atm/mol/K %Antoine Eq for saturated vap pressure %Psat=10^(A-B/(C T)) A=[6.804 6.809 6.876 6.870]; B=[803.81 935.86 1075.78 1168.72]; C=[246.99 238.73 233.21 224.21]; PmmHg=10.^(A-B./(C t)); %in mmHg...
Molar Volume gas mixture using Peng-Robinson Equation of State
Просмотров 448Год назад
#matlab #pengrobinson #thermodynamics #fugacity Calculate the molar volume of a gas mixture consisting of 50 mol % propane (1), 20% n-butane (2), and 30% n-pentane (3) at 40 bar and 480 K using the Peng-Robinson equation of state. Ismail Tosun (2021) , the thermodynamic of phase and reaction equilibria p.227 clc;clear;close all; R=83.14; %cm3.bar/mol/K P=40; r T=480; %K %propane(1)-nbutane(2)-...
Fugacity coefficient mixture (3 components) using Peng-Robinson Equation of state
Просмотров 666Год назад
#matlab #pengrobinson #thermodynamics #fugacity R=8.314; %J/mol/K ideal gas constant T=233.2; %K system temp P=0.1; %Mpa system pressure x=[0.1 0.3 0.6]; %- fraction mol Tc=[190.56 305.32 369.83]; %Critical Temp K Pc=[4.599 4.872 4.248]; %Critical Press MPa b=[26.803 40.538 56.316]; %Peng-Robinson covolume w=[0.011 0.099 0.152]; entric factor kij=[0 0.00340 0.01070; 0.00340 0 0.00900; 0.01070 ...
Van Laar Model | Curve Fitting Vapor-Liquid Equilibrium of Binary System.
Просмотров 323Год назад
Reference : Lo, Teh Cheng., Bieber, H. Harold., Karr, Andrew E. (1962). Vapor-Liquid Equilibrium of n-Pentane-Acetone. Journal of Chemical & Engineering Data 1962 7 (3), 327-331. DOI: 10.1021/je60014a002 #ConfidenceInterval #CurveFitting #SOLVER #ExcessGibbsEnergy #Redlich #Kister #thermodynamics #activitycoefficient
Redlich - Kister Expansion One Parameter | Curve Fitting Vapor-Liquid Equilibrium of Binary System.
Просмотров 610Год назад
Redlich - Kister Expansion One Parameter | Curve Fitting Vapor-Liquid Equilibrium of Binary System.
IAST Selectivity Using Excel Solver Combined Langmuir-Freundlich Model
Просмотров 329Год назад
IAST Selectivity Using Excel Solver Combined Langmuir-Freundlich Model
Breakthrough Curve Desorption Solved by Method of Line GNU Octave (PDE-ODE)
Просмотров 305Год назад
Breakthrough Curve Desorption Solved by Method of Line GNU Octave (PDE-ODE)
PDE Burgers’ Equation GNU Octave Method of Line
Просмотров 277Год назад
PDE Burgers’ Equation GNU Octave Method of Line
Breakthrough Curve Adsorption Solved by pde1dm GNU Octave. Solved PDE-ODE (coupled system)
Просмотров 421Год назад
Breakthrough Curve Adsorption Solved by pde1dm GNU Octave. Solved PDE-ODE (coupled system)
Breakthrough Curve of Adsorption and IAST Selectivity in Binary Liquid System. Method of Line MATLAB
Просмотров 353Год назад
Breakthrough Curve of Adsorption and IAST Selectivity in Binary Liquid System. Method of Line MATLAB
Boundary Value Problem (BVP) | Steady State Mass Transfer Diffusion-Advection-Reaction
Просмотров 199Год назад
Boundary Value Problem (BVP) | Steady State Mass Transfer Diffusion-Advection-Reaction
Boundary Value Problem (BVP) | Steady State Heat Transfer in Rod
Просмотров 270Год назад
Boundary Value Problem (BVP) | Steady State Heat Transfer in Rod
Method of Line - PDE Burgers’ Equation
Просмотров 419Год назад
Method of Line - PDE Burgers’ Equation
Non-Linear Curve Fitting - Indirect Fitting : Bacterial Growth Kinetic Rate
Просмотров 206Год назад
Non-Linear Curve Fitting - Indirect Fitting : Bacterial Growth Kinetic Rate
Non-Linear Curve Fitting using MATLAB : Finding Parameter in Virial Equation
Просмотров 575Год назад
Non-Linear Curve Fitting using MATLAB : Finding Parameter in Virial Equation
Vapor Liquid Equilibrium (VLE) Binary System Formic acid-Acetic acid Using UNIQUAC (MATLAB)
Просмотров 479Год назад
Vapor Liquid Equilibrium (VLE) Binary System Formic acid-Acetic acid Using UNIQUAC (MATLAB)
Boundary Value Problem (BVP) | Analytical vs Numerical Solution
Просмотров 153Год назад
Boundary Value Problem (BVP) | Analytical vs Numerical Solution
UNIQUAC Activity Coefficient & Excess Gibbs Energy Binary Mixture Benzene and 2,2,4-Trimethylpentane
Просмотров 445Год назад
UNIQUAC Activity Coefficient & Excess Gibbs Energy Binary Mixture Benzene and 2,2,4-Trimethylpentane
Elliptic PDE-Laplace Equation. Concentration Distribution in the Tank
Просмотров 273Год назад
Elliptic PDE-Laplace Equation. Concentration Distribution in the Tank

Комментарии

  • @AichaTOUHAMI-fb9hq
    @AichaTOUHAMI-fb9hq 21 час назад

    thanks for your explanation

  • @RHTQ1
    @RHTQ1 29 дней назад

    Thanks!

    • @rahmatsunarya
      @rahmatsunarya 8 дней назад

      @@RHTQ1 Oh my God. I'm crying for this 😭😭 it's my superthank ever in my YT carier . Thank you so much for your incredible support!

  • @RHTQ1
    @RHTQ1 29 дней назад

    For some reason, I still didn't need fsolve when I switched to a second order reaction, which feels wrong. But that's likely a me problem. TYSM for this awesome video! Seriously, this is better than the terrible resources I have been paying for. Plus there's calm music...

    • @rahmatsunarya
      @rahmatsunarya 6 дней назад

      @@RHTQ1 Really? Youur comment really made my day! It gave me such a boost. I'll do my best to make more content and help others 😊😄

  • @KobePeeters-x8i
    @KobePeeters-x8i Месяц назад

    Hi, I tried to run this code in version R2024a and R2020b but it doesn't seem to work anymore. Do you know what might be the problem?

    • @rahmatsunarya
      @rahmatsunarya Месяц назад

      I think there's a problem with how lsqnonlin works differently in MATLAB 2024 compared to 2020.

    • @KobePeeters-x8i
      @KobePeeters-x8i Месяц назад

      @@rahmatsunarya Thanks for responding. I already discovered a solution by defining the objective function for lsqnonlin as an anonymous function. Line 12 looks like this then: ...= lsqnonlin(@(p) fres(p, t, IC, c), g, lb, ub);

    • @rahmatsunarya
      @rahmatsunarya Месяц назад

      @@KobePeeters-x8i Great. Thank you for sharing

  • @SANGSANTi
    @SANGSANTi Месяц назад

    you save the world by making this tutorial series man!

    • @rahmatsunarya
      @rahmatsunarya Месяц назад

      Wow, I’ll let the superheroes know they’re on vacation now! Thanks a lot! 💪🚀

  • @johnwind7011
    @johnwind7011 Месяц назад

    I don't have a Matlab license. Do you know of an open source method for doing this?

    • @rahmatsunarya
      @rahmatsunarya Месяц назад

      Surely. You can use OCTAVE. It's a open source software and Matlab alternative. You can see the tutorial at folowing link ruclips.net/video/cq-XjX7yLD0/видео.htmlsi=giFUA1OamlzN8D7j

    • @johnwind7011
      @johnwind7011 Месяц назад

      @@rahmatsunarya, thanks much. Do you know if there is a Python version?

  • @MicahMcDermott-t8d
    @MicahMcDermott-t8d Месяц назад

    Why are we interested in finding A12 and A21?

    • @rahmatsunarya
      @rahmatsunarya Месяц назад

      It involved molecular attraction and was useful for calculating the activity coefficient. That's all, sir. Thank you for your comments

  • @스제임-x9r
    @스제임-x9r Месяц назад

    sir, can i save the figure result by timestep as video file ?

    • @rahmatsunarya
      @rahmatsunarya Месяц назад

      Hello. Thank you for comment. Sure, you can get the video file. Please see the tutorial in another my videos: ruclips.net/video/XZ0A5qTX5Ko/видео.html

  • @annoon-i1l
    @annoon-i1l 2 месяца назад

    great thanks.............may I get the code?

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      Sure please send me a email in rahmatsunarya@gmail.com

    • @annoon-i1l
      @annoon-i1l 2 месяца назад

      @@rahmatsunarya great thanks for your help

  • @chuahchongyang1164
    @chuahchongyang1164 2 месяца назад

    I am unsure, but at 1:52, the f should be d2Cdx2 instead of dCdx?

    • @rahmatsunarya
      @rahmatsunarya 6 дней назад

      Sorry Sir, I think I do same as the MATLAB template for pdepe 🙏

  • @IloegbunamChukwuma
    @IloegbunamChukwuma 2 месяца назад

    Nice work.. Please simulate this type of advective model from the journal: DEEP-BED FILTRATION WITH MULTISTAGE DEPOSITION KINETICS by Vitaly Gitis etal, 2010.

  • @anantawasare4615
    @anantawasare4615 2 месяца назад

    Sir Please send me your mail for contact.

  • @lorenzo4351
    @lorenzo4351 2 месяца назад

    Hi, are you using Jacobi method for iteration, right? Your videos are very good!

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      Hi. I'm using simple iteration in matlab. I do not know it was Jacobi method or not 😅

  • @robbyhidayat98
    @robbyhidayat98 2 месяца назад

    cocok untuk mahasiswa Indonesia

  • @SIVANATHANVK
    @SIVANATHANVK 2 месяца назад

    Can anybody help to find out henry's selectivity from static adsopttion isotherm

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      did you have a similar problem?

  • @smsirajulislam9805
    @smsirajulislam9805 2 месяца назад

    Nice to see your work again

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      thank you sir for you support

  • @smsirajulislam9805
    @smsirajulislam9805 2 месяца назад

    Awesome

  • @lxwan-j2c
    @lxwan-j2c 2 месяца назад

    Thanks for your video! It's super helpful. Quick question though - I noticed the formula in the slide at 0:52 looks a bit off from the Peng-Robinson equation I'm familiar with. The formula shows (1-\kappa\frac{T}{T_c})^0.5, but I think it should be (1-\kappa(\frac{T}{T_c})^0.5). The code's right, so maybe just a typo in the slide?

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      OMG, I got typo. That was (1-(T/Tc)^0.5)^2. I am so sorry. Thank you for noticed me

  • @IloegbunamChukwuma
    @IloegbunamChukwuma 2 месяца назад

    Nice 👍 What about a system of multistage deposition. Where there is more than 1 equations for the rate of particle adsorption and desorption. And also epsilon is time dependent... Very nice and wonderful video Sir. Thank you

  • @IloegbunamChukwuma
    @IloegbunamChukwuma 2 месяца назад

    This video is quite helpful, but i have a question. What if epsilon(porosity) is a function of time, And rate of change of q(particle deposition) has more than one stage time dependent equation. Example in "Deep-bed filtration model with multistage deposition kinetics" by vitaly Gitis etal. How do we code such model. Thank you🎉

  • @IloegbunamChukwuma
    @IloegbunamChukwuma 2 месяца назад

    Thanks Very much for this video

  • @Spectrojamz
    @Spectrojamz 3 месяца назад

    man, I'm looking for a textbook so I can understand this frfr

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      Transport phenomena by Bird, Lighfoot

    • @Spectrojamz
      @Spectrojamz 2 месяца назад

      @@rahmatsunarya tysm sir

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      @Spectrojamz good luck

  • @WonYYang
    @WonYYang 3 месяца назад

    How about ruclips.net/video/zcDZk1pqyrc/видео.html

  • @annoon-i1l
    @annoon-i1l 3 месяца назад

    can you show the question plz?

    • @rahmatsunarya
      @rahmatsunarya 2 месяца назад

      Hello. It's not from question, but from paper. Thank you

  • @WonYYang
    @WonYYang 3 месяца назад

    How about ruclips.net/video/zcDZk1pqyrc/видео.html

  • @delolanang
    @delolanang 3 месяца назад

    Mas Rahmat Sunarya, I am currently trying to develop a direct contact membrane distillation model using an advection-diffusion approach. If you have some time, I would like to ask you a few questions. 😅 The approach I am using is the finite difference method. I am having difficulty because, on one side, there is a boundary condition in the form of a function.The function itself need temperature from interior nodal..

    • @rahmatsunarya
      @rahmatsunarya 3 месяца назад

      could you please tell me on gmail, Sir?

  • @gianfrancodilorenzo5759
    @gianfrancodilorenzo5759 3 месяца назад

    Thanks for this video. Please can you explain me why in the BC-1 and BC-2 during discretization you divide for 2 (forward and backward 1st order seems not require that)?

    • @rahmatsunarya
      @rahmatsunarya 3 месяца назад

      BC-1 is known left BC or how we start. So, we use forward. BC-2 is known right BC or how we finish. So, we use backward.

    • @rahmatsunarya
      @rahmatsunarya 3 месяца назад

      I hope you get the point.

    • @gianfrancodilorenzo5759
      @gianfrancodilorenzo5759 3 месяца назад

      ​@@rahmatsunarya Sorry the question was ill-posed. I was asking why in forward discretization (or backward) you divide by 2 in BC (at denominator you have the number 2 for both BC).

    • @rahmatsunarya
      @rahmatsunarya 3 месяца назад

      Omg, it's my mistake. I am sorry. It is not divided by 2. Thanks for your comment

  • @soufien6477
    @soufien6477 5 месяцев назад

    hi, did you post the code somewhere ?

    • @rahmatsunarya
      @rahmatsunarya 5 месяцев назад

      Sorry, I did not. If you need code, please let me know. Thx

  • @RangQuid
    @RangQuid 5 месяцев назад

    great video, but the background music is very annoying.

  • @eduardosarmiento3620
    @eduardosarmiento3620 5 месяцев назад

    Hi, can you helpme? please i can´t solve a system of PDE Cylindrical are six PDE of reaction

  • @nghianguyenhuu3642
    @nghianguyenhuu3642 5 месяцев назад

    Thank you for sharing useful knowledge

  • @chaisawatrattanadon4492
    @chaisawatrattanadon4492 6 месяцев назад

    Thank you for sharing your knowledge. You're code helped me a lot with my thesis

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Really? I am happy to hear that 😁

  • @hilda7823
    @hilda7823 6 месяцев назад

    hello sir, may I ask. I'm currently casting the membrane, but I'm having a problem. After I cast it and then put it in the coagulation bath, my membrane sticks to the glass plate. Is there a solution that I can do to prevent the membrane from sticking to the glass plate? thank you..

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      You should sink the casting membrane about 3 minute before you pick up your membrane. Did you let the membrane totally under coagulation bath in 3 minutes?

    • @hilda7823
      @hilda7823 6 месяцев назад

      @@rahmatsunarya yes, i even sink the membrane more than 3 minutes because it was still sticking to the glass plate. anw i am using cellulose acetate and NMP solvent to make the membrane

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Please tell me the detail composition your membrane solution at rahmatsunarya@gmail.com

    • @hilda7823
      @hilda7823 6 месяцев назад

      @@rahmatsunarya i've emailed you, thank you so much for helping me

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      I just answered your email. Kindly check

  • @AlperenSakar
    @AlperenSakar 6 месяцев назад

    Hi thanks for the video, it's a very basic question but s it distilled water in the bath you drop the glass? if it isn't, which liquid is it?

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      that's right. I used demin water

  • @ZainaKourach
    @ZainaKourach 6 месяцев назад

    hello sir, i need thé code of the parametrical study of this same situation do u havé it please?? is about study thé effect of different parametrs on the breakthrough curve, is in the article source u put in this video. can u help me please i havé a presentation next week and i am really struggling 😢

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Please get me at rahmatsunarya@gmail.com

  • @ZainaKourach
    @ZainaKourach 6 месяцев назад

    Hi, i like your videos they are very usuful, i have a question about the breackthrough curve of adsorption can u help me please? Please answer me as fast as u can, i have a presentation in two weeks and i struggle to solve the problem in matlab, i am a biginner. Thank u so much

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Hi If you have question, please tell me at rahmatsunarya@gmail.com thanks

    • @ZainaKourach
      @ZainaKourach 6 месяцев назад

      @@rahmatsunarya I sent you an email. Thank you so much

  • @LongTran-k5z
    @LongTran-k5z 6 месяцев назад

    Can you please check your email? I sent you a private message. Thank you.

  • @LongTran-k5z
    @LongTran-k5z 6 месяцев назад

    Hi, at 6:25, why T(j-1,i) not T(j,i). You explained at 2-1=1 but I don't understand why. As you specified, T(1,:)=28 so j=2 will result T(1,i)=28 =B(i).. I am so confused.

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      because of j starting from 2. in other hand we need as j=1, so, we put j-1.

  • @MathematicsVSA
    @MathematicsVSA 6 месяцев назад

    I have a code for my research problem.I am struggling to get a plot...can you help me. it's a fdm code.

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Fdm code? It's about PDE or ODE?

  • @Strix2023
    @Strix2023 6 месяцев назад

    Could you pass me those books?

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      I'm sorry. It's an illegal way

  • @SanleyGuerrier
    @SanleyGuerrier 6 месяцев назад

    Hello, this video is very helpful. I have a question, How would you write the boundary condition matrix A and B if there are nonconstant flux terms such as radiation and convection which depend on the length(t)? Thank you!

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Please let me know your case in my email

    • @SanleyGuerrier
      @SanleyGuerrier 6 месяцев назад

      ​@@rahmatsunaryaYes, I will. Thank you, sir.​

  • @velascomartinezeverdavid3660
    @velascomartinezeverdavid3660 6 месяцев назад

    Sorry, could you share me your script, please? I had problems with the funtion @fres

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      Surely, please get me in gmail 🙏🏻

  • @salimelmas123
    @salimelmas123 6 месяцев назад

    Very good video! How can i include a non-linear ecuation in a boundary condition ?

  • @stephenlee8275
    @stephenlee8275 6 месяцев назад

    Can Orthogonal Collocation method solve this problem with axial diffusion items?

    • @rahmatsunarya
      @rahmatsunarya 6 месяцев назад

      I think it can't be solved using orthogonal collocation method.

  • @Dehbozorgi.Chemical
    @Dehbozorgi.Chemical 6 месяцев назад

    Thanks this video is very good

  • @batoolahmad4024
    @batoolahmad4024 7 месяцев назад

    if I have a question about the sheet, can I contact you?

  • @rizkirisnaldie4258
    @rizkirisnaldie4258 7 месяцев назад

    Halo kak kenapa nilai Nt bernilai 101 dan nilai Nz 151 bagaimana cara mendapatkan kedua nilai tersebut?

    • @rahmatsunarya
      @rahmatsunarya 7 месяцев назад

      Halo. Itu bisa disesuaikan. Tidak harus segitu. Bole Nt= 50, Nz= 20. Nilainya bebas. Itu hanya menunjukkan pembagian range waktu dan jarak. Trims

    • @rizkirisnaldie4258
      @rizkirisnaldie4258 7 месяцев назад

      @@rahmatsunarya Peran Nt dan Nz pada program itu sebagai ap ya kak?

    • @rahmatsunarya
      @rahmatsunarya 7 месяцев назад

      Jika nilainya makin besar, makan hasilnya lebih akurat. Jika nilainya makin kecil, hasilnya tidak begitu akurat. Dan juga apabila nilainya besar tentu akan memakan waktu perhitungan yg lama.

    • @rizkirisnaldie4258
      @rizkirisnaldie4258 7 месяцев назад

      @@rahmatsunarya siap terimakasih kak

    • @rahmatsunarya
      @rahmatsunarya 7 месяцев назад

      Terima kasih kembali 😊

  • @rizkirisnaldie4258
    @rizkirisnaldie4258 7 месяцев назад

    Why Nt=101 and Nz=151 sir?

    • @rahmatsunarya
      @rahmatsunarya 7 месяцев назад

      It's a number for meshing time and space

  • @karthickarul2660
    @karthickarul2660 7 месяцев назад

    At 3.18 how are you doing ? Am not getting. Please explain

    • @rahmatsunarya
      @rahmatsunarya 7 месяцев назад

      Make a function, turn PDE to ODEs function

  • @RafaKant777
    @RafaKant777 7 месяцев назад

    Dear, just a question, what kind of Matlab License you need to upload these beautiful videos? Regards.