Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nektar
Nektar
Commits
a5df2009
Commit
a5df2009
authored
Jul 11, 2016
by
Dave Moxey
Browse files
Fix a couple of indentation issues, update CHANGELOG
parent
32a1d61e
Changes
3
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
a5df2009
...
...
@@ -27,6 +27,7 @@ v4.3.3
**CompressibleFlowSolver**
:
-
Fix issue with residual output (!647)
-
Issues with 1D Euler solver fixed (!565)
**Packaging**
:
-
Fix NekMesh dependencies for DEB package (!650)
...
...
library/SolverUtils/RiemannSolvers/RiemannSolver.cpp
View file @
a5df2009
...
...
@@ -182,12 +182,12 @@ namespace Nektar
{
case
1
:
{
// do nothing
const
int
nq
=
inarray
[
0
].
num_elements
();
const
int
nq
=
inarray
[
0
].
num_elements
();
const
int
vx
=
(
int
)
vecLocs
[
i
][
0
];
Vmath
::
Vmul
(
nq
,
inarray
[
vx
],
1
,
normals
[
0
],
1
,
outarray
[
vx
],
1
);
break
;
}
}
case
2
:
{
const
int
nq
=
inarray
[
0
].
num_elements
();
...
...
@@ -273,12 +273,12 @@ namespace Nektar
{
case
1
:
{
// do nothing
const
int
nq
=
normals
[
0
].
num_elements
();
const
int
nq
=
normals
[
0
].
num_elements
();
const
int
vx
=
(
int
)
vecLocs
[
i
][
0
];
Vmath
::
Vmul
(
nq
,
inarray
[
vx
],
1
,
normals
[
0
],
1
,
outarray
[
vx
],
1
);
break
;
}
}
case
2
:
{
const
int
nq
=
normals
[
0
].
num_elements
();
...
...
library/StdRegions/StdSegExp.cpp
View file @
a5df2009
...
...
@@ -240,32 +240,12 @@ namespace Nektar
NekMatrix
<
NekDouble
>
B
(
nquad
,
m_ncoeffs
,
m_base
[
0
]
->
GetBdata
(),
eWrapper
);
out
=
B
*
in
;
#endif //NEKTAR_USING_DIRECT_BLAS_CALLS
#endif //NEKTAR_USING_DIRECT_BLAS_CALLS
}
}
/** \brief Forward transform from physical quadrature space stored in
* \a inarray and evaluate the expansion coefficients and store in
* \a outarray
*
* Perform a forward transform using a Galerkin projection by taking the
* inner product of the physical points and multiplying by the inverse of
* the mass matrix using the Solve method of the standard matrix
* container holding the local mass matrix, i.e. \f$ {\bf \hat{u}} =
* {\bf M}^{-1} {\bf I} \f$ where \f$ {\bf I}[p] = \int^1_{-1}
* \phi_p(\xi_1) u(\xi_1) d\xi_1 \f$
*
* This function stores the expansion coefficients calculated by the
* transformation in the coefficient space array \a outarray
*
* \param inarray: array of physical quadrature points to be transformed
*
* \param outarray: the coeffficients of the expansion
*/
void
StdSegExp
::
v_ReduceOrderCoeffs
(
void
StdSegExp
::
v_ReduceOrderCoeffs
(
int
numMin
,
const
Array
<
OneD
,
const
NekDouble
>
&
inarray
,
Array
<
OneD
,
NekDouble
>
&
outarray
)
...
...
@@ -301,8 +281,25 @@ namespace Nektar
LibUtilities
::
InterpCoeff1D
(
bortho0
,
coeff_tmp
,
b0
,
outarray
);
}
/**
* \brief Forward transform from physical quadrature space stored in \a
* inarray and evaluate the expansion coefficients and store in \a
* outarray
*
* Perform a forward transform using a Galerkin projection by taking the
* inner product of the physical points and multiplying by the inverse
* of the mass matrix using the Solve method of the standard matrix
* container holding the local mass matrix, i.e. \f$ {\bf \hat{u}} =
* {\bf M}^{-1} {\bf I} \f$ where \f$ {\bf I}[p] = \int^1_{-1}
* \phi_p(\xi_1) u(\xi_1) d\xi_1 \f$
*
* This function stores the expansion coefficients calculated by the
* transformation in the coefficient space array \a outarray
*
* \param inarray: array of physical quadrature points to be transformed
* \param outarray: the coeffficients of the expansion
*/
void
StdSegExp
::
v_FwdTrans
(
const
Array
<
OneD
,
const
NekDouble
>&
inarray
,
Array
<
OneD
,
NekDouble
>
&
outarray
)
{
...
...
Dave Moxey
@dmoxey
mentioned in commit
48493f1d
·
Jul 12, 2016
mentioned in commit
48493f1d
mentioned in commit 48493f1d1f24135160470a16eb10c5b2ffb663cf
Toggle commit list
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment