Contents - power supply
- declaration of conformity
- safety instructions
- safety messages
- warnings and cautions
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Table Of Contents
- Scope of Manual
- BOP General Specifications
- Local Control
- W BOP Power Supply, Outline Drawing
- rear view
- Features
- External Reference (Analog Control)
- Accessories
- Safety
- BOP Output Characteristics
- Unpacking and Inspection
- Rear Panel Connector Functions
- Trigger Port Pin Assignments
- RS232C PORT Input/Output Pin Assignments
- Parallel/Serial Protect In Port Pin Assignments
- Preliminary Operational Check
- IEEE 488 Port Input/Output Pin Assignments
- Installation
- Earth-Ground Configuration
- Earth Ground Connection Recommendations
- Grounding Network Configuration
- Load Connection Using Local Sensing
- Setup for Local Operation
- Setup for Remote Operation via GPIB
- Multiple Unit Configurations
- Parallel Configuration, Local Sensing, Typical
- Parallel Configuration, Remote Sensing, Typical
- Series Configuration, Local Sensing, Typical
- Series Configuration, Remote Sensing, Typical
- Multiple Unit Protection
- Configuring Parallel, Series, 2 X 2 or 3 X 2 combinations
- Powering up Series/Parallel Combinations
- Master Power Up Screen
- Operating Instructions for Multiple Unit Combinations
- Restoring a Unit to Standalone Operation
- x 2 (3 Series X 2 Parallel) Configuration, Local Sensing, Typical
- General
- Front Panel Keypad
- LCD and Power-up Screen Description
- Power-up Screen Showing Graphic Meters
- Turning the Power Supply On
- How to Access the menus
- How to Modify a Parameter
- How to Access a Password Protected Menu
- Operator Convenience Functions (Display Menu)
- Displaying Programmed Settings in RemoTe Mode
- Enabling/Disabling Audible Beeps
- Local Password Protection at Power-up
- Voltage and Current Parameter Definitions
- Selecting Bipolar/Independent Protection Limits
- General Setup Menu
- Understanding Voltage and Current Protect Limits
- Changing Maximum Accepted Voltage or Current (Main Channel Software Limits)
- Changing Maximum/Minimum Protection Software-controlled Limits
- External Limits
- Power Supply Behavior when Output is set to OFF
- Battery Charging/Discharging using the BOP
- Battery Operations using Current Mode
- Changing the Default Power up Settings
- Storing/Recalling Power Supply Output Settings
- Save/recall menu
- Viewing Saved Settings
- Copying Previously Saved settings to a New Location
- Understanding How Waveforms Are Generated
- Sine, Triangle and Ramp Waveform Frequency vs. Points
- Waveform Specifications
- Modifying Previously Stored Waveforms
- Waveform Segment Details Menu
- Using Segments to Build a Waveform
- Sample Waveform
- Copying a Waveform
- Reset
- Error Message Explanations
- Analog Remote Mode Programming
- Remote Standby
- Voltage/Current Mode Control
- Variable Gain Using External Reference Level
- External Protection Limits
- Using Both Local/Digital and External Protection Limits
- Operating Features Available only by Remote Commands
- Making Sure the Previous Command is Complete
- Remote Mode Setup
- GPIB Port Setup
- Configure Device Clear (DCL) Control
- Establish communication language
- Trigger Operation Differences in BIT 4886
- BOP VISA Instrument driver
- RS232-C Operation
- RS 232 Implementation
- XON XOFF Method
- SCPI Programming
- Common Commands/Queries
- Tree Diagram of SCPI Commands Used with BOP Power Supply
- MEASure Subsystem
- SOURce:]VOLTage and [SOURce:]CURRent Subsystems
- Program Message Structure
- Keyword
- Data Separator
- Program Message Syntax Summary
- Status Reporting
- Status Reporting Structure
- QUEStionable Status Register
- Typical Example Of BOP Power Supply Program Using SCPI Commands
- Test Equipment Requirements
- Suggested Sense Resistors
- Calibration using Remote SCPI commands via GPIB or RS 232 Interface
- Calibration Procedure using SCPI Commands
- Calibration Setup for Current Mode
- Calibration Using Front Panel Keypad in Local Mode
- Main Calibration Screen
- Calibration Procedure using Local Mode
- Calibration Storage
- A.2 *CLS — Clear Status Command
- A.4 *ESE? — Standard Event Status Enable Query
- A.8 *OPC? — Operation Complete Query
- A.9 *OPT? — Options Query
- A.12 *SAV — Save Command
- A.16 *TRG — Trigger Command
- B.1 Introduction
- B.2 Numerical Values
- B-1 Programming the Output
- ent [:DC]? Query
- ut [:STAT e ] Command
- ut :CONT rol Command
- Query
- B-4 Setting Limits
- ce :]CURR ent :MODe? Query
- el ]:PROT ect :MODE Command
- el ]:PROT ect :LIM it [:BOTH]? Query
- ce :]FUNC tion :MODE? Query
- B-5 Using LIST Commands and Queries
- B-2 List Data Table
- APPL y :SWE ep ? Query
- B-6 Using List:WAIT Commands to Control Generation of a Waveform Measured by Multiple External Devices using a Single External Pulse
- VOLT age Command
- ce :]LIST:SET:WAIT? QUERY
- Command
- ce :]LIST:WAIT:LEDGe Command
- ce :]VOLT age :MODE? Query
- B-9 Using PROT:LIM:POS and PROT:LIM:POS Commands to Set Asymmetrical Limits
- itive ? Query
- it :POS itive ? Query
- B-4 Questionable Event Register, Questionable Condition Register and Questionable Condition Enable Register Bits
- B-10 Using Status Commands and Queries
- B.122 SYST em :BEEP Command
- B.130 SYSTem:COMMunication:SERial:PACE? Query
- CEN able Command
- B-12 Using System Commands and Queries
- B-5 Error Messages
- BOP-1K
|
3-46 BOP HIPWR 111315FIGURE 3-16. PROGRAMMING EXAMPLE TO VERIFY PREVIOUS COMMAND HAS COMPLETED3.5.3 REMOTE MODE SETUPWhen either of the two interface ports are in use, PAR’s 3.5.3.1 (GPIB), 3.5.3.2 and (RS 232)describe how to configure the port to meet the user’s requirements.The BOP can be substituted for a standard BOP that is currently being used with one of Kepco’sBIT cards, however there are differences in operation (see PAR. 3.5.3.4 and 3.5.3.5.The SYSTem:SET and SYSTem:LANGuage commands can be used to configure the BOP tooperate in a manner similar to earlier models of Kepco’s 100W, 200W and 400W BOP powersupplies.#include #include #include #include /*Overhead for the use of a NATIONAL INSTRUMENTS gpib interface */int unit_desc; // handle for the national instruments controllerint GPIbus=0; // GPIB card 0int adr=6; // Power Supply addresschar status_byte; // status byte from the power supply#define MAV 0x10 /* bit 4 of the status byte is the Message AVailable bit by 488.2 specification *//* Function Send_with_waitINPUT: string to be sent to power supplyDescription: adds the *OPC? query and performs serial polls to wait for the command to be completed.*/int Send_with_wait(char *command);char snd[501]; // data to be sent to the power supplychar rcv [10]; // data from power supplyint j;sprintf(snd,”%s;:*OPC?,command); // Add *OPC? to the command// so there is a response from the// power supplySend(GPIbus, adr, snd, strlen(snd), 2); // Send the data to the power supplyfor (j=0;j<500;j++)( // loop until ready (5 seconds max)Delay(.05); // Wait for command to completeibrsp(unit_desc,&status_byte); // get status byteif ((status_byte& 0x10) ==0x10) break;) // by looking for data in stringReceive (GPIbus, adr, rev, rev_buf_size,10); // so the error queue will not receive a 410 error}main( // test code to show operation of function.unit_desc=ibdev(GPIbus,adr,adr/256,T100ms,1,0x40a);Delay(.005);Send (GPIbus,adr,”VOLT 10;curr .01”,sizeof(“VOLT 10;curr .01”),NLEND;Send_with_wait(“*SAV 10”);}
PreviousNext |