Recent content by ivanow

  1. I

    MATLAB How can I implement Newton raphson method in MATLAB for temperature modeling?

    i made it . i translated the entire code using differential equation solved whit a simple for where k was the size of time and if else iteration . now the problem is to implement Newton raphson method that in MATLAB is too difficult. can you give me some hints about Newton raphson method ...
  2. I

    MATLAB How can I implement Newton raphson method in MATLAB for temperature modeling?

    i write the entire code in MATLAB but i failed to calculed my temperature using different values of initial temperature. what tipe of iteration i need to use ?
  3. I

    MATLAB How can I implement Newton raphson method in MATLAB for temperature modeling?

    how to write this equations in fortran or matlab Energy(t) = Energy(t - dt) + (Solar_to_earth + IR_down - IR) * dt INIT Energy = Initial_temperature*Heat_capacity Solar_to_earth = Solar*(1-Atmospheric_absorption) IR_down = IR_atmosphere IR = Sigma*Temperature^4 * Seconds_per_year...