Planning a Birding Route in Seattle

Lake Hills Greenbelt red-breasted sapsucker Marymoor Park (this is the only 1 that has a monthly sightings table, so all listed species are those found in Sept.) California quail black swift Vaux’s swift red-breasted sapsucker California scrub-jay Totem Lake California quail Vaux’s swift black swift red-breasted sapsucker Juanita Bay Park black swift Vaux’s swift Bob […]

Continue reading..Planning a Birding Route in Seattle

rk4 vs. lsoda Solver Specified in Method

It turns out that the solver really was the issue. Running an ODE w/default “lsoda” produces nothing, whereas running w/rk4 at least produces…something. I’m sure it’s not correct, though, at the very least because the delays aren’t properly defined. Now to try to simplify the model a little to better understand what’s going on.

Continue reading..rk4 vs. lsoda Solver Specified in Method

Classical Runge-Kutta 4th Order Integration

I’ve been using the “rk4” solver, with luck, to solve the system of ODE’s translated from Stella. The original authors of the translation script used this setting, though I’m not entirely sure what it does. Is this the same type of solver that Stella uses? Looking back at the doc, I have flashbacks to my […]

Continue reading..Classical Runge-Kutta 4th Order Integration

Using dede() from the deSolve package in R

The problem is, it seems the delay slows things down a lot. I found out the reason is because the lag variables calculated in dede() during integration indeed are calculating the lags of all the state variables, and there’s no way around it. I’m curious if the lag() R function would work while it was […]

Continue reading..Using dede() from the deSolve package in R

Google Earth Engine: GIS of the Future!

This is so nuts to me: one of my supervisors introduced me to Google Earth Engine, and we’ve been playing with it for our spatial analyses. It’s imagery/spatial analysis in the cloud, with the tagline “letting scientists focus on science instead of downloading and managing data.” Well, Google, you have my attention. The intro video […]

Continue reading..Google Earth Engine: GIS of the Future!

Using ode() from the deSolve Package in R

My latest adventures have revolved around solving ordinary differential equations (ODE’s), for the most part, in R. To do this, I’ve been using the ode() function from the deSolve package. In the next step of what I’m trying to do, though, it seems I need dede() for delayed differential equations. From what I understand, you […]

Continue reading..Using ode() from the deSolve Package in R

Part 2: Fixing the Stella R Python Script

Background Welcome to my continued adventures in translating Stella models to R. To catch you up in case you haven’t been following along (i.e. a high probability that this applies to you) I’ve been retooling the StellaR.py script that I found on the internet. The latest version on the linked site is buggy and old, […]

Continue reading..Part 2: Fixing the Stella R Python Script