10 ASSIGN @Ps TO 705

20 OUTPUT @Ps;’’VSET?1’’

30 ENTER @Ps;Vsl

40 OUTPUT @Ps;"ISET?1"

50 ENTER @Ps;Isl

60 PRINT ’’VOLTAGE SETTING OF OUTPUT #1 = ";Vsl

70 PRINT "CURRENT LIMIT SETTING OF OUTPUT #1 = ";Isl 80 END

Line 10: Assigns the I/O pathname to the power supply.

Line 20,30: Queries the supply for output 1’s voltage setting. You cannot string multiple queries together in a single device command because the power supply can only return the most recently queried data.

Line 40,50: Queries the supply for output 1’s current limit.

Line 60,70: Prints the results of the queries on the screen.

Programming Power Supply Registers

Present Status

The power supply makes available several forms of status information. Chapter 5 discusses the different registers and their functions. The present status register contains continuously updated information. The following example shows how to query bit position 0 of output 1’s status register to see if output 1 is in CV mode. In this example, the program references the function as a variable in a conditional execution statement. Note that instead of printing a message, line 30 could be used to branch to another part of the program in the event that the supply is in CV mode.

10 ASSIGN @Ps TO 705

20 COM /Ps/ @Ps

30 IF FNCv _ mode THEN

40 PRINT "OUTPUT 1 IS IN CV MODE"

50 END IF

60END

70!

80!

90DEF FNCv _ mode

100COM /Ps/ @Ps

110OUTPUT @Ps;’’STS?1"

120ENTER @Ps;Sts

130RETURN BIT(Sts,0)

140FNEND

Line 10: Assigns the I/O path name to the power supply.

Line 20: Declares a common block for the I/O path name. The COM statement must be used for the @Ps variable to preserve its value in the function subprogram.

Line 30,40,50: If FNCv _ mode is true, print the message.

Line 90: Defines the Cv _ mode function.

Line 100: Brings in the common block for the I/O pathname.

Line 110,120: Reads the present status of output 1 into the variable Sts.

Line 130: Returns the value of bit position 0 of Sts.

Programming with a Series 200/300 Computer 105

Page 105
Image 105
Agilent Technologies 6628A Programming Power Supply Registers, Present Status, Print Output 1 is in CV Mode END if, Fnend

6629A, 6625A, 6626A, 6628A specifications

Agilent Technologies, a recognized leader in electronic test and measurement solutions, has developed a series of precision power supplies ideal for a variety of applications in both research and industry. The Agilent 6628A, 6626A, 6625A, and 6629A are part of the Agilent 6000 series and stand out due to their innovative technologies and robust functionalities.

The Agilent 6628A is a triple-output power supply, featuring two 0 to 20 V outputs capable of delivering up to 3 A each, along with a 5 V output that can supply 5 A. This combination is perfect for supplying power to devices that require multiple supply voltages simultaneously, making it an excellent choice for testing and development purposes.

The Agilent 6626A, on the other hand, offers dual output capabilities with higher specifications. Each of its outputs can be adjusted from 0 to 25 V and delivers up to 3 A, providing enhanced flexibility for designers and engineers working with various devices. Additionally, the 6626A's compact size and lightweight design make it easy to integrate into test setups without occupying excessive space.

For applications that require comprehensive monitoring, the Agilent 6625A provides a unique solution with its built-in digital voltmeter (DVM). This power supply comes with two 0 to 25 V outputs, both capable of 3 A. The integrated DVM allows real-time measurement and displays voltage and current values, ensuring accurate readings during experimentation and testing.

Lastly, the Agilent 6629A is designed for high-performance applications, providing up to four outputs, including two adjustable outputs that can be set between 0 to 35 V and deliver 5 A each. This model is particularly suited for environments where multiple devices need to be powered simultaneously with varying voltage requirements.

All four models come equipped with key features including ease of programming, precision regulation, and superior load transient response. They employ advanced technologies like low-noise operation and excellent line regulation, ensuring stable performance under varying load conditions. Additionally, safety features such as overvoltage protection, current limiting, and rapid recovery from overloads guarantee reliable operation.

In summary, Agilent's 6628A, 6626A, 6625A, and 6629A power supplies provide versatile, precise, and reliable solutions for all electronic testing needs. Their characteristics and dedicated functionalities make them indispensable tools for engineers, researchers, and developers across numerous fields. Whether it's for prototyping, testing, or production, these power supplies deliver the quality and performance that professionals expect from Agilent Technologies.