add some missing doxy banners

This commit is contained in:
Arne Morten Kvarving 2017-04-21 12:54:31 +02:00
parent aed553a86a
commit 45da47d91d
4 changed files with 42 additions and 5 deletions

View File

@ -1,3 +1,15 @@
//==============================================================================
//!
//! \file Spalding.C
//!
//! \date Jan 25 2011
//!
//! \author Runar Holdahl / SINTEF
//!
//! \brief Implementation of Spalding parametrization of a boundary layer.
//!
//==============================================================================
#include "Spalding.h"
#include <iostream>

View File

@ -6,10 +6,7 @@
//!
//! \author Runar Holdahl / SINTEF
//!
//! \brief Implementation of Spalding parametrization of a turbulent
//! boundary layer. Computes the mean velocity uplus parallel
//! to a solid wall given the distance y and the tangential
//! velocity component ut.
//! \brief Implementation of Spalding parametrization of a boundary layer.
//!
//==============================================================================
@ -21,7 +18,10 @@
/*!
\brief Class representing Spalding parametrization of a turbulent
boundary layer
boundary layer.
\details Computes the mean velocity uplus parallel
to a solid wall given the distance y and the tangential
velocity component ut.
*/
class Spalding

View File

@ -1,6 +1,19 @@
//==============================================================================
//!
//! \file StabilizationUtils.C
//!
//! \date Oct 31 2012
//!
//! \author Arne Morten Kvarving / SINTEF
//!
//! \brief Various helpers for stabilized formulations.
//!
//==============================================================================
#include "StabilizationUtils.h"
#include "Vec3Oper.h"
namespace StabilizationUtils {
double getElementSize(const std::vector<Vec3>& XC, int nsd)

View File

@ -1,3 +1,15 @@
//==============================================================================
//!
//! \file StabilizationUtils.h
//!
//! \date Oct 31 2012
//!
//! \author Arne Morten Kvarving / SINTEF
//!
//! \brief Various helpers for stabilized formulations.
//!
//==============================================================================
#ifndef STABILIZATIONUTILS_H_
#define STABILIZATIONUTILS_H_