[docs]classOhmicConduction(ReactiveTransport):r""" A subclass of LinearTransport to simulate electron and ionic conduction. The 2 main roles of this subclass are to set the default property names and to implement a method for calculating the effective conductivity of the network. """def__init__(self,name='ohmic_?',**kwargs):super().__init__(name=name,**kwargs)self.settings._update(OhmicConductionSettings())