From 5889c9fd128016f8ef0f3ed5d39b2f5aa7bf3077 Mon Sep 17 00:00:00 2001 From: Tristan Salles Date: Mon, 24 Jun 2024 14:31:25 +1000 Subject: [PATCH] update --- docs/tech_guide/tecto.rst | 4 ++++ gospl/tools/cgflex.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/tech_guide/tecto.rst b/docs/tech_guide/tecto.rst index 7d1c963..65de3e9 100644 --- a/docs/tech_guide/tecto.rst +++ b/docs/tech_guide/tecto.rst @@ -53,3 +53,7 @@ For regions of diverging or converging lateral movement, the elevation and strat .. note:: Additional constrained for mesh refinement can be set if needed. As an example, one can use the horizontal velocity field magnitude as a parameter for refinement and create meshes with higher resolutions for regions with higher magnitudes in order to better represent the deformation in these areas. + + +Flexural isostasy +--------------------------------- \ No newline at end of file diff --git a/gospl/tools/cgflex.py b/gospl/tools/cgflex.py index 2baad19..c583990 100644 --- a/gospl/tools/cgflex.py +++ b/gospl/tools/cgflex.py @@ -3,16 +3,16 @@ import sys import glob import pickle -import pyproj import petsc4py import numpy as np -import xarray as xr from mpi4py import MPI from pathlib import Path from time import process_time if "READTHEDOCS" not in os.environ: + import pyproj + import xarray as xr from gflex.f2d import F2D petsc4py.init(sys.argv)