Skip to content

Commit

Permalink
Renamed variable to conform better to what it is in the model doc
Browse files Browse the repository at this point in the history
  • Loading branch information
pbauman committed Apr 2, 2014
1 parent cb7425c commit c82327a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grins_interface/include/planet/planet_physics.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,15 +228,15 @@ namespace Planet

// libMesh::Number n_s = molar_concentrations[s];

libMesh::Real omega = evaluator.diffusion_term(s);
libMesh::Real ns_times_omega = evaluator.diffusion_term(s);

libMesh::Real omega_dot = evaluator.chemical_term(s);
//std::cout << "omega = " << omega << ", omega_dot = " << omega_dot << std::endl;

for(unsigned int i=0; i != n_s_dofs; i++)
{
Fs(i) += ( omega_dot * s_phi[i][qp] // chemistry
+ omega * s_grad_phi[i][qp](0) //diffusion
+ ns_times_omega * s_grad_phi[i][qp](0) //diffusion
)*jac;

if( compute_jacobian )
Expand Down

0 comments on commit c82327a

Please sign in to comment.