Uses of Class
ca.nengo.model.SimulationException

Packages that use SimulationException
ca.nengo.model   
ca.nengo.model.impl   
ca.nengo.model.muscle.impl   
ca.nengo.model.nef   
ca.nengo.model.nef.impl   
ca.nengo.model.neuron   
ca.nengo.model.neuron.impl   
ca.nengo.sim   
ca.nengo.sim.impl   
ca.nengo.util   
ca.nengo.util.impl   
 

Uses of SimulationException in ca.nengo.model
 

Methods in ca.nengo.model that throw SimulationException
 TimeSeries Probeable.getHistory(java.lang.String stateName)
          Note that the units of TimeSeries' for a given state do not change over time (ie at different time steps).
 InstantaneousOutput Origin.getValues()
           
 void Node.run(float startTime, float endTime)
          Runs the Node (including all its components), updating internal state and outputs as needed.
 void Termination.setValues(InstantaneousOutput values)
           
 

Uses of SimulationException in ca.nengo.model.impl
 

Methods in ca.nengo.model.impl that throw SimulationException
 TimeSeries NetworkImpl.getHistory(java.lang.String stateName)
           
 TimeSeries FunctionInput.getHistory(java.lang.String stateName)
           
 TimeSeries AbstractEnsemble.getHistory(java.lang.String stateName)
           
 InstantaneousOutput NetworkImpl.OriginWrapper.getValues()
           
 InstantaneousOutput BasicOrigin.getValues()
           
 InstantaneousOutput ProbeableOrigin.getValues()
           
 InstantaneousOutput EnsembleOrigin.getValues()
           
 void AbstractNode.run(float startTime, float endTime)
          Does nothing.
 void PassthroughNode.run(float startTime, float endTime)
           
 void NetworkImpl.run(float startTime, float endTime)
           
 void AbstractEnsemble.run(float startTime, float endTime)
          Runs each neuron in the Ensemble.
 void BasicTermination.run(float startTime, float endTime)
          Runs the Termination, making a TimeSeries of output from this Termination available from getOutput().
 void LinearExponentialTermination.setValues(InstantaneousOutput values)
           
 void NetworkImpl.TerminationWrapper.setValues(InstantaneousOutput values)
           
 void BasicTermination.setValues(InstantaneousOutput values)
           
 void EnsembleTermination.setValues(InstantaneousOutput values)
           
 

Uses of SimulationException in ca.nengo.model.muscle.impl
 

Methods in ca.nengo.model.muscle.impl that throw SimulationException
 TimeSeries SkeletalMuscleImpl.getHistory(java.lang.String stateName)
           
 TimeSeries LinkSegmentModelImpl.getHistory(java.lang.String stateName)
           
 void SkeletalMuscleImpl.run(float startTime, float endTime)
           
 void HillMuscle.run(float startTime, float endTime)
           
 void LinkSegmentModelImpl.run(float startTime, float endTime)
           
 

Uses of SimulationException in ca.nengo.model.nef
 

Methods in ca.nengo.model.nef that throw SimulationException
 Origin DecodableEnsemble.addDecodedOrigin(java.lang.String name, Function[] functions, java.lang.String nodeOrigin, Network environment, Probe probe, float startTime, float endTime)
          Adds an Origin that corresponds to a decoding of the activities of Nodes in this Ensemble.
 Origin DecodableEnsemble.addDecodedOrigin(java.lang.String name, Function[] functions, java.lang.String nodeOrigin, Network environment, Probe probe, Termination termination, float[][] evalPoints, float transientTime)
          Adds an Origin that corresponds to a decoding of the activities of Nodes in this Ensemble.
 

Uses of SimulationException in ca.nengo.model.nef.impl
 

Methods in ca.nengo.model.nef.impl that throw SimulationException
 Origin DecodableEnsembleImpl.addDecodedOrigin(java.lang.String name, Function[] functions, java.lang.String nodeOrigin, Network environment, Probe probe, float startTime, float endTime)
           
 Origin DecodableEnsembleImpl.addDecodedOrigin(java.lang.String name, Function[] functions, java.lang.String nodeOrigin, Network environment, Probe probe, Termination termination, float[][] evalPoints, float transientTime)
           
protected  float[] NEFEnsembleImpl.getConstantOutput(int nodeIndex, float[][] evalPoints, java.lang.String origin)
           
 TimeSeries DecodedTermination.getHistory(java.lang.String stateName)
           
 TimeSeries DecodableEnsembleImpl.getHistory(java.lang.String stateName)
           
 TimeSeries NEFEnsembleImpl.getHistory(java.lang.String stateName)
           
 InstantaneousOutput DecodedOrigin.getValues()
           
 void DecodedOrigin.run(float[] state, float startTime, float endTime)
          Must be called at each time step after Nodes are run and before getValues().
 void DecodedTermination.run(float startTime, float endTime)
           
 void DecodableEnsembleImpl.run(float startTime, float endTime)
           
 void NEFEnsembleImpl.run(float startTime, float endTime)
           
 void DecodedTermination.setValues(InstantaneousOutput values)
           
 

Uses of SimulationException in ca.nengo.model.neuron
 

Methods in ca.nengo.model.neuron that throw SimulationException
 TimeSeries1D SynapticIntegrator.run(float startTime, float endTime)
          Runs the model for a given time interval.
 

Uses of SimulationException in ca.nengo.model.neuron.impl
 

Methods in ca.nengo.model.neuron.impl that throw SimulationException
 TimeSeries IzhikevichSpikeGenerator.getHistory(java.lang.String stateName)
           
 TimeSeries SpikingNeuron.getHistory(java.lang.String stateName)
          Available states include "I" (net current into SpikeGenerator) and the states of the SpikeGenerator.
 TimeSeries ALIFSpikeGenerator.getHistory(java.lang.String stateName)
           
 TimeSeries LIFSpikeGenerator.getHistory(java.lang.String stateName)
           
 TimeSeries DynamicalSystemSpikeGenerator.getHistory(java.lang.String stateName)
           
 void SpikeGeneratorOrigin.run(float[] times, float[] current)
           
 void SpikingNeuron.run(float startTime, float endTime)
           
 void PlasticExpandableSpikingNeuron.run(float startTime, float endTime)
           
 TimeSeries1D LinearSynapticIntegrator.run(float startTime, float endTime)
           
 

Uses of SimulationException in ca.nengo.sim
 

Methods in ca.nengo.sim that throw SimulationException
 Probe Simulator.addProbe(java.lang.String ensembleName, int neuronIndex, java.lang.String state, boolean record)
           
 Probe Simulator.addProbe(java.lang.String ensembleName, Probeable target, java.lang.String state, boolean record)
           
 Probe Simulator.addProbe(java.lang.String nodeName, java.lang.String state, boolean record)
           
 void Simulator.removeProbe(Probe probe)
           
 void Simulator.run(float startTime, float endTime, float stepSize)
          Runs the Network for the given time range.
 

Uses of SimulationException in ca.nengo.sim.impl
 

Methods in ca.nengo.sim.impl that throw SimulationException
 Probe LocalSimulator.addProbe(java.lang.String ensembleName, int neuronIndex, java.lang.String state, boolean record)
           
 Probe LocalSimulator.addProbe(java.lang.String ensembleName, Probeable target, java.lang.String state, boolean record)
           
 Probe LocalSimulator.addProbe(java.lang.String nodeName, java.lang.String state, boolean record)
           
 void LocalSimulator.removeProbe(Probe probe)
           
 void LocalSimulator.run(float startTime, float endTime, float stepSize)
           
 

Uses of SimulationException in ca.nengo.util
 

Methods in ca.nengo.util that throw SimulationException
 void Probe.connect(Probeable target, java.lang.String stateName, boolean record)
           
 void Probe.connect(java.lang.String ensembleName, Probeable target, java.lang.String stateName, boolean record)
           
 

Uses of SimulationException in ca.nengo.util.impl
 

Methods in ca.nengo.util.impl that throw SimulationException
 void ProbeImpl.connect(Probeable target, java.lang.String stateName, boolean record)
           
 void ProbeImpl.connect(java.lang.String ensembleName, Probeable target, java.lang.String stateName, boolean record)