diff options
author | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-06-02 13:50:08 -0400 |
---|---|---|
committer | Eugeniy E. Mikhailov <evgmik@gmail.com> | 2022-06-02 13:50:08 -0400 |
commit | d702bb3329c7a9132ca5b2da3ea4813144ec85c2 (patch) | |
tree | 64e420e6f85bceb98101163c9880772ee0d62786 /qolab/hardware/power_supply/keysight_e3612a.py | |
parent | a59b1942a82a1da63e1e72c248996f571106a29a (diff) | |
download | qolab-d702bb3329c7a9132ca5b2da3ea4813144ec85c2.tar.gz qolab-d702bb3329c7a9132ca5b2da3ea4813144ec85c2.zip |
when tuning Iout do not mess with Ilimit setting (since it usually set for safety)
Diffstat (limited to 'qolab/hardware/power_supply/keysight_e3612a.py')
-rw-r--r-- | qolab/hardware/power_supply/keysight_e3612a.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qolab/hardware/power_supply/keysight_e3612a.py b/qolab/hardware/power_supply/keysight_e3612a.py index cb0b5de..6731caa 100644 --- a/qolab/hardware/power_supply/keysight_e3612a.py +++ b/qolab/hardware/power_supply/keysight_e3612a.py @@ -123,7 +123,7 @@ class KeysightE3612A(PowerSupplySCPI): this function will try tune Vlimit until the Idesired is reached. """ iDesired = val - self.setChanIlimit(chNum, val+currentHeadRoom) + # self.setChanIlimit(chNum, val+currentHeadRoom) # Here, we assume that hook up is already made, so we can estimate source resistance # So the protocol is the following: # find R -> calculate required Vout for the desired Idesired |