Book Review: The Vulgar Streak by Wyndham Lewis

I’ve been meaning to put my musings on the books I read on this site for a while. In most instances it will be in areas where I am not an expert.

First off, the title refers to common thread in a person’s character that evokes the common (aka vulgar), or working class. In this case, it refers to mannerisms in the protagonist’s behavior.  It does not, as I was expecting, refer to a habit of exploding into profanity-laced tirades by a character.

Continue reading

Introduction to Python 3 for nuclear engineers

In this lecture, we’ll discuss why python is good language to learn for scientific computing. We’ll also cover the use of strings in Python 3 as well as the topics of branching (if statements) as well as simple iteration with while loops.

Here’s a link to the lecture. For the iPython notebook source, click here.

I just don’t know man (Epistemic Uncertainty)

Yes, epistemic uncertainty (that is, uncertainty due to a lack of knowledge) is likely the biggest thorn in the side of a modeler/computational physicist/ computational engineer (I would make a bolder statement, but, at the risk of being redundant, I just don’t know man). One way of dealing with this is the concept of Probability Boxes. The basic idea is to treat aleatory uncertainties as distributional and epistemic as to be an interval. On the one hand, this is conservative because we have no assumptions about the underlying distribution, but the actual distribution is not likely to be completely flat.
Continue reading

Prediction and Calibration

In this post we’ll look at some actual experimental data (crazy, I know) and use simulation data from the code Hyades2D to try and produce calibrated results. The data is the very same used in Stripling, McClarren, et al., and we show how Gaussian process models can be used to make sense of simulation and experimental data.

Continue reading

Markov-Chain Monte Carlo

If you’re in the business of sampling from a distribution that you only know up to a constant normalization, Markov-Chain Monte Carlo (and the Metropolis Algorithm) are for you.  The Metropolis algorithm is name after a scientist, and not the adopted hometown of an illegal alien, but it can leap unruly distributions in a (burn-in + n) bound.  In particular, Bayes’ Theorem gives us an unnormalized distribution we would like to sample from.

Continue reading