Streamline improvement (#7435)

* Use updated generator. Switch to using priority list for seeds. Fix phase reporting and sign issues. Fix step size when growing.
* Reduce memory footprint by simplifying viz. code and filter out unused tracers early
* Remove unused viz. code.
This commit is contained in:
jonjenssen
2021-03-02 01:53:31 +01:00
committed by GitHub
parent 562ec1a398
commit 766ea6aab2
14 changed files with 302 additions and 813 deletions

View File

@@ -41,7 +41,7 @@ public:
RimStreamlineGeneratorBase( std::set<size_t>& wellCells );
~RimStreamlineGeneratorBase();
void setLimits( double flowThreshold, int maxDays, double resolutionInDays );
void setLimits( double flowThreshold, int maxDays, double resolutionInDays, double minimumLength );
void initGenerator( RimStreamlineDataAccess* dataAccess, std::list<RiaDefines::PhaseType> phases );
@@ -52,6 +52,7 @@ protected:
double m_flowThreshold;
int m_maxDays;
double m_resolution;
double m_minLength;
size_t m_maxPoints;