<< Click to Display Table of Contents >> Navigation: Explain™ Control Language > Library Routines > Signal classes > class VRAMP > VRAMP.New() |
Create a new VRAMP signal generator.
A given Vramp object can be used by more than one curve but can be used by only one curve at a time.
The following code fragment is an example of the use of a VRAMP object:
Vramp = VRAMP.New(...)
Pstat.SetSignal(Vramp)
Pstat.InitSignal()
Pstat.SetCell(CellOn)
Cpiv = CPIV.New("CURVE", Pstat)
Cpiv.Run()
Cpiv.Printl()
...
Vramp = VRAMP.New(Tag, Pstat, VInit, VFinal, ScanRate, SampleTime)
Tag |
STRING |
Object Tag. |
Pstat |
PSTATCLASS |
Potentiostat that will use the signal. |
VInit |
REAL |
Initial value in volts. |
VFinal |
REAL |
Final value in volts. |
ScanRate |
REAL |
Scan rate in volts/second. |
SampleTime |
REAL |
Time between data-acquisition steps. |
Vramp |
VRAMP |
The object created. |