54 node_iter != pCellPopulation->
rGetMesh().GetNodeIteratorEnd();
58 assert(!node_iter->IsDeleted());
60 unsigned node_index = node_iter->GetIndex();
63 bool is_real_node = !(pCellPopulation->
IsGhostNode(node_index));
74 *this->mpOutStream << node_index <<
" ";
77 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
78 for (
unsigned i=0; i<SPACE_DIM; i++)
80 *this->mpOutStream << position[i] <<
" ";
86 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
87 for (
unsigned i=0; i<SPACE_DIM; i++)
89 *this->mpOutStream << velocity[i] <<
" ";
109 assert(!node_iter->IsDeleted());
111 unsigned node_index = node_iter->GetIndex();
114 bool is_real_node = !(pCellPopulation->
IsGhostNode(node_index));
125 *this->mpOutStream << node_index <<
" ";
128 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
129 for (
unsigned i=0; i<SPACE_DIM; i++)
131 *this->mpOutStream << position[i] <<
" ";
137 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
138 for (
unsigned i=0; i<SPACE_DIM; i++)
140 *this->mpOutStream << velocity[i] <<
" ";
160 assert(!node_iter->IsDeleted());
163 unsigned node_index = node_iter->GetIndex();
164 *this->mpOutStream << node_index <<
" ";
167 const c_vector<double, SPACE_DIM>& position = node_iter->rGetLocation();
168 for (
unsigned i=0; i<SPACE_DIM; i++)
170 *this->mpOutStream << position[i] <<
" ";
176 c_vector<double, SPACE_DIM> velocity = time_step * node_iter->rGetAppliedForce() / damping_constant;
177 for (
unsigned i=0; i<SPACE_DIM; i++)
179 *this->mpOutStream << velocity[i] <<
" ";