GRINS-0.7.0
averaged_turbine_base.C
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // GRINS - General Reacting Incompressible Navier-Stokes
5 //
6 // Copyright (C) 2014-2016 Paul T. Bauman, Roy H. Stogner
7 // Copyright (C) 2010-2013 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 
26 // This class
28 
29 // GRINS
31 
32 namespace GRINS
33 {
34 
35  template<class Mu>
36  AveragedTurbineBase<Mu>::AveragedTurbineBase( const std::string& physics_name, const GetPot& input )
37  : IncompressibleNavierStokesBase<Mu>(physics_name,
38  PhysicsNaming::incompressible_navier_stokes(), /* "core" Physics name */
39  input),
40  base_velocity_function(""),
41  local_vertical_function(""),
42  lift_function(""),
43  drag_function(""),
44  torque_function(""),
45  chord_function(""),
46  area_swept_function(""),
47  aoa_function("")
48  {
49  this->read_input_options(input);
50  }
51 
52  template<class Mu>
53  void AveragedTurbineBase<Mu>::init_variables( libMesh::FEMSystem* system )
54  {
55  this->_fan_speed_var = system->add_variable(_fan_speed_var_name,
56  libMesh::FIRST,
57  libMesh::SCALAR);
58 
60  }
61 
62  template<class Mu>
63  void AveragedTurbineBase<Mu>::set_time_evolving_vars( libMesh::FEMSystem* system )
64  {
65  system->time_evolving(this->fan_speed_var());
66 
68  }
69 
70 
71  template<class Mu>
72  void AveragedTurbineBase<Mu>::read_input_options( const GetPot& input )
73  {
74  this->set_parameter(base_velocity_function, input,
75  "Physics/"+PhysicsNaming::averaged_turbine()+"/base_velocity",
76  this->zero_vector_function);
77 
78  if (base_velocity_function.expression() == this->zero_vector_function)
79  libmesh_error_msg("Error! Zero AveragedTurbine specified!" <<
80  std::endl);
81 
82  this->set_parameter(local_vertical_function, input,
83  "Physics/"+PhysicsNaming::averaged_turbine()+"/local_vertical",
84  this->zero_vector_function);
85 
86  if (local_vertical_function.expression() == this->zero_vector_function)
87  libmesh_error_msg("Error! Zero LocalVertical specified!" <<
88  std::endl);
89 
90  this->set_parameter(lift_function, input,
91  "Physics/"+PhysicsNaming::averaged_turbine()+"/lift",
92  "0");
93 
94  if (lift_function.expression() == "0")
95  std::cout << "Warning! Zero lift function specified!" << std::endl;
96 
97  this->set_parameter(drag_function, input,
98  "Physics/"+PhysicsNaming::averaged_turbine()+"/drag",
99  "0");
100 
101  if (drag_function.expression() == "0")
102  std::cout << "Warning! Zero drag function specified!" << std::endl;
103 
104  this->set_parameter(chord_function, input,
105  "Physics/"+PhysicsNaming::averaged_turbine()+"/chord_length",
106  "0");
107 
108  if (chord_function.expression() == "0")
109  libmesh_error_msg("Error! Zero chord function specified!" <<
110  std::endl);
111 
112  this->set_parameter(area_swept_function, input,
113  "Physics/"+PhysicsNaming::averaged_turbine()+"/area_swept",
114  "0");
115 
116  if (area_swept_function.expression() == "0")
117  libmesh_error_msg("Error! Zero area_swept_function specified!" <<
118  std::endl);
119 
120  this->set_parameter(aoa_function, input,
121  "Physics/"+PhysicsNaming::averaged_turbine()+"/angle_of_attack",
122  "00000");
123 
124  if (aoa_function.expression() == "00000")
125  libmesh_error_msg("Error! No angle-of-attack specified!" <<
126  std::endl);
127 
128  this->set_parameter(torque_function, input,
129  "Physics/"+PhysicsNaming::averaged_turbine()+"/torque",
130  "0");
131 
132  if (torque_function.expression() == "0")
133  std::cout << "Warning! Zero torque function specified!" << std::endl;
134 
135  this->set_parameter
136  (this->moment_of_inertia, input,
137  "Physics/"+PhysicsNaming::averaged_turbine()+"/moment_of_inertia",
138  libMesh::Number(0));
139 
140  if (!moment_of_inertia)
141  libmesh_error_msg(
142  "Error! Zero AveragedTurbine moment of inertia specified!" <<
143  std::endl);
144 
145  this->set_parameter
146  (this->initial_speed, input,
147  "Physics/"+PhysicsNaming::averaged_turbine()+"/initial_speed",
148  libMesh::Number(0));
149 
150  this->_fan_speed_var_name = input("Physics/VariableNames/fan_speed",
152 
153  }
154 
155  template<class Mu>
157  ( const libMesh::Point& point,
158  const libMesh::Real time,
159  const libMesh::NumberVectorValue& U,
160  libMesh::Number s,
161  libMesh::NumberVectorValue& U_B_1,
162  libMesh::NumberVectorValue& F,
163  libMesh::NumberTensorValue *dFdU,
164  libMesh::NumberVectorValue *dFds)
165  {
166  // Find base velocity of moving fan at this point
167  libMesh::DenseVector<libMesh::Number> output_vec(3);
168 
169  base_velocity_function(point, time, output_vec);
170 
171  U_B_1(0) = output_vec(0);
172  U_B_1(1) = output_vec(1);
173  U_B_1(2) = output_vec(2);
174 
175  const libMesh::NumberVectorValue U_B = U_B_1 * s;
176 
177  const libMesh::Number U_B_size = U_B.size();
178 
179  // If there's no base velocity there's no fan
180  if (!U_B_size)
181  return false;
182 
183  // Normal in fan velocity direction
184  const libMesh::NumberVectorValue N_B =
185  libMesh::NumberVectorValue(U_B/U_B_size);
186 
187  local_vertical_function(point, time, output_vec);
188 
189  // Normal in fan vertical direction
190  const libMesh::NumberVectorValue N_V(output_vec(0),
191  output_vec(1),
192  output_vec(2));
193 
194  // Normal in radial direction (or opposite radial direction,
195  // for fans turning clockwise!)
196  const libMesh::NumberVectorValue N_R = N_B.cross(N_V);
197 
198  // Fan-wing-plane component of local relative velocity
199  const libMesh::NumberVectorValue U_P = U - (U*N_R)*N_R - U_B;
200 
201  const libMesh::Number U_P_size = U_P.size();
202 
203  // If there's no flow in the fan's frame of reference, there's no
204  // lift or drag. FIXME - should we account for drag in the
205  // out-of-plane direction?
206  if (!U_P_size)
207  return false;
208 
209  // Direction opposing drag
210  const libMesh::NumberVectorValue N_drag =
211  libMesh::NumberVectorValue(-U_P/U_P_size);
212 
213  // Direction opposing lift
214  const libMesh::NumberVectorValue N_lift = N_drag.cross(N_R);
215 
216  // "Forward" velocity
217  const libMesh::Number u_fwd = -(U_P * N_B);
218 
219  // "Upward" velocity
220  const libMesh::Number u_up = U_P * N_V;
221 
222  // If there's no forward or upward velocity we should have already
223  // returned false
224  libmesh_assert (u_up || u_fwd);
225 
226  // Angle WRT fan velocity direction
227  const libMesh::Number part_angle = std::atan2(u_up, u_fwd);
228 
229  // Angle WRT fan chord
230  const libMesh::Number angle = part_angle +
231  aoa_function(point, time);
232 
233  const libMesh::Number C_lift = lift_function(point, angle);
234  const libMesh::Number C_drag = drag_function(point, angle);
235 
236  const libMesh::Number chord = chord_function(point, time);
237  const libMesh::Number area = area_swept_function(point, time);
238 
239  const libMesh::Number v_sq = U_P*U_P;
240 
241  const libMesh::Number LDfactor = 0.5 * this->_rho * v_sq * chord / area;
242  const libMesh::Number lift = C_lift * LDfactor;
243  const libMesh::Number drag = C_drag * LDfactor;
244 
245  // Force
246  F = lift * N_lift + drag * N_drag;
247 
248  if (dFdU)
249  {
250  const libMesh::NumberVectorValue LDderivfactor =
251  (N_lift*C_lift+N_drag*C_drag) *
252  this->_rho * chord / area;
253 
254  const libMesh::Number sfactor = -(U_P*U_B_1);
255 
256  (*dFds) = LDderivfactor * sfactor;
257 
258  for (unsigned int i=0; i != 3; ++i)
259  for (unsigned int j=0; j != 3; ++j)
260  (*dFdU)(i,j) = LDderivfactor(i) * U_P(j);
261  }
262 
263  return true;
264  }
265 
266 } // namespace GRINS
267 
268 // Instantiate
269 INSTANTIATE_INC_NS_SUBCLASS(AveragedTurbineBase);
virtual void set_time_evolving_vars(libMesh::FEMSystem *system)
Sets turbine_speed and velocity variables to be time-evolving.
virtual void init_variables(libMesh::FEMSystem *system)
Initialization of variables.
Physics class for Incompressible Navier-Stokes.
const std::string fan_speed_var_name_default
fan speed
INSTANTIATE_INC_NS_SUBCLASS(AveragedTurbineBase)
virtual void init_variables(libMesh::FEMSystem *system)
Initialization of Navier-Stokes variables.
GRINS namespace.
static PhysicsName averaged_turbine()
virtual void set_time_evolving_vars(libMesh::FEMSystem *system)
Sets velocity variables to be time-evolving.
bool compute_force(const libMesh::Point &point, const libMesh::Real time, const libMesh::NumberVectorValue &U, libMesh::Number s, libMesh::NumberVectorValue &U_B_1, libMesh::NumberVectorValue &F, libMesh::NumberTensorValue *dFdU=NULL, libMesh::NumberVectorValue *dFds=NULL)
void read_input_options(const GetPot &input)
Read options from GetPot input file.

Generated on Thu Jun 2 2016 21:52:27 for GRINS-0.7.0 by  doxygen 1.8.10