svMultiPhysics
Loading...
Searching...
No Matches
norm.h
1// SPDX-FileCopyrightText: Copyright (c) Stanford University, The Regents of the University of California, and others.
2// SPDX-License-Identifier: BSD-3-Clause
3
4#include "fils_struct.hpp"
5
6namespace norm {
7
8using namespace fsi_linear_solver;
9
10double fsi_ls_norms(const int nNo, FSILS_commuType& commu, const Vector<double>& U);
11
12double fsi_ls_normv(const int dof, const int nNo, FSILS_commuType& commu, const Array<double>& U);
13
14};
The Vector template class is used for storing int and double data.
Definition Vector.h:23