Skip to content

Instantly share code, notes, and snippets.

View sdwfrost's full-sized avatar

Simon Frost sdwfrost

View GitHub Profile
@sdwfrost
sdwfrost / surrogates-example.ipynb
Created March 4, 2021 14:48
mogp example in Surrogates.jl
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdwfrost
sdwfrost / mogp-example.ipynb
Created March 4, 2021 14:47
mogp example in Python
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@sdwfrost
sdwfrost / gist:e40be35990bfde49c665fe5d1455ed94
Created December 2, 2020 19:38 — forked from alirezaahrabian/gist:4efca034ff242315a97252526c82d81e
Change Detection Using Volatility Filters
#LMS change Detector
function [state,h]=ChangeDetectionLMSShiftMultipleSensor1(x,WinSlow,WinFast,WinDesired,muBase)
%Slow Response to change, accurate in steady state
[m,n]=size(x);
if m>n
x=x';
end
[NumSensors,n]=size(x);
shift=300;
@sdwfrost
sdwfrost / ode_petri.jmd
Created July 13, 2020 23:23
Petri.jl version of SIR model demonstrating conversion to ODE
# Ordinary differential equation model using Petri.jl
Simon Frost (@sdwfrost), 2020-07-08
## Introduction
This implementation considers the SIR model as a Petri net, based on the example of the [documentation of `Petri.jl`](https://mehalter.github.io/Petri.jl/stable/usage/), which is then used to generate an ordinary differential equation model.
## Libraries
@sdwfrost
sdwfrost / sir_mtk.jl
Created June 15, 2020 21:24
MTK version of SIR model using rates
# Libraries
using ModelingToolkit
using OrdinaryDiffEq
# Define size of the system
nstates = 3 # S,I,R
nrates = 2 # infection, recovery
# Model specific parameters
@parameters β c γ S₀ I₀ R₀
@sdwfrost
sdwfrost / sir_mbp.jl
Last active June 12, 2020 00:13
Multivariate birth process parameterisation of an SIR model
# Libraries
using ModelingToolkit
using OrdinaryDiffEq
using LinearAlgebra: Diagonal
import Base: sqrt
# Utility function
function sqrt(x::Diagonal)
Base.sqrt.(x)
@sdwfrost
sdwfrost / sir_phydynR.Rmd
Created May 20, 2020 17:56
SIR model in phydynR
---
title: "SIR in phydynR"
author: "Simon Frost"
date: '`r Sys.Date()`'
output: github_document
---
```{r setup, include=FALSE}
library(simecol)
library(phydynR)
@sdwfrost
sdwfrost / README.md
Last active January 31, 2020 00:41
Branching process model of 2019nCoV spread

Branching process model of 2019nCoV spread

This is an attempt to reproduce Figure 1 from Imai et al. 2020, using code from Riou and Althaus (code here). I have included a Jupyter notebook (which includes the output), as well as RMarkdown and plain R files, generated using Jupytext.

Details missing from Imai et al. that I had to guess:

  1. The initial time (I took it to be 2019-12-01).
  2. The distribution of generation times (I took it to be gamma with standard deviation of 3.8).
  3. The summary curve is generated using the median of all cases at a given time (similarly with the 95 percentile range). The language in the figure legend is ambiguous, and could mean generating a median trajectory.
@sdwfrost
sdwfrost / sir.rs
Created November 18, 2019 22:53
Epidemiological simulation in Rust
#!/usr/bin/env run-cargo-script
//!
//! ```cargo
//! [dependencies]
//! time = "0.1.25"
//! float_extras = "0.1.1"
//! xorshift = "0.1"
//! ```
#![allow(non_snake_case)]
@sdwfrost
sdwfrost / sir.zig
Last active November 16, 2019 19:37
Epidemiological simulation in Zig
// zig build-exe sir.zig --release-fast --strip
const std = @import("std");
inline fn randbn(n: i64, p: f64, rng: *std.rand.Xoroshiro128) i64 {
const log_q: f64 = std.math.ln(1.000000 - p);
var x: i64 = i64(0);
var sum: f64 = 0.000000;
while (1 != 0) {
sum += std.math.ln(rng.random.float(f64))/@intToFloat(f64, n - x);
if (sum < log_q) break;