From 2fc530d2c49f490385b0423ff480de279e886f99 Mon Sep 17 00:00:00 2001 From: Arnaud Watlet <arnaud.watlet@umons.ac.be> Date: Tue, 26 Mar 2024 00:13:10 +0100 Subject: [PATCH] adds contact resistor board utils and example --- .dev/test_contact_resistance_board.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.dev/test_contact_resistance_board.py b/.dev/test_contact_resistance_board.py index 164b3674..915e2abf 100644 --- a/.dev/test_contact_resistance_board.py +++ b/.dev/test_contact_resistance_board.py @@ -10,6 +10,7 @@ k = OhmPi() # Set or load sequence sequence = np.array([np.array([1,2,3,4])+k for k in range(29)]) # [[1,2,3,4],[2,3,4,5]...] but can actually make other combinations of AB to increase number of contact resistance tested +sequence = np.vstack([sequence,np.array([[30,31,1,2],[31,32,2,3]])]) k.sequence = contact_resistance_test_board(sequence) # checks if sequence contains potential shortcut quads (AB odd odd or even even) # Run contact resistance check -- GitLab