escript  Revision_
FunctionSpaceFactory.h
Go to the documentation of this file.
00001 
00002 /*****************************************************************************
00003 *
00004 * Copyright (c) 2003-2014 by University of Queensland
00005 * http://www.uq.edu.au
00006 *
00007 * Primary Business: Queensland, Australia
00008 * Licensed under the Open Software License version 3.0
00009 * http://www.opensource.org/licenses/osl-3.0.php
00010 *
00011 * Development until 2012 by Earth Systems Science Computational Center (ESSCC)
00012 * Development 2012-2013 by School of Earth Sciences
00013 * Development from 2014 by Centre for Geoscience Computing (GeoComp)
00014 *
00015 *****************************************************************************/
00016 
00017 
00018 #if !defined  escript_FunctionSpaceFactory_20040604_H
00019 #define escript_FunctionSpaceFactory_20040604_H
00020 #include "system_dep.h"
00021 
00022 #include "AbstractDomain.h"
00023 #include "FunctionSpace.h"
00024 
00025 namespace escript {
00026 
00040   ESCRIPT_DLL_API FunctionSpace continuousFunction(const AbstractDomain& domain);
00041 
00046   ESCRIPT_DLL_API FunctionSpace reducedContinuousFunction(const AbstractDomain& domain);
00047 
00052   ESCRIPT_DLL_API FunctionSpace function(const AbstractDomain& domain);
00057   ESCRIPT_DLL_API FunctionSpace reducedFunction(const AbstractDomain& domain);
00062   ESCRIPT_DLL_API FunctionSpace functionOnBoundary(const AbstractDomain& domain);
00067   ESCRIPT_DLL_API FunctionSpace reducedFunctionOnBoundary(const AbstractDomain& domain);
00072   ESCRIPT_DLL_API FunctionSpace functionOnContactZero(const AbstractDomain& domain);
00077   ESCRIPT_DLL_API FunctionSpace reducedFunctionOnContactZero(const AbstractDomain& domain);
00082   ESCRIPT_DLL_API FunctionSpace functionOnContactOne(const AbstractDomain& domain);
00087   ESCRIPT_DLL_API FunctionSpace reducedFunctionOnContactOne(const AbstractDomain& domain);
00092   ESCRIPT_DLL_API FunctionSpace solution(const AbstractDomain& domain);
00097   ESCRIPT_DLL_API FunctionSpace reducedSolution(const AbstractDomain& domain);
00102   ESCRIPT_DLL_API FunctionSpace diracDeltaFunctions(const AbstractDomain& domain);
00103 
00104 } // end of namespace
00105 #endif