lanl / dfnWorks

dfnWorks is a parallelized computational suite to generate three-dimensional discrete fracture networks (DFN) and simulate flow and transport. If you download the software please fill out our interest form to stay up to date on releases https://goo.gl/forms/VE39oKsyp4LVC6Gj2 and join our google group https://groups.google.com/d/forum/dfnworks-users . Precompiled Docker Container https://hub.docker.com/r/ees16/dfnworks
https://dfnworks.lanl.gov/
Other
73 stars 42 forks source link

well/fractures intersections #69

Open jakubriha85 opened 9 months ago

jakubriha85 commented 9 months ago

In the well package, the intersections of well and fractures are probably not computed and/or output correctly. See https://groups.google.com/g/dfnworks-users/c/mtKKfQj2HR4 for further details.

hymanjd commented 9 months ago

Hi Jakub,

There is a typo in your driver script on line 50. You need to include the f string indicator before the {src_path} It reads now

vertical_well = {"name": 'vertical', "filename": "{src_path}/well.dat","r":1}

is should be

vertical_well = {"name": 'vertical', "filename": f"{src_path}/well.dat","r":1}

Sorry that it took me so long to find this.

I ran the scripts and I still get the error. I'll see what I can do to sort that out tomorrow.

Jeffrey