I'm trying to set the initial Calcium concentration for this model with no luck.
I've tried
self.model_params = {'tau_m': 10.0, # membrane time constant (ms)
...
'Ca': 0.1 #initial calcium concentration
}
This method doesn't throw an exception but it also doesn't change the initial
calcium concentration.
I've also tried self.nodes_e.set(Ca=0.1) which throws an exception
nest.lib.hl_api_exceptions.NESTErrors.DictError: DictError in SLI function
SetStatus_id: Unused dictionary items: Ca
Any suggestions?