Source code for pyLOM.POD.utils
#!/usr/bin/env python
#
# pyLOM - Python Low Order Modeling.
#
# POD general utilities.
#
# Last rev: 29/10/2021
from __future__ import print_function, division
import numpy as np
from ..utils.gpu import cp
from .. import inp_out as io, PartitionTable
from ..utils import cr_nvtx as cr, gpu_to_cpu
[docs]
@cr('POD.save')
def save(fname:str,U:np.ndarray,S:np.ndarray,V:np.ndarray,ptable:PartitionTable,nvars:int=1,pointData:bool=True,mode:str='w'):
r'''
Store POD results in serial or parallel according to the partition used to compute the POD. It will be saved on a h5 file.
Args:
fname (str): path to the .h5 file in which the POD will be saved
U (np.ndarray): spatial modes to save. To avoid saving the spatial modes, just give None as input
S (np.ndarray): singular values to save. To avoid saving the singular values, just give None as input
V (np.ndarray): temporal coefficients to save. To avoid saving the temporal coefficients, just give None as input
ptable (PartitionTable): partition table used to compute the POD
nvars (int, optional): number of concatenated variables when computing the POD (default ``1``)
pointData (bool, optional): bool to specify if the POD was performed either on point data or cell data (default ``True``)
mode (str, optional): mode in which the HDF5 file is opened, 'w' stands for write mode and 'a' stands for append mode. Write mode will overwrite the file and append mode will add the informaiton at the end of the current file, choose with great care what to do in your case (default ``w``).
'''
io.h5_save_POD(fname,gpu_to_cpu(U),gpu_to_cpu(S),gpu_to_cpu(V),ptable,nvars=nvars,pointData=pointData,mode=mode)
[docs]
@cr('POD.load')
def load(fname:str,vars:list=['U','S','V'],nmod:int=-1,ptable:PartitionTable=None):
r'''
Load POD results from a .h5 file in serial or parallel according to the partition used to compute the POD.
Args:
fname (str): path to the .h5 file in which the POD was saved
vars (list): list of variables to load. The following notation, consistent with the save function, is used,
'U': spatial modes
'S': singular values
'V': temporal coefficients
the default option is to load them all, but it is not recommended to load the spatial modes if they are not going to be used during the rest of the script.
nmod (int, optional): number of modes to load. By default it will load all the saved modes (default, ``-1``)
ptable (PartitionTable, optional): partition table to use when loading the data (default ``None``).
'''
return io.h5_load_POD(fname,vars,nmod,ptable)