USER MANUAL 8500 SERIES DC ELECTRONIC LOADS Models 8500, 8502, 8510, 8512, 8514, 8518, 8520. Manufacture, and intended use of the instrument. B&K Precision assumes no liability for the customer’s failure to comply with these requirements. Verify that all safety precautions are taken. The B&K Precision DC Loads covered by this manual. Since 1951 B&K Precision has provided test and measurement instruments for engineering, electronic design, and education, including power supplies, oscilloscopes, signal generators, amongst others. The 8500 Programmable DC Electronic Load can be used for testing and evaluating a variety of DC power sources. Its wide operating range operating modes and excellent measurement accuracy makes the 8500 well-suited for characterizing DC Power supplies, DC-DC Converters, batteries, fuel cells and solar cells.
Appendix: Service and warranty information
SERVICE INFORMATION
Warranty Service:
Please go to the service and support section on our website
#. Return the product in the original packaging with proof of purchase to the address below. . Clearly state on the RMA
form the performance problem and return any leads, probes, connectors and accessories that you are using with the
device.
Non-Warranty Service:
Please go to the service and support section on our website
RMA #. Return the product in the original packaging to the address below. Clearly state on the RMA form the performance
problem and return any leads, probes, connectors and accessories that you are using with the device. Customers not on
open account must include payment in the form of a money order or credit card. For the most current repair charges
please refer to the service and support section on our website.
Return all merchandise to B&K Precision Corp. with prepaid shipping. The flat-rate repair charge for Non-Warranty Service
does not include return shipping. Return shipping to locations in North American is included for Warranty Service. For
overnight shipments and non-North American shipping fees please contact B&K Precision Corp.
B&K Precision Corp.
22820 Savi Ranch Parkway
Yorba Linda, CA 92887
714-921-9095
Include with the returned instrument your complete return shipping address, contact name, phone number and
description of problem.
LIMITED ONE-YEAR WARRANTY
B&K Precision Corp. warrants to the original purchaser that its products and the component parts thereof, will be free from
defects in workmanship and materials for a period of one year from date of purchase.
B&K Precision Corp. will, without charge, repair or replace, at its option, defective product or component parts. Returned
product must be accompanied by proof of the purchase date in the form of a sales receipt.
To help us better serve you, please complete the warranty registration for your new instrument via our website at
Exclusions: This warranty does not apply in the event of misuse or abuse of the product or as a result of
unauthorized alterations or repairs. The warranty is void if the serial number is altered, defaced or removed.
B&K Precision Corp. shall not be liable for any consequential damages, including without limitation damages resulting
from loss of use. Some states do not allow limitations of incidental or consequential damages. So the above limitation or
exclusion may not apply to you.
This warranty gives you specific rights and you may have other rights, which vary from state-to-state.
B&K Precision Corp.
Bk Precision 8500 Service Manual
22820 Savi Ranch Parkway
Yorba Linda, CA 92887
714-921-9095
8500 DC Load Series
Version: 030614
Page 75 of 77
23
This project is a result of numerous customer support calls and is an effort to better help our customers solve their test challenges quickly and effectively. For questions not addressed here or for more details about the instrument see B&K Precision
Requirements
Python 3
External Requirements
pySerial
Command Interface
The command interface of the BK8500 series uses a 26 Byte packet interface. A command is a single packet and each command either returns a command status response packet or a command specific packet.
Basic usage:import bk8500functionscreate a list of 26 bytes - cmd=[0]*26set the fields in the packet, the last of which is an 8-bit checksum - bk8500functions.csum(cmd) returns a checksum value.
More Information
Go to the 8500 Series Page for the user manual.
See the manual for details about specific commands.
Please submit a pull request or send a message to technical support to make changes.
Organization
Python
Within the Python folder there are examples of command sequences and a basic function library to simplify issuing commands.
bk8500functions.py
This is the 'library'. Extensions and improvements will likely happen here in the future. Today, this helps to create the 26-byte packet, calculate the checksum and print the returned values. Below is a typical example of using this set of functions. Normally the unit will be put into 'remote' mode before any other command is issued.
8500List.py uses bk8500functions.py and creates a list sequence in the load.
LabView
Bk Precision 8500 Series User Manual Ni
Within the LabView folder, there are some basic examples as well. These are written using the LabView driver written by B&K for this product series. For these drivers, download the 8500 LabView Driver located under the 'Docs & Software' tab.
Comments are closed.