Hi! I am trying to define the iv characteristics of a device. For the forward bias I have used the code :
for bias in numpy.linspace(0.,0.5,50)*Volt:
device_configuration.setCalculator(
calculator(electrode_voltages=(0.5*bias,-0.5*bias)),
initial_state=device_configuration)
For the reverse bias, will it be okay to just change the code to (electrode_voltages=(-0.5*bias,0.5*bias) ?