Memosa-FVM  0.2
StressTensor.h File Reference
#include "NumType.h"
#include "Vector.h"
#include <sstream>
Include dependency graph for StressTensor.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  StressTensor< T >
 

Functions

template<class T >
ostream & operator<< (ostream &os, const StressTensor< T > &v)
 
template<class T >
StressTensor< T > operator+ (const StressTensor< T > &a, const StressTensor< T > &b)
 
template<class T >
StressTensor< T > operator- (const StressTensor< T > &a, const StressTensor< T > &b)
 
template<class T >
StressTensor< T > operator- (const StressTensor< T > &a)
 
template<class T >
StressTensor< T > operator* (const StressTensor< T > &a, const StressTensor< T > &b)
 
template<class T >
StressTensor< T > operator* (const T s, const StressTensor< T > &a)
 
template<class T >
StressTensor< T > operator* (const StressTensor< T > &a, const T s)
 
template<class T >
StressTensor< T > operator/ (const StressTensor< T > &a, const T s)
 
template<class T >
StressTensor< T > operator/ (const T s, const StressTensor< T > &a)
 

Function Documentation

template<class T >
StressTensor<T> operator* ( const StressTensor< T > &  a,
const StressTensor< T > &  b 
)

Definition at line 225 of file StressTensor.h.

226 {
227  throw;
228 }
template<class T >
StressTensor<T> operator* ( const T  s,
const StressTensor< T > &  a 
)

Definition at line 232 of file StressTensor.h.

233 {
234  throw;
235 }
template<class T >
StressTensor<T> operator* ( const StressTensor< T > &  a,
const T  s 
)

Definition at line 239 of file StressTensor.h.

240 {
241  throw;
242 }
template<class T >
StressTensor<T> operator+ ( const StressTensor< T > &  a,
const StressTensor< T > &  b 
)

Definition at line 204 of file StressTensor.h.

205 {
206  return StressTensor<T>(a) += b;
207 }
template<class T >
StressTensor<T> operator- ( const StressTensor< T > &  a,
const StressTensor< T > &  b 
)

Definition at line 211 of file StressTensor.h.

212 {
213  return StressTensor<T>(a) -= b;
214 }
template<class T >
StressTensor<T> operator- ( const StressTensor< T > &  a)

Definition at line 218 of file StressTensor.h.

219 {
220  return -StressTensor<T>(a);
221 }
template<class T >
StressTensor<T> operator/ ( const StressTensor< T > &  a,
const T  s 
)

Definition at line 246 of file StressTensor.h.

247 {
248  throw;
249 }
template<class T >
StressTensor<T> operator/ ( const T  s,
const StressTensor< T > &  a 
)

Definition at line 254 of file StressTensor.h.

255 {
256  throw;
257 }
template<class T >
ostream& operator<< ( ostream &  os,
const StressTensor< T > &  v 
)
inline

Definition at line 196 of file StressTensor.h.

198 {
199  throw;
200 }