Skip to content

Commit

Permalink
Merge pull request #304 from PauloCarvalhoRJ/next_release
Browse files Browse the repository at this point in the history
Next release
  • Loading branch information
PauloCarvalhoRJ authored May 6, 2024
2 parents 1fa7ee7 + ad1ba0f commit 391799f
Show file tree
Hide file tree
Showing 43 changed files with 2,857 additions and 87 deletions.
15 changes: 14 additions & 1 deletion GammaRay.pro
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ win32 {
SOURCES += main.cpp\
dialogs/choosevariabledialog.cpp \
dialogs/contactanalysisdialog.cpp \
dialogs/driftanalysisdialog.cpp \
dialogs/faciestransitionmatrixoptionsdialog.cpp \
dialogs/gridrepositiondialog.cpp \
dialogs/listbuilderdialog.cpp \
Expand All @@ -47,16 +48,21 @@ SOURCES += main.cpp\
domain/auxiliary/verticalproportioncurvemaker.cpp \
domain/section.cpp \
domain/verticalproportioncurve.cpp \
geometry/boundingbox.cpp \
geometry/intersectionfinder.cpp \
geometry/quadrilateral.cpp \
geometry/triangle.cpp \
geostats/contactanalysis.cpp \
geostats/driftanalysis.cpp \
geostats/mcmcdataimputation.cpp \
geostats/quadratic3dtrendmodelfitting.cpp \
geostats/searchannulus.cpp \
geostats/searchannulusstratigraphic.cpp \
geostats/searchbox.cpp \
geostats/searchsphericalshell.cpp \
geostats/searchverticaldumbbell.cpp \
geostats/searchwasher.cpp \
gslib/gslibparameterfiles/kt3dtrendmodelparameters.cpp \
gslib/gslibparams/gslibpardir.cpp \
gslib/gslibparams/widgets/widgetgslibpardir.cpp \
mainwindow.cpp \
Expand Down Expand Up @@ -316,6 +322,7 @@ SOURCES += main.cpp\
HEADERS += mainwindow.h \
dialogs/choosevariabledialog.h \
dialogs/contactanalysisdialog.h \
dialogs/driftanalysisdialog.h \
dialogs/faciestransitionmatrixoptionsdialog.h \
dialogs/gridrepositiondialog.h \
dialogs/listbuilderdialog.h \
Expand All @@ -332,16 +339,21 @@ HEADERS += mainwindow.h \
domain/projectroot.h \
domain/section.h \
domain/verticalproportioncurve.h \
geometry/boundingbox.h \
geometry/intersectionfinder.h \
geometry/quadrilateral.h \
geometry/triangle.h \
geostats/contactanalysis.h \
geostats/driftanalysis.h \
geostats/mcmcdataimputation.h \
geostats/quadratic3dtrendmodelfitting.h \
geostats/searchannulus.h \
geostats/searchannulusstratigraphic.h \
geostats/searchbox.h \
geostats/searchsphericalshell.h \
geostats/searchverticaldumbbell.h \
geostats/searchwasher.h \
gslib/gslibparameterfiles/kt3dtrendmodelparameters.h \
gslib/gslibparams/gslibpardir.h \
gslib/gslibparams/widgets/widgetgslibpardir.h \
util.h \
Expand Down Expand Up @@ -604,6 +616,7 @@ HEADERS += mainwindow.h \
FORMS += mainwindow.ui \
dialogs/choosevariabledialog.ui \
dialogs/contactanalysisdialog.ui \
dialogs/driftanalysisdialog.ui \
dialogs/faciestransitionmatrixoptionsdialog.ui \
dialogs/gridrepositiondialog.ui \
dialogs/listbuilderdialog.ui \
Expand Down Expand Up @@ -868,7 +881,7 @@ win32 {
# The application version
# Don't forget to update the Util::importSettingsFromPreviousVersion() method to
# enable the import of registry/user settings of previous versions.
VERSION = 6.20
VERSION = 6.22

# Define a preprocessor macro so we can get the application version in application code.
DEFINES += APP_VERSION=\\\"$$VERSION\\\"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ If you enjoyed this project, you might also enjoy GeostatsPy: https://github.com
Python script to convert Eclipse grids to Paraview-compatible VTU format: https://github.com/BinWang0213/PyGRDECL

VERSION HISTORY:<br>
&nbsp;&nbsp;&nbsp;Version 6.22 - Drift analysis and drift model fitting to data.<br>
&nbsp;&nbsp;&nbsp;Version 6.20 - Contact Analysis.<br>
&nbsp;&nbsp;&nbsp;Version 6.18 - MCRFSim execution in batch/unattended mode; dependencies upgrades (VTK, ITK, Boost, C++14, ...).<br>
&nbsp;&nbsp;&nbsp;Version 6.17 - Transiography and MCRFSim for Bayesian approach; some fixes and improvements.<br>
Expand Down
Binary file added art/iconsHD/calc32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions dialogs/cokrigingdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,8 +326,8 @@ void CokrigingDialog::onParametersCokb3d()
//load the data
psInputData->loadData();
//init max with min and min with max ;-)
double minAll = std::numeric_limits<double>::max();
double maxAll = std::numeric_limits<double>::min();
double minAll = std::numeric_limits<double>::max();
double maxAll = -std::numeric_limits<double>::max();
//gather the indexes of the selected variables
QVector<int> selectedColumns;
selectedColumns.append( m_inputPrimVarSelector->getSelectedVariableGEOEASIndex() - 1 );
Expand Down Expand Up @@ -531,8 +531,8 @@ void CokrigingDialog::onParametersNewcokb3d()
//load the data
psInputData->loadData();
//init max with min and min with max ;-)
double minAll = std::numeric_limits<double>::max();
double maxAll = std::numeric_limits<double>::min();
double minAll = std::numeric_limits<double>::max();
double maxAll = -std::numeric_limits<double>::max();
//gather the indexes of the selected variables
QVector<int> selectedColumns;
selectedColumns.append( m_inputPrimVarSelector->getSelectedVariableGEOEASIndex() - 1 );
Expand Down
2 changes: 1 addition & 1 deletion dialogs/contactanalysisdialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void ContactAnalysisDialog::onProceed()
LineChartWidget* lcw = new LineChartWidget(this);
lcw->setSharedYaxis( true );
lcw->setChartTitle( "Contact analysis of " + m_dataFile->getName() );
lcw->setData( chartData, 0,
lcw->setData( chartData, 0, true,
{{1, nameDomain1 + " (Domain 1)"}, {2, nameDomain2 + " (Domain 2)"}},
{{2, "mean " + m_attributeGrade->getName() }}, // shared y-axis is enabled, set only the last one
{{1, colorDomain1} , {2, colorDomain2}} );
Expand Down
Loading

0 comments on commit 391799f

Please sign in to comment.