Panzer
Version of the Day
disc-fe
src
responses
Panzer_Response_IPCoordinates.hpp
Go to the documentation of this file.
1
// @HEADER
2
// ***********************************************************************
3
//
4
// Panzer: A partial differential equation assembly
5
// engine for strongly coupled complex multiphysics systems
6
// Copyright (2011) Sandia Corporation
7
//
8
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9
// the U.S. Government retains certain rights in this software.
10
//
11
// Redistribution and use in source and binary forms, with or without
12
// modification, are permitted provided that the following conditions are
13
// met:
14
//
15
// 1. Redistributions of source code must retain the above copyright
16
// notice, this list of conditions and the following disclaimer.
17
//
18
// 2. Redistributions in binary form must reproduce the above copyright
19
// notice, this list of conditions and the following disclaimer in the
20
// documentation and/or other materials provided with the distribution.
21
//
22
// 3. Neither the name of the Corporation nor the names of the
23
// contributors may be used to endorse or promote products derived from
24
// this software without specific prior written permission.
25
//
26
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37
//
38
// Questions? Contact Roger P. Pawlowski (rppawlo@sandia.gov) and
39
// Eric C. Cyr (eccyr@sandia.gov)
40
// ***********************************************************************
41
// @HEADER
42
43
#ifndef __Panzer_Response_IPCoordinates_hpp__
44
#define __Panzer_Response_IPCoordinates_hpp__
45
46
#include <string>
47
48
49
#include <mpi.h>
// need for comm
50
51
#include "
Teuchos_RCP.hpp
"
52
53
#include "Thyra_VectorBase.hpp"
54
#include "Thyra_VectorSpaceBase.hpp"
55
56
#include "Epetra_Map.h"
57
#include "Epetra_Vector.h"
58
#include "Epetra_MpiComm.h"
59
60
#include "
Panzer_ResponseMESupport_Default.hpp
"
61
#include "
Panzer_GlobalEvaluationData.hpp
"
62
63
64
namespace
panzer
{
65
70
template
<
typename
EvalT>
71
class
Response_IPCoordinates
:
public
ResponseBase
{
72
public
:
73
typedef
typename
EvalT::ScalarT
ScalarT
;
74
75
Response_IPCoordinates
(
const
std::string & responseName)
76
:
ResponseBase
(responseName) {}
77
78
virtual
void
scatterResponse
() {}
79
80
virtual
void
initializeResponse
()
81
{
82
if
(
coords
==Teuchos::null)
83
coords
=
Teuchos::rcp
(
new
std::vector<panzer::Traits::Residual::ScalarT>);
84
85
coords
->clear();
86
}
87
88
Teuchos::RCP<const std::vector<panzer::Traits::Residual::ScalarT>
>
getCoords
()
const
89
{
return
coords
; }
90
91
Teuchos::RCP<std::vector<panzer::Traits::Residual::ScalarT>
>
getNonconstCoords
()
92
{
return
coords
; }
93
94
private
:
95
// hide these methods
96
Response_IPCoordinates
();
97
Response_IPCoordinates
(
const
Response_IPCoordinates
&);
98
99
Teuchos::RCP<std::vector<panzer::Traits::Residual::ScalarT>
>
coords
;
100
};
101
102
}
103
104
#endif
panzer::Response_IPCoordinates::getNonconstCoords
Teuchos::RCP< std::vector< panzer::Traits::Residual::ScalarT > > getNonconstCoords()
Definition:
Panzer_Response_IPCoordinates.hpp:91
Teuchos_RCP.hpp
panzer::Response_IPCoordinates::scatterResponse
virtual void scatterResponse()
Prepare the response for access by the user (do global communication)
Definition:
Panzer_Response_IPCoordinates.hpp:78
panzer::Response_IPCoordinates::Response_IPCoordinates
Response_IPCoordinates()
panzer::Response_IPCoordinates::Response_IPCoordinates
Response_IPCoordinates(const std::string &responseName)
Definition:
Panzer_Response_IPCoordinates.hpp:75
Teuchos::rcp
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
panzer::ResponseBase
Definition:
Panzer_ResponseBase.hpp:59
panzer::Response_IPCoordinates::ScalarT
EvalT::ScalarT ScalarT
Definition:
Panzer_Response_IPCoordinates.hpp:73
panzer::Response_IPCoordinates::getCoords
Teuchos::RCP< const std::vector< panzer::Traits::Residual::ScalarT > > getCoords() const
Definition:
Panzer_Response_IPCoordinates.hpp:88
Teuchos::RCP
panzer::Response_IPCoordinates
Definition:
Panzer_Response_IPCoordinates.hpp:71
panzer::Response_IPCoordinates::coords
Teuchos::RCP< std::vector< panzer::Traits::Residual::ScalarT > > coords
Definition:
Panzer_Response_IPCoordinates.hpp:99
panzer
Definition:
Panzer_BasisValues_Evaluator_decl.hpp:54
Panzer_GlobalEvaluationData.hpp
Panzer_ResponseMESupport_Default.hpp
panzer::Response_IPCoordinates::initializeResponse
virtual void initializeResponse()
Definition:
Panzer_Response_IPCoordinates.hpp:80
Generated by
1.8.16