Drawings reference TBP0064A for the expansion tank properties but no information regarding the dimensions of the tank is given. All that the drawing notes is that the capacity of the expansion tank is 20 L.
import numpy as np
metersPerInch = 25.4 / 1000
litersPerCubicMeter = 1000
# All units in SI unless otherwise stated in variable names.
timePoint0 = "Jul 12"
timePoint1 = "Jul 25"
timePoint2 = "Aug 03"
waterLevel0 = 0.375
waterLevel1 = 0.328
waterLevel2 = 0.222
# Use external dimensions of the expansion tank to gauge internal volume.
tankDiameter = 12 * metersPerInch # Measured tank outter diameter to be 1'.
tankHeight = 18 * metersPerInch # Measured tank height to be 1.5'.
tankCrossSectionArea = np.pi * tankDiameter**2 / 4
totalLeakedAmount = (waterLevel0 - waterLevel2) * tankCrossSectionArea
totalLeakedAmountLiters = totalLeakedAmount * litersPerCubicMeter
print(f"The total amount leaked from July 12 is {totalLeakedAmountLiters} L.\n")
peakLeakRateTimeDifferenceDays = 9 # from July 25 to Aug 03.
peakLeakRatePerDay = (waterLevel1 - waterLevel2) * tankCrossSectionArea / peakLeakRateTimeDifferenceDays
peakLeakRateLitersPerDay = peakLeakRatePerDay * litersPerCubicMeter
print(f"The peak leak rate prior to the trip is {peakLeakRateLitersPerDay} L/day.\n")
The total amount leaked from July 12 is 11.163779179476068 L. The peak leak rate prior to the trip is 0.8593758845493561 L/day.
print(f"Peak leak rate is equivalent to {1/24/60*1000} ml/min.\n")
Peak leak rate is equivalent to 0.6944444444444443 ml/min.
Notes on sudden dive in the flowrate:
See image below for the expansion tank level at T2(red) and T1(green) from 2020-2023
The resin in T2 was last exchanged in 2021 so the sudden dip we saw in 2023 Jul-Aug is an anomaly.
The main thing that changed with the cooling system this year was the valve replacement. This creates potential failure points in the newly joined valves as well as in the introduction of air into the drained parts of the cooling system.
The same is true for T1, we don't see any behavior where the water level suddenly nosedives down.
The fact that vacuum at BL1A remains nominal means that if there is a leak, it would have occurred outside of the vacuum volume (i.e. at the cooling package).