The USB on my Axpert shows up on my Mac as composite device.
What's the PID&VID of the usb device?
South Africa’s biggest forum. Discuss, discover, and connect with thousands of members.
The USB on my Axpert shows up on my Mac as composite device.
Thanks, then 9x300W will be (very tempted to use the roof surface to the max) but 12 x 250W will be a better choice.
Cheers
They've also mentioned and referred to all the options discussed in this thread already, but as discussed here, all of the proposed connection options were flawed in some or other way. I've created an account in that forum and I'm just waiting for approval, then I'll post a comment in that thread and see if we can get a proper solution to the problem.
The Neutral In to Neutral Out bond, on the inverter, still looks like the most promising option.
Sort of, yes. Unless I missed it being done somewhere, all the tests have been done by switching off the main double pole breaker to try simulating loadshedding.Isn't this exactly what was discussed after post #686 ??
http://mybroadband.co.za/vb/showthr...-invertors?p=15875204&viewfull=1#post15875204
On a completely separate note:
I've created a Ruby library for the Axpert (Ruby = works on all OSs). It works well but I just want to create a CLI component for the library before I release it.
I just ran a quick test on my setup. With Eskom on the inverter output voltages are as follows: L-N = 226V, L-E = 226V, N-E = 0.3V. This shows me that my earth and neutral are correctly bonded at the main supply.
Two scenarios now:
1. Main breaker on the supply DB trips. This is a double pole breaker, so both live and neutral are disconnected. L-N = 230V, L-E = 120V, N-E = 110V. This shows that my neutral is no longer bonded to earth.
2. Simulated grid failure. My municipal supply is via a single pole circuit breaker so the incoming neutral remains connected. L-N = 230V, L-E = 230V, N-E = 0.3V.
So it would seem that the only time the earth/neutral bond is lost is in the event of a local main trip. My supply to the inverter is via a single pole CB, so if that trips the bond is still there.
During load shedding there is no trip or disconnection of either the incoming live or neutral and in this case the earth/neutral bond is still there.
Could someone else do, or has someone else done a similar test and what were the measurements?
The issue here is more regarding compliance with SANS than with safety. In terms of safety, it is completely correct. In terms of compliance it isn't.That is exactly what is expected. Since your main breaker disconnects L and N, you will loose the N-E bond before the main breaker when it trips. You have one of two options to resolve that issue:
1) Use a single pole main breaker which only disconnects Live
2) Connect the Neutral feeding the inverter to Neutral before the main breaker.
The issue here is more regarding compliance with SANS than with safety. In terms of safety, it is completely correct. In terms of compliance it isn't.
Why is it not in compliance with SANS? Will you please explain.
SANS states:
7.12.3.1.3 The supply from each unit which supplies the installation or part of the installation, shall be switched by means of a switch that breaks all live conductors operating substantially together (see annex S), to disconnect the earthed neutral point from the installation neutral when the alternative supply is not connected (see also 6.1.6).
1. Using a single pole circuit breaker as feeder contravenes this as the neutral is not switched.
2. Joining the neutral from before the main switch to the after the inverter means the neutral is not switched.
Since this amendment was made to SANS 10142 (in 2009 I think) it has been an ongoing problem, particularly with automatic transfer switches on 3-phase standby generator plants. Here you have an even bigger problem in that you can create 400V single phase when you switch the neutral. This has been raised with SANS and this clause is apparently under review. For now, we continue with keeping the neutral unswitched and not split as per SANS 10142.
But then again, the last line of the SANS spec might be key - "when the alternative supply not connected". The inverter is permanently connected and always on, whether it's supplying from batteries or not.![]()
I have an interesting scenario, which I hope someone can shed some light on.
The installation is totall off-grid, on a plot - i.e. no eskom for backup. There's no cables to the street, nor were the any cables in the house to begin with. There's a 5Kva Axpert + 6x 250W solar panels + 48V battery bank. A new ACDC prewired DB board was fitted and plugs and lights installed (surface mount), and an earth spike put into the ground outside. The problem is, the Earth Leakage doesn't trip (I have an earth leakage tester). Upon inspection, there's no earth wire connected to the Earth Leakage (I think it should have gone to the neutral?), though I'm not sure the neutral and earth should be connected.
The question is, what do I need todo to get the earth to work properly?
I have an interesting scenario, which I hope someone can shed some light on.
The installation is totall off-grid, on a plot - i.e. no eskom for backup. There's no cables to the street, nor were the any cables in the house to begin with. There's a 5Kva Axpert + 6x 250W solar panels + 48V battery bank. A new ACDC prewired DB board was fitted and plugs and lights installed (surface mount), and an earth spike put into the ground outside. The problem is, the Earth Leakage doesn't trip (I have an earth leakage tester). Upon inspection, there's no earth wire connected to the Earth Leakage (I think it should have gone to the neutral?), though I'm not sure the neutral and earth should be connected.
The question is, what do I need todo to get the earth to work properly?
The simple solution is to not split the neutral according to the SANS spec. That way, in all scenarios, and IMO, you have a safe installation. Which is what you want.There must be a simple solution to this. These inverters are installed daily - how are they connected, or are they simply not connected safely and/or complying to SANS?
The simple solution is to not split the neutral according to the SANS spec. That way, in all scenarios, and IMO, you have a safe installation. Which is what you want.
Just for clarity. Are you referring to the Neutral In to Neutral Out bond?
gem install serialport # may require sudo
gem install axpert_rs232 #may require sudo
require 'serialport'
require 'axpert_rs232'
# => Set your serial port location, ls /dev/ and search for something that makes sense
serial = SerialPort.new('/dev/tty.usbserial', 2400, 8, 1, SerialPort::NONE)
# => Show available commands
AxpertCommands.constants
# => Some current device status info
AxpertCommands::DEVICE_STATUS.issue_command(serial)
# => Some current device rating info
AxpertCommands::DEVICE_RATING.issue_command(serial)
# => Set battery type to user agm
AxpertCommands::SET_BATTERY_TYPE.issue_command(serial, :agm)