-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #129 from PauloCarvalhoRJ/SGSIM
SGSIM
- Loading branch information
Showing
31 changed files
with
2,441 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#ifndef SGSIMDIALOG_H | ||
#define SGSIMDIALOG_H | ||
|
||
#include <QDialog> | ||
|
||
namespace Ui { | ||
class SGSIMDialog; | ||
} | ||
|
||
class GSLibParGrid; | ||
class WidgetGSLibParGrid; | ||
class PointSetSelector; | ||
class VariableSelector; | ||
class UnivariateDistributionSelector; | ||
class DistributionFieldSelector; | ||
class CartesianGridSelector; | ||
class VariogramModelSelector; | ||
class DataFile; | ||
class GSLibParameterFile; | ||
class VariogramModel; | ||
class CartesianGrid; | ||
|
||
|
||
class SGSIMDialog : public QDialog | ||
{ | ||
Q_OBJECT | ||
|
||
public: | ||
explicit SGSIMDialog( QWidget *parent = 0); | ||
~SGSIMDialog(); | ||
|
||
private: | ||
Ui::SGSIMDialog *ui; | ||
GSLibParGrid* m_par; | ||
WidgetGSLibParGrid* m_gridParameters; | ||
PointSetSelector *m_primVarPSetSelector; | ||
VariableSelector *m_primVarSelector; | ||
VariableSelector *m_primVarWgtSelector; | ||
VariableSelector *m_primVarSecVarSelector; | ||
UnivariateDistributionSelector *m_refDistFileSelector; | ||
DistributionFieldSelector *m_refDistValuesSelector; | ||
DistributionFieldSelector *m_refDistFreqSelector; | ||
CartesianGridSelector *m_gridCopySpecsSelector; | ||
CartesianGridSelector *m_secVarGridSelector; | ||
VariableSelector *m_secVarVariableSelector; | ||
VariogramModelSelector *m_vModelSelector; | ||
GSLibParameterFile* m_gpf_sgsim; | ||
CartesianGrid* m_cg_simulation; | ||
GSLibParameterFile* m_gpf_gam; | ||
GSLibParameterFile* m_gpf_postsim; | ||
CartesianGrid* m_cg_postsim; | ||
/** Called when the user changes the variogram model, so the variogram parameters | ||
* in m_gpf_kt3d are read from the newly selected variogram model.*/ | ||
void updateVariogramParameters(VariogramModel *vm ); | ||
void preview(); | ||
void previewPostsim(); | ||
|
||
private slots: | ||
void onGridCopySpectsSelected( DataFile* grid ); | ||
void onConfigAndRun(); | ||
void onVariogramChanged(); | ||
void onSgsimCompletes(); | ||
void onRealizationHistogram(); | ||
void onEnsembleHistogram(); | ||
void onEnsembleVariogram(); | ||
void onSaveEnsemble(); | ||
void onPostsim(); | ||
void onSavePostsim(); | ||
}; | ||
|
||
#endif // SGSIMDIALOG_H |
Oops, something went wrong.