Dear community members,
is it possible to monitor the 3 phase mains voltage as well as the voltage of the DC Bus of the ACOPOS drive in Automation Studio while using the Test page of the Axis?
This could for example be possible by adding the respective parameters in the Watch window but I don’t know if this functionality is supported.
Thank you in advance.
Equipment used:
- Automation Studio 3.0.90
- ACOPOS 8V1045.00-2 Rev. Q0
Hello Spyros,
in the Test window only values that are available on the PLC can be added to the Watch pane, the DC bus voltage is only available on the drive.
The 3 phase main voltage value is not available on ACOPOS 8V10xx.xx-x devices only on newer, like ACOPOSmulti power supplys.
In the Test window all readable values on the drive can be read the following way:
- Enter ParID number (e.g. UDC_ACT … 298 … actual voltage of the DC bus)
- Activate read command
- The value is displayed in the Watch pane
You can use FUB MC_BR_ReadParID to read PARID 298.
AH: ACP10 - read parid
This only reads it once you perform the ‘Execute’ command.
If you’d like to read it cyclically, you’ll need:
AH: ACP10 - MC_BR_CyclicRead
Where you set ‘enable’ as soon as the drive is initialized and it will give you the PARID value every cycle.
I understand, thank you both for your prompt replies and support!