How to Integrate a Single ODE in F90 for Water Flow Simulation?

  • Thread starter Thread starter amberf90
  • Start date Start date
  • Tags Tags
    Integrate Ode
AI Thread Summary
The discussion revolves around challenges faced in simulating water flow in two dimensions using Fortran 90. The primary issue is with the dD/dt equation, where the Euler forward method leads to excessive water movement, necessitating fine time-steps that are computationally expensive. A suggestion was made to switch to an implicit integrator to allow for a gradual reduction in hydraulic head, thereby slowing the flow. The user attempted to implement two online subroutines, bsstep.f and ode.f, but encountered difficulties, particularly with passing necessary values from the main program. The conversation includes recommendations for using Runge Kutta 4 (RK4) as a potential solution, with notes on its semi-implicit nature and accuracy compared to simpler methods. The user plans to code the RK4 method to see if it resolves the issues.
amberf90
Messages
3
Reaction score
0
Hi all,

I've written a simulation of water flow in two dimensions in F90 but I'm having some trouble with it. Water flows from one cell to another using an equation for rate of change of depth and an algorithm for assigning flow direction.

The flow direction bit is fine but the dD/dt equation is giving me some trouble. I've tried an Euler forward method of integrating this equation through time but more water wants to move than is in the cell and I have to use a very fine time-step to allow the water to get where it wants to go, which is computationally expensive. A colleague suggested I adopt an implicit integrator as this will allow the hydraulic head (which depth is linked with) to reduce gradually, and presumably slow down the flow.

I've tried using two subroutines I found online; bsstep.f and ode.f but I can't manage to get either to work successfully. One of the problems is that the r.h.s includes values that need to be passed through from the main program. Also they talk about a system of ODEs but as far as I'm aware I only have 1. I'm not the best at maths sadly...

Does anybody have any ideas about simple ODE integrators, for one equation only, that aren't to difficult/complicated to use?

Thanks in advance...
 
Technology news on Phys.org
Thanks for the suggestion; I was really looking for an implicit solution though...
 
amberf90 said:
Thanks for the suggestion; I was really looking for an implicit solution though...
You could consider RK4 to be "semi-implicit", since it calculates 3 intermediate increments using feedback from the initial euler increment and the first 2 intermediate increments. RK4 is more accurate than a simple predictor - corrector method such as the euler - trapezoidal example in this wiki article:

wiki_predictor_corrector_method.htm

Note that repeating correction step will quickly converge to a specific value, but since it's based on trapezoidal rule, it's a linear aproximation, versus RK4's 4th order approximation. If you did 1 euler and 3 trapezoidal correction steps, the overhead would be similar to RK4, but the result would not be as accurate (you'd need a much smaller step size).
 
Last edited:
Thanks,

I'll code up the RK4 and see what happens!

A
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Back
Top