UNPKG

@metacell/geppetto-meta-core

Version:

The core functionality of geppetto-meta to build and simulate neuroscience data and models.

73 lines (72 loc) 1.94 kB
/** * Client class use to augment a model with particles capabilities * * @module model/AParticlesCapability * @author Matteo Cantarelli */ export default { capabilityId: 'ParticlesCapability', watched: false, timeSeries: null, /** * Get value of quantity * * @command Variable.getTimeSeries() * @returns {String} Value of quantity */ getTimeSeries: function getTimeSeries() { if (!this.timeSeries) { var timeSeries = undefined; var initialValues = this.getVariable().getWrappedObj().initialValues; for (var i = 0; i < initialValues.length; i++) { if (initialValues[i].value.eClass === 'TimeSeries') { timeSeries = initialValues[i].value.value; } } return timeSeries; } return this.timeSeries; }, /** * Set the time series for the state variable * * @command Variable.setTimeSeries() * @returns {Object} The state variable */ setTimeSeries: function setTimeSeries(timeSeries) { this.timeSeries = timeSeries; return this; }, /** * Get the initial value for the state variable * * @command Variable.getInitialValue() * @returns {Object} The initial value of the state variable */ getInitialValue: function getInitialValue() { return this.getVariable().getWrappedObj().initialValues; }, /** * Get watched * * @command Variable.getWatched() * @returns {boolean} true if this variable is being watched */ isWatched: function isWatched() { // NOTE: this.watched is a flag added by this API / Capability return this.watched; }, /** * Set watched * * @command Variable.setWatched() * @param {Boolean} watched - Object with options attributes to initialize node */ setWatched: function setWatched(isWatched, updateServer) { if (updateServer == undefined) { updateServer = true; } this.watched = isWatched; return this; } };