-
Recent Posts
Recent Comments
- R.P. Churchill on TWSL Series 07: Discovery and Data Collection
- R.P. Churchill on A Simulationist’s Framework for Business Analysis: Round Two
- LN on A Simulationist’s Framework for Business Analysis: Round Two
- R.P. Churchill on Starting to Learn About the Java Memory Model
- R.P. Churchill on Multidimensional Arrays in Javascript
Categories
Meta
October 2025 M T W T F S S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
Category Archives: Tools and methods
Graph Project: Axes On Other Side Of Plot
Here I’ve modified the code to not only accept extra axes, but also to be able to place them on either side of the plot area. This is reflected in the location of the tick and axis labels relative to … Continue reading
Graph Project: Multiple Axes
Now that the axis objects have been split out from the main graph object it’s a simple matter to add in as many as you need, as seen in the image. This example shows parallel axes stacked side to side, … Continue reading
Graph Project: Splitting Axes Into Separate Objects
One of the problems with developing from a quick hack, as I have here, is that you sometimes have to take a step back and do some serious re-plumbing. In this case that means breaking things apart and defining axes … Continue reading
Graph Project: Automatically Generating Axis Labels
Up until not the graph object has required that the parameters governing the generation of axis tick labels be specified explicitly. However, it would be nice for the graph to be able to generate reasonable value labels on its own … Continue reading
Rules for Drawing Graph Elements, Especially Axes
Since I don’t have time to work through much code today I thought I’d take a step back and define the rules I’ve implemented–or will implement–that govern the construction of the different elements of the graph object I’ve been developing. … Continue reading
First Implementation of Logarithmic Scale On One Axis
I was able to get the x-axis drawn out in a logarithmic scale, get the plot drawn on the same scale, and do it in a somewhat modular fashion. It needs a few pixel-level tweaks still and to be replumbed … Continue reading
Testing the Thermodynamic Functions for Saturated Water As A Function of Pressure–Except…
I started working through the graphs of the various thermodynamic functions vs. pressure and recognized that the standard format wasn’t showing all of the detail contained in the fits across the different ranges of input pressure. If the plotable width … Continue reading
Testing the Thermodynamic Functions for Saturated Water As A Function of Temperature
Here are plots of the standard thermodynamic values for saturated water, all as a function of temperature. Tomorrow I’ll plot them all out as a function of pressure. I extended the range of each function below 32 degrees Fahrenheit to … Continue reading
Reverse Engineering Or… What Was It I Was Trying To Do There?
While continuing the process of turning the JavaScript graph widget into an object I found I needed to create labels of various kinds, which you see added in the examples below. I also wanted to test out some more of … Continue reading
Posted in Tools and methods
Tagged curve fitting, graph project, JavaScript, simulation, thermodynamics
Leave a comment
Migrating WordPress Databases To More Recent Versions
I’m going to interrupt my previous project with a note on how to migrate WordPress databases to more recent versions. It turns out that all of my sites were using version 5.1 of MySQL, support for which seems to have … Continue reading