I don't know what you've feed TINA, but:
The three divider networks (R10/R12, R9/R13, and R11/R14) are all in parallel for a combined resistance (call it Rp) of Rp = 12.5K
That creates a main divider of R19 and Rp (10K + 12.5K) with a ratio = 12.5/(12.5+10) = 0.555
That's the VREG input (the node you've labeled "6.1V", which it isn't)
VREG_IN = CART_BATTERY x 0.555
Code:
CART_BATTERY VREG_IN
48V 48V x 0.555 = 26.6V
36V 36V x 0.555 = 20.0V
24V 24V x 0.555 = 13.3V
Since the max voltage into the LM78L05 is 30V, you're ok there.
The problem is, the input to the regulator is through a 10K resistor/divider.
The divider limits the max current into the LM78L05, and you can't get more out of it than what goes into it:
Code:
CART_BATTERY Divider Current
48V 48V/(12.5K+10K) = 2.1mA
36V 36V/(12.5K+10K) = 1.6mA
24V 24V/(12.5K+10K) = 1.1mA
That's not going to work.
Even if it did, if you put 26.6V into the LM78L05 it'll fry.
Let's say you want 100mA out of the regulator:
Code:
Pd = (VIN - VOUT) x IOUT
= (26.6 - 5) x 100mA
= 2.16W
A TO-92 package has something like a 150degC/W temp coefficient, so that's a rise of degC = 150 x 2.16 = 324 degC!!!!
I'm not even going to bother with the rest of it...