svMultiPhysics
Loading...
Searching...
No Matches
dot.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 dot {
7
8using namespace fsi_linear_solver;
9
10double fsils_dot_s(const int nNo, FSILS_commuType& commu, const Vector<double>& U, const Vector<double>& V);
11
12double fsils_dot_v(const int dof, const int nNo, FSILS_commuType& commu, const Array<double>& U, const Array<double>& V);
13
14double fsils_nc_dot_s(const int nNo, const Vector<double>& U, const Vector<double>& V);
15
16double fsils_nc_dot_v(const int dof, const int nNo, const Array<double>& U, const Array<double>& V);
17
18};
The Vector template class is used for storing int and double data.
Definition Vector.h:23