-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathSpineEntry.cpp
263 lines (232 loc) · 6.76 KB
/
SpineEntry.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/**********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment.
** Copyright (C) 2013 Upinder S. Bhalla. and NCBS
** It is made available under the terms of the
** GNU Lesser General Public License version 2.1
** See the file COPYING.LIB for the full notice.
**********************************************************************/
#include "../basecode/header.h"
#include "Boundary.h"
#include "MeshEntry.h"
#include "VoxelJunction.h"
#include "ChemCompt.h"
#include "../utility/Vec.h"
#include "CylBase.h"
#include "SpineEntry.h"
/**
* Helper class for the SpineMesh. Defines the geometry of the spine
* and provides the innter function for mapping to CubeMeshes.
*/
SpineEntry::SpineEntry( Id shaft, Id head, unsigned int parent )
:
parent_( parent ),
shaftId_( shaft ),
headId_( head )
{
double dia = Field< double >::get( shaft, "diameter" );
double length = Field< double >::get( shaft, "length" );
double x0 = Field< double >::get( shaft, "x0" );
double y0 = Field< double >::get( shaft, "y0" );
double z0 = Field< double >::get( shaft, "z0" );
double x1 = Field< double >::get( shaft, "x" );
double y1 = Field< double >::get( shaft, "y" );
double z1 = Field< double >::get( shaft, "z" );
double x2 = Field< double >::get( head, "x" );
double y2 = Field< double >::get( head, "y" );
double z2 = Field< double >::get( head, "z" );
double hdia = Field< double >::get( head, "diameter" );
double hlength = Field< double >::get( head, "length" );
// cout << "SpineEntry: " << parent_ << " " << x0 << " " << x1 << " " << x2 << " : " << y0 << " " << y1<< " " << y2 << " : " << z0 << " " << z1 << " " << z2 << " " << hdia << endl;
root_.setX( x0 );
root_.setY( y0 );
root_.setZ( z0 );
shaft_.setX( x1 );
shaft_.setY( y1 );
shaft_.setZ( z1 );
head_.setX( x2 );
head_.setY( y2 );
head_.setZ( z2 );
root_.setDia( dia );
root_.setLength( length );
root_.setNumDivs( 0 );
root_.setIsCylinder( true );
shaft_.setDia( dia );
shaft_.setLength( length );
shaft_.setNumDivs( 1 );
shaft_.setIsCylinder( true );
head_.setDia( hdia );
head_.setLength( hlength );
head_.setNumDivs( 1 );
head_.setIsCylinder( true );
}
SpineEntry::SpineEntry()
:
parent_( 0 ),
shaftId_( Id() ),
headId_( Id() )
{
const double defaultLength = 1e-6;
root_.setX( 0 );
root_.setY( 0 );
root_.setZ( 0 );
shaft_.setX( defaultLength );
shaft_.setY( 0 );
shaft_.setZ( 0 );
head_.setX( defaultLength * 2 );
head_.setY( 0 );
head_.setZ( 0 );
root_.setDia( defaultLength );
root_.setLength( defaultLength );
root_.setNumDivs( 0 );
root_.setIsCylinder( true );
shaft_.setDia( defaultLength );
shaft_.setLength( defaultLength );
shaft_.setNumDivs( 1 );
shaft_.setIsCylinder( true );
head_.setDia( defaultLength );
head_.setLength( defaultLength );
head_.setNumDivs( 1 );
head_.setIsCylinder( true );
}
unsigned int SpineEntry::parent() const
{
return parent_;
}
Id SpineEntry::shaftId() const
{
return shaftId_;
}
Id SpineEntry::headId() const
{
return headId_;
}
void SpineEntry::setParent( unsigned int parent )
{
parent_ = parent;
}
void SpineEntry::mid( double& x, double& y, double& z ) const
{
x = ( shaft_.getX() + head_.getX() ) / 2.0;
y = ( shaft_.getY() + head_.getY() ) / 2.0;
z = ( shaft_.getZ() + head_.getZ() ) / 2.0;
}
void SpineEntry::matchCubeMeshEntries( const ChemCompt* compt,
unsigned int myIndex,
double granularity, vector< VoxelJunction >& ret )
{
// First flag is for curve, second is for cap of cylinder.
head_.matchCubeMeshEntries( compt, shaft_, myIndex,
granularity, ret, true, true );
}
double SpineEntry::volume() const
{
return head_.volume( shaft_ );
}
void SpineEntry::matchCubeMeshEntriesToHead( const ChemCompt* compt,
unsigned int myIndex,
double granularity, vector< VoxelJunction >& ret ) const
{
head_.matchCubeMeshEntries( compt, shaft_, myIndex,
granularity, ret, true, false );
}
void SpineEntry::matchCubeMeshEntriesToPSD( const ChemCompt* compt,
unsigned int myIndex,
double granularity, vector< VoxelJunction >& ret ) const
{
// First flag is for curve, second is for cap of cylinder.
head_.matchCubeMeshEntries( compt, shaft_, myIndex,
granularity, ret, false, true );
}
/**
* Find the matching NeuroMesh entry index to the
* root of the shaft of this spine. Also compute the area and
* diffusion length of the shaft.
*/
unsigned int SpineEntry::matchNeuroMeshEntriesToShaft(
const ChemCompt* compt, unsigned int myIndex,
double& area, double& length ) const
{
return 0;
}
double SpineEntry::rootArea() const
{
return root_.getDia() * root_.getDia() * PI * 0.25;
}
double SpineEntry::diffusionLength() const
{
// I've simplified this because a) it doesn't make much sense to add
// a diffusion length with a different axial size and b) it makes the
// resizing hugely complicated.
// return shaft_.getLength() + 0.5 * head_.getLength();
return shaft_.getLength();
}
vector< double > SpineEntry::spineCoords() const
{
vector< double > ret( 11 );
ret[0] = head_.getX();
ret[1] = head_.getY();
ret[2] = head_.getZ();
ret[3] = shaft_.getX();
ret[4] = shaft_.getY();
ret[5] = shaft_.getZ();
ret[6] = root_.getX();
ret[7] = root_.getY();
ret[8] = root_.getZ();
ret[9] = head_.getDia();
ret[10] = shaft_.getDia();
return ret;
}
vector< double > SpineEntry::psdCoords() const
{
vector< double > ret( 8, 0.0 );
double m0, m1, m2;
mid( m0, m1, m2 );
ret[0] = m0;
ret[1] = m1;
ret[2] = m2;
ret[3] = head_.getX() - m0;
ret[4] = head_.getY() - m1;
ret[5] = head_.getZ() - m2;
/*
ret[0] = head_.getX();
ret[1] = head_.getY();
ret[2] = head_.getZ();
double m0, m1, m2;
mid( m0, m1, m2 );
ret[3] = ret[0] - m0;
ret[4] = ret[1] - m1;
ret[5] = ret[2] - m2;
*/
ret[6] = head_.getDia();
ret[7] = sqrt( ret[3] * ret[3] + ret[4] * ret[4] + ret[5] * ret[5] );
return ret;
}
void SpineEntry::setVolume( double volume )
{
double volscale = volume / head_.volume( shaft_ );
double linscale = pow( volscale, 1.0 / 3.0 );
head_.setLength( head_.getLength() * linscale );
head_.setDia( head_.getDia() * linscale );
double dx = head_.getX() - shaft_.getX();
double dy = head_.getY() - shaft_.getY();
double dz = head_.getZ() - shaft_.getZ();
head_.setX( dx * linscale + shaft_.getX() );
head_.setY( dy * linscale + shaft_.getY() );
head_.setZ( dz * linscale + shaft_.getZ() );
}
void SpineEntry::positionShaftBase( double x, double y, double z )
{
double dx = x - root_.getX();
double dy = y - root_.getY();
double dz = y - root_.getZ();
root_.setX( x );
root_.setY( y );
root_.setZ( z );
shaft_.setX( dx + shaft_.getX() );
shaft_.setY( dy + shaft_.getY() );
shaft_.setZ( dz + shaft_.getZ() );
head_.setX( dx + head_.getX() );
head_.setY( dy + head_.getY() );
head_.setZ( dz + head_.getZ() );
}