|
85 | 85 | print("\nModel Metadata:")
|
86 | 86 | print(f"Name: {model.meta.name}")
|
87 | 87 | print(f"Creation Date: {model.meta.creation_date}")
|
88 |
| -print(f"Last Modified: {model.meta.last_modification_date}") # TODO: This does not update here when running. In 03 you have a current date time setter |
| 88 | +# TODO: This does not update here when running. In 03 you have a current date time setter |
| 89 | +print(f"Last Modified: {model.meta.last_modification_date}") |
89 | 90 |
|
90 | 91 | print("\nStructural Groups:")
|
91 | 92 | print(model.structural_frame)
|
|
112 | 113 |
|
113 | 114 | # 2D plots
|
114 | 115 | gpv.plot_2d(model, direction='y', show_results=False)
|
115 |
| -# gpv.plot_2d(model, direction='y', show_data=True, show_boundaries=True) |
116 |
| -# gpv.plot_2d(model, direction='x', show_data=True) |
117 |
| -# |
118 |
| -# # Plot the blocks accounting for fault blocks |
119 |
| -# gpv.plot_2d( |
120 |
| -# model=model, |
121 |
| -# override_regular_grid=model.solutions.raw_arrays.litho_faults_block, |
122 |
| -# show_data=True, kwargs_lithology={'cmap': 'Set1', 'norm': None} |
123 |
| -# ) |
| 116 | +gpv.plot_2d(model, direction='y', show_data=True, show_boundaries=True) |
| 117 | +gpv.plot_2d(model, direction='x', show_data=True) |
| 118 | + |
| 119 | +# Plot the blocks accounting for fault blocks |
| 120 | +gpv.plot_2d( |
| 121 | + model=model, |
| 122 | + override_regular_grid=model.solutions.raw_arrays.litho_faults_block, |
| 123 | + show_data=True, kwargs_lithology={'cmap': 'Set1', 'norm': None} |
| 124 | +) |
124 | 125 |
|
125 | 126 | # 3D plot
|
126 | 127 | gpv.plot_3d(model)
|
|
0 commit comments