I have a 1D array with 81 numbers that corresponds to 81 temperature every 2.5 meters depth and I need to interpolate it to a 3D array grid that has 100 points in z-dir, 6 points in x-dir, and 599 points in y-dir. My function to create the 1D values are:
zz = np.arange(-200,0.1,2.5)
def grid_function(x, ABath=-0.2, BBath=0.1, CBath=50.,DBath=10.):
"""This function creates a theoretical grid"""
from numpy import tanh, arange
ans = ABath * (tanh(BBath * (-x - CBath))) + DBath
return ans
temp = grid_function(zz)
Below there's a cross section of my grid
I don't know if I am clear with what I am asking but if anyone knows a way I would be really thankful.
Regards,
You should be able to construct a 3D array from your existing
temp
1D array as follows:You could also take a more direct approach however and start immediately with a z-coordinates 1D array with the desired 100 elements (i.e. skip the interpolation step). Like so:
Side note
It's considered good practice to place import statements always at the top of your code file.