argParser.add_argument('--power_down',action='store_true',default=False,help="Just power down")
argParser.add_argument('--ip',action='store',default="192.168.2.3",help="IP address of PSU to power cycle")
argParser.add_argument('--ch',action='store',default="ch1,ch2",help="Channels of PSU to power cycle")
argParser.add_argument('--ch',action='store',default="ch1,ch2,ch3",help="Channels of PSU to power cycle, can set by comma seperated value, ex: ch1,ch2")
args=argParser.parse_args()
assertargs.chin"ch1,ch2,ch3","Only channel 1 and channel 2 are available."
assertargs.chin"ch1,ch2,ch3","Only channel 1, channel 2, and channel 3 are available."