55 node_iter != pCellPopulation->
rGetMesh().GetNodeIteratorEnd();
59 assert(!node_iter->IsDeleted());
61 unsigned node_index = node_iter->GetIndex();
64 bool is_real_node = !(pCellPopulation->
IsGhostNode(node_index));
75 *this->mpOutStream << node_index <<
" ";
78 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
79 for (
unsigned i=0; i<SPACE_DIM; i++)
81 *this->mpOutStream << position[i] <<
" ";
87 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
88 for (
unsigned i=0; i<SPACE_DIM; i++)
90 *this->mpOutStream << velocity[i] <<
" ";
110 assert(!node_iter->IsDeleted());
112 unsigned node_index = node_iter->GetIndex();
115 bool is_real_node = !(pCellPopulation->
IsGhostNode(node_index));
126 *this->mpOutStream << node_index <<
" ";
129 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
130 for (
unsigned i=0; i<SPACE_DIM; i++)
132 *this->mpOutStream << position[i] <<
" ";
138 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
139 for (
unsigned i=0; i<SPACE_DIM; i++)
141 *this->mpOutStream << velocity[i] <<
" ";
161 assert(!node_iter->IsDeleted());
164 unsigned node_index = node_iter->GetIndex();
165 *this->mpOutStream << node_index <<
" ";
168 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
169 for (
unsigned i=0; i<SPACE_DIM; i++)
171 *this->mpOutStream << position[i] <<
" ";
177 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
178 for (
unsigned i=0; i<SPACE_DIM; i++)
180 *this->mpOutStream << velocity[i] <<
" ";