{
	"Notes": "Notes fields replace commenting, which is not standard in JSON.",
	"Description": "This configuration demonstrates chemical reactions in the microscopic
		regime. We define a single subvolume so there is no diffusion. There is also
		no active actor; all molecules are generated via a 0th order chemical reaction.
		This file has no 2nd order reactions so it can be run in the microscopic regime.
		The default reaction rates result in an expected equilibrium value of 100 molecules
		in the reactor. This simulation with 100 repeats should take less than 10 seconds to
		execute on a personal computer.",
	"Output Filename": "accord_sample_reactor_microscopic",
	"Warning Override": false,
	"Simulation Control": {
		"Number of Repeats": 1,
		"Final Simulation Time": 1000,
		"Global Microscopic Time Step": 1,
		"Random Number Seed": 1,
		"Max Number of Progress Updates": 100
	},
	"Chemical Properties": {
		"Number of Molecule Types": 1,
		"Diffusion Coefficients": [1e-9],
		"Chemical Reaction Specification": [
			{							
				"Notes": "Creation. This reaction rate results in one molecule being created
					every second, on average (because reactor has volume 1e-12 m^3)",
				"Label": "Creation",
				"Is Reaction Reversible?": true,
				"Reverse Reaction Label": "Death",
				"Surface Reaction?": false,
				"Default Everywhere?": true,
				"Exception Regions": [],
				"Reactants": [0],
				"Products": [1],
				"Reaction Rate": 1e12			
			},
			{							
				"Notes": "Death. This reaction rate means that a molecule has an expected
					lifetime of 1/0.01 = 100 seconds.",
				"Label": "Death",
				"Is Reaction Reversible?": true,
				"Reverse Reaction Label": "Creation",
				"Surface Reaction?": false,
				"Default Everywhere?": true,
				"Exception Regions": [],
				"Reactants": [1],
				"Products": [0],
				"Reaction Rate": 0.01			
			}
		]
	},
	"Environment":	{
		"Subvolume Base Size": 1e-6,
		"Region Specification": [
			{
				"Notes": "Single microscopic region.",
				"Label": "A",
				"Parent Label": "",
				"Shape": "Rectangular Box",
				"Type": "Normal",
				"Anchor Coordinate": [0, 0, 0],
				"Integer Subvolume Size": 100,
				"Is Region Microscopic?": true,
				"Number of Subvolumes Per Dimension": [1, 1, 1]
			}
		],
		"Actor Specification": [
		{
				"Notes": "Observer",
				"Is Location Defined by Regions?": true,
				"List of Regions Defining Location": ["A"],
				"Is Actor Active?": false,
				"Start Time": 1e-10,
				"Is There Max Number of Actions?": false,
				"Is Actor Independent?": true,
				"Action Interval": 1,
				"Is Actor Activity Recorded?": true,
				"Is Time Recorded with Activity?": false,
				"Is Molecule Type Observed?": [true],
				"Is Molecule Position Observed?": [false]
		}
		]		
	}
}
