|
|
|
|
|
by tfigment
5075 days ago
|
|
I did something far less sophisticated many years ago for my undergraduate degree. Basically a Navier-Stokes solver using finite-differencing techniques to model gas particulates in an enclosed area. This was to support a larger framework to pinpoint things like electrical fires using sensors in something like the space shuttle. Originally written in C++ but ported to Fortran 90 as my grad student couldn't read C++ (or maybe it was my C++). The technique here which I guess is effectively finite element was far more difficult to implement at the time and reserved for professional tools like Fluent (my company today uses Fluent for this stuff today though not me directly and I'm sure we pay quite a bit for it.) I browsed through the code and it was far better than anything I ever wrote at university. I think its deceptive to say 9 lines of code given the volume of support libraries but I would have killed to get my hands on this 17 years ago. Boundary conditions and configuring the actual volume was actually the hard part and took a majority of my time back then and I'm guessing that probably hasn't changed. Anyway cool stuff if only a few years late for me to make use of. |
|
Any comments from anyone (Brandon?), as to whether configuration and boundary conditions can be simply applied to the vector field type?