Closed MassimoCimmino closed 2 years ago
Inclined boreholes are only implemented for the 'detailed'
solver, since there is no known 'similarities'
or 'equivalent'
methods for inclined boreholes.
The initial implementation seems to be working and compares well with Eskilson's results (I will update the issue with figures).
The integral of the FLS solution had to be split between the real and image parts of the solution to avoid overflow flow errors in the product erfc(a*s)*exp(b*s**2)
(see the code below). There could be a better implementation for this. It should be explored further before merging.
While testing the implementation I found that the 'detailed'
solver calculates the FLS between a borehole and itself in a for
loop, so it is called once per borehole. This could be done in one call for all boreholes at the same time. I will open a new issue to work on this.
Remaining tasks:
'similarities'
and 'equivalent'
implementations (The 'equivalent'
solver is moved to #209)This is now ready for review.
Closes #50.