Pavan Inguva

Results 3 issues of Pavan Inguva

Hi! I am playing around with the VanLeer Convection Scheme for 1d and 2d linear advection: 1D: df/dt + u*df/dx = 0, 2D: df/dt + u*df/dx + v*df/dy=0. Using the...

terms

Hi, I am trying to implement the Laplace equation in 2D as follows: d2f/dx2 + d2f/dy2 = 0, with Dirichlet boundary conditions: f(x,1.0) = -1.0, f(0.0,y) = f(1.0,y) = f(x,0.0)...

Hi! Cool package! I wrote a custom function and was trying to estimate the number of flops during execution ``` from pypapi import papi_high from pypapi import events as papi_events...