-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathCubeMesh.cpp
1636 lines (1452 loc) · 45.7 KB
/
CubeMesh.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/**********************************************************************
** This program is part of 'MOOSE', the
** Messaging Object Oriented Simulation Environment.
** Copyright (C) 2011 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 "../basecode/SparseMatrix.h"
#include "../basecode/ElementValueFinfo.h"
#include "Boundary.h"
#include "MeshEntry.h"
#include "VoxelJunction.h"
// #include "Stencil.h"
#include "ChemCompt.h"
#include "MeshCompt.h"
#include "CubeMesh.h"
#include "EndoMesh.h"
const unsigned int CubeMesh::EMPTY = ~0;
const unsigned int CubeMesh::SURFACE = ~1;
const unsigned int CubeMesh::ABUTX = ~2;
const unsigned int CubeMesh::ABUTY = ~3;
const unsigned int CubeMesh::ABUTZ = ~4;
const unsigned int CubeMesh::MULTI = ~5;
typedef pair< unsigned int, unsigned int > PII;
const Cinfo* CubeMesh::initCinfo()
{
//////////////////////////////////////////////////////////////
// Field Definitions
//////////////////////////////////////////////////////////////
static ValueFinfo< CubeMesh, double > x0(
"x0",
"X coord of one end",
&CubeMesh::setX0,
&CubeMesh::getX0
);
static ValueFinfo< CubeMesh, double > y0(
"y0",
"Y coord of one end",
&CubeMesh::setY0,
&CubeMesh::getY0
);
static ValueFinfo< CubeMesh, double > z0(
"z0",
"Z coord of one end",
&CubeMesh::setZ0,
&CubeMesh::getZ0
);
static ValueFinfo< CubeMesh, double > x1(
"x1",
"X coord of other end",
&CubeMesh::setX1,
&CubeMesh::getX1
);
static ValueFinfo< CubeMesh, double > y1(
"y1",
"Y coord of other end",
&CubeMesh::setY1,
&CubeMesh::getY1
);
static ValueFinfo< CubeMesh, double > z1(
"z1",
"Z coord of other end",
&CubeMesh::setZ1,
&CubeMesh::getZ1
);
static ValueFinfo< CubeMesh, double > dx(
"dx",
"X size for mesh",
&CubeMesh::setDx,
&CubeMesh::getDx
);
static ValueFinfo< CubeMesh, double > dy(
"dy",
"Y size for mesh",
&CubeMesh::setDy,
&CubeMesh::getDy
);
static ValueFinfo< CubeMesh, double > dz(
"dz",
"Z size for mesh",
&CubeMesh::setDz,
&CubeMesh::getDz
);
static ValueFinfo< CubeMesh, unsigned int > nx(
"nx",
"Number of subdivisions in mesh in X",
&CubeMesh::setNx,
&CubeMesh::getNx
);
static ValueFinfo< CubeMesh, unsigned int > ny(
"ny",
"Number of subdivisions in mesh in Y",
&CubeMesh::setNy,
&CubeMesh::getNy
);
static ValueFinfo< CubeMesh, unsigned int > nz(
"nz",
"Number of subdivisions in mesh in Z",
&CubeMesh::setNz,
&CubeMesh::getNz
);
static ValueFinfo< CubeMesh, bool > isToroid(
"isToroid",
"Flag. True when the mesh should be toroidal, that is,"
"when going beyond the right face brings us around to the"
"left-most mesh entry, and so on. If we have nx, ny, nz"
"entries, this rule means that the coordinate (x, ny, z)"
"will map onto (x, 0, z). Similarly,"
"(-1, y, z) -> (nx-1, y, z)"
"Default is false",
&CubeMesh::setIsToroid,
&CubeMesh::getIsToroid
);
static ValueFinfo< CubeMesh, bool > preserveNumEntries(
"preserveNumEntries",
"Flag. When it is true, the numbers nx, ny, nz remain"
"unchanged when x0, x1, y0, y1, z0, z1 are altered. Thus"
"dx, dy, dz would change instead. When it is false, then"
"dx, dy, dz remain the same and nx, ny, nz are altered."
"Default is true",
&CubeMesh::setPreserveNumEntries,
&CubeMesh::getPreserveNumEntries
);
static ValueFinfo< CubeMesh, bool > alwaysDiffuse(
"alwaysDiffuse",
"Flag. When it is true, the mesh matches up sequential "
"mesh entries for diffusion and chmestry. This is regardless "
"of spatial location, and is guaranteed to set up at least "
"the home reaction system"
"Default is false",
&CubeMesh::setAlwaysDiffuse,
&CubeMesh::getAlwaysDiffuse
);
static ElementValueFinfo< CubeMesh, vector< double > > coords(
"coords",
"Set all the coords of the cuboid at once. Order is:"
"x0 y0 z0 x1 y1 z1 dx dy dz"
"When this is done, it recalculates the numEntries since "
"dx, dy and dz are given explicitly."
"As a special hack, you can leave out dx, dy and dz and use "
"a vector of size 6. In this case the operation assumes that "
"nx, ny and nz are to be preserved and dx, dy and dz will "
"be recalculated. ",
&CubeMesh::setCoords,
&CubeMesh::getCoords
);
static ValueFinfo< CubeMesh, vector< unsigned int > > meshToSpace(
"meshToSpace",
"Array in which each mesh entry stores spatial (cubic) index",
&CubeMesh::setMeshToSpace,
&CubeMesh::getMeshToSpace
);
static ValueFinfo< CubeMesh, vector< unsigned int > > spaceToMesh(
"spaceToMesh",
"Array in which each space index (obtained by linearizing "
"the xyz coords) specifies which meshIndex is present."
"In many cases the index will store the EMPTY flag if there is"
"no mesh entry at that spatial location",
&CubeMesh::setSpaceToMesh,
&CubeMesh::getSpaceToMesh
);
static ValueFinfo< CubeMesh, vector< unsigned int > > surface(
"surface",
"Array specifying surface of arbitrary volume within the "
"CubeMesh. All entries must fall within the cuboid. "
"Each entry of the array is a spatial index obtained by "
"linearizing the ix, iy, iz coordinates within the cuboid. "
"So, each entry == ( iz * ny + iy ) * nx + ix"
"Note that the voxels listed on the surface are WITHIN the "
"volume of the CubeMesh object",
&CubeMesh::setSurface,
&CubeMesh::getSurface
);
//////////////////////////////////////////////////////////////
// MsgDest Definitions
//////////////////////////////////////////////////////////////
static DestFinfo buildMesh( "buildMesh",
"Build cubical mesh for geom surface specified by Id, using"
"specified x y z coords as an inside point in mesh",
new OpFunc4< CubeMesh, Id, double, double, double >(
&CubeMesh::buildMesh )
);
//////////////////////////////////////////////////////////////
// Field Elements
//////////////////////////////////////////////////////////////
static Finfo* cubeMeshFinfos[] =
{
&isToroid, // Value
&preserveNumEntries, // Value
&alwaysDiffuse, // Value
&x0, // Value
&y0, // Value
&z0, // Value
&x1, // Value
&y1, // Value
&z1, // Value
&dx, // Value
&dy, // Value
&dz, // Value
&nx, // Value
&ny, // Value
&nz, // Value
&coords, // Value
&meshToSpace, // Value
&spaceToMesh, // Value
&surface, // Value
};
static string doc[] =
{
"Name", "CubeMesh",
"Author", "Upi Bhalla",
"Description", "Chemical compartment with cuboid grid. "
"Defaults to a cube of size 10 microns, with mesh size "
"also 10 microns, so that there is just 1 cubic voxel. "
"These defaults are similar to that of a typical cell. "
"Can be configured to have different x,y,z dimensions and "
"also different dx,dy,dz voxel sizes. ",
};
static Dinfo< CubeMesh > dinfo;
static Cinfo cubeMeshCinfo (
"CubeMesh",
ChemCompt::initCinfo(),
cubeMeshFinfos,
sizeof( cubeMeshFinfos ) / sizeof ( Finfo* ),
&dinfo,
doc,
sizeof(doc)/sizeof(string)
);
return &cubeMeshCinfo;
}
//////////////////////////////////////////////////////////////
// Basic class Definitions
//////////////////////////////////////////////////////////////
static const Cinfo* cubeMeshCinfo = CubeMesh::initCinfo();
//////////////////////////////////////////////////////////////////
// Class stuff.
//////////////////////////////////////////////////////////////////
CubeMesh::CubeMesh()
:
isToroid_( 0 ),
preserveNumEntries_( 1 ),
alwaysDiffuse_( false ),
x0_( 0.0 ),
y0_( 0.0 ),
z0_( 0.0 ),
x1_( 10e-6 ),
y1_( 10e-6 ),
z1_( 10e-6 ),
dx_( 10e-6 ),
dy_( 10e-6 ),
dz_( 10e-6 ),
nx_( 1 ),
ny_( 1 ),
nz_( 1 ),
m2s_( 1, 0 ),
s2m_( 1, 0 )
{
updateCoords();
}
CubeMesh::~CubeMesh()
{
;
}
//////////////////////////////////////////////////////////////////
// Field assignment stuff
//////////////////////////////////////////////////////////////////
// Swaps x0 and x1 if x0 > x1
void swapIfBackward( double& x0, double& x1 )
{
if ( x0 > x1 )
{
double temp = x0;
x0 = x1;
x1 = temp;
}
}
void CubeMesh::fillTwoDimSurface()
{
unsigned int size = nx_ * ny_ * nz_;
if ( nx_ == 1 )
{
for ( unsigned int j = 0; j < ny_; ++j )
surface_.push_back( j );
for ( unsigned int j = size - ny_; j < size; ++j )
surface_.push_back( j );
for ( unsigned int i = 1; i < nz_ - 1; ++i )
surface_.push_back( i * ny_ );
for ( unsigned int i = 1; i < nz_ - 1; ++i )
surface_.push_back( ny_ - 1 + i * ny_ );
}
else if ( ny_ == 1 )
{
for ( unsigned int k = 0; k < nx_; ++k )
surface_.push_back( k );
for ( unsigned int k = size - nx_; k < size; ++k )
surface_.push_back( k );
for ( unsigned int i = 1; i < nz_ - 1; ++i )
surface_.push_back( i * nx_ );
for ( unsigned int i = 1; i < nz_ - 1; ++i )
surface_.push_back( nx_ - 1 + i * nx_ );
}
else if ( nz_ == 1 )
{
for ( unsigned int k = 0; k < nx_; ++k )
surface_.push_back( k );
for ( unsigned int k = size - nx_; k < size; ++k )
surface_.push_back( k );
for ( unsigned int j = 1; j < ny_ - 1; ++j )
surface_.push_back( j * nx_ );
for ( unsigned int j = 1; j < ny_ - 1; ++j )
surface_.push_back( j * nx_ + nx_ - 1 );
}
// Ah, C++ STL. Look on my works, ye mighty, and despair.
sort( surface_.begin(), surface_.end() );
surface_.erase( unique( surface_.begin(), surface_.end() ),
surface_.end() );
}
void CubeMesh::fillThreeDimSurface() // Need to fix duplicate points.
{
unsigned int size = nx_ * ny_ * nz_;
// z == 0 plane
for ( unsigned int j = 0; j < ny_; ++j )
for ( unsigned int k = 0; k < nx_; ++k )
surface_.push_back( j * nx_ + k );
// z == nz_-1 plane
unsigned int offset = size - nx_ * ny_;
for ( unsigned int j = 0; j < ny_; ++j )
for ( unsigned int k = 0; k < nx_; ++k )
surface_.push_back( offset + j * nx_ + k );
// y == 0 plane
for ( unsigned int i = 0; i < nz_; ++i )
for ( unsigned int k = 0; k < nx_; ++k )
surface_.push_back( i * nx_ * ny_ + k );
// y == ny_-1 plane
offset = nx_ * ( ny_ - 1 );
for ( unsigned int i = 0; i < nz_; ++i )
for ( unsigned int k = 0; k < nx_; ++k )
surface_.push_back( offset + i * nx_ * ny_ + k );
// x == 0 plane
for ( unsigned int i = 0; i < nz_; ++i )
for ( unsigned int j = 0; j < ny_; ++j )
surface_.push_back( ( i * ny_ + j ) * nx_ );
// x == nx_-1 plane
offset = nx_ - 1;
for ( unsigned int i = 0; i < nz_; ++i )
for ( unsigned int j = 0; j < ny_; ++j )
surface_.push_back( offset + ( i * ny_ + j ) * nx_ );
sort( surface_.begin(), surface_.end() );
surface_.erase( unique( surface_.begin(), surface_.end() ),
surface_.end() );
}
/**
* This assumes that dx, dy, dz are the quantities to preserve, over
* numEntries.
* So when the compartment changes volume, so does numEntries. dx, dy, dz
* do not change, some of the sub-cuboids will partially be outside.
*/
void CubeMesh::updateCoords()
{
swapIfBackward( x0_, x1_ );
swapIfBackward( y0_, y1_ );
swapIfBackward( z0_, z1_ );
if ( preserveNumEntries_ )
{
dx_ = ( x1_ - x0_ ) / nx_;
dy_ = ( y1_ - y0_ ) / ny_;
dz_ = ( z1_ - z0_ ) / nz_;
}
else
{
nx_ = round( (x1_ - x0_) / dx_ );
ny_ = round( (y1_ - y0_) / dy_ );
nz_ = round( (z1_ - z0_) / dz_ );
if ( nx_ == 0 ) nx_ = 1;
if ( ny_ == 0 ) ny_ = 1;
if ( nz_ == 0 ) nz_ = 1;
}
/// Temporarily fill out the whole cube for m2s and s2m. These
// will change for none-cube geometries.
unsigned int size = nx_ * ny_ * nz_;
m2s_.resize( size );
s2m_.resize( size );
for ( unsigned int i = 0; i < size; ++i )
{
m2s_[i] = s2m_[i] = i;
}
// Fill out surface vector
surface_.resize( 0 );
/*
if ( numDims() == 0 ) {
surface_.push_back( 0 );
} else if ( numDims() == 1 ) {
surface_.push_back( 0 );
if ( size > 1 )
surface_.push_back( size - 1 );
} else if ( numDims() == 2 ) {
fillTwoDimSurface();
} else if ( numDims() == 3 ) {
fillThreeDimSurface();
}
*/
fillThreeDimSurface();
// volume_ = ( x1_ - x0_ ) * ( y1_ - y0_ ) * ( z1_ - z0_ );
assert( size >= 0 );
buildStencil();
}
void CubeMesh::setX0( double v )
{
x0_ = v;
updateCoords();
}
double CubeMesh::getX0() const
{
return x0_;
}
void CubeMesh::setY0( double v )
{
y0_ = v;
updateCoords();
}
double CubeMesh::getY0() const
{
return y0_;
}
void CubeMesh::setZ0( double v )
{
z0_ = v;
updateCoords();
}
double CubeMesh::getZ0() const
{
return z0_;
}
void CubeMesh::setX1( double v )
{
x1_ = v;
updateCoords();
}
double CubeMesh::getX1() const
{
return x1_;
}
void CubeMesh::setY1( double v )
{
y1_ = v;
updateCoords();
}
double CubeMesh::getY1() const
{
return y1_;
}
void CubeMesh::setZ1( double v )
{
z1_ = v;
updateCoords();
}
double CubeMesh::getZ1() const
{
return z1_;
}
void CubeMesh::setDx( double v )
{
dx_ = v;
updateCoords();
}
double CubeMesh::getDx() const
{
return dx_;
}
void CubeMesh::setDy( double v )
{
dy_ = v;
updateCoords();
}
double CubeMesh::getDy() const
{
return dy_;
}
void CubeMesh::setDz( double v )
{
dz_ = v;
updateCoords();
}
double CubeMesh::getDz() const
{
return dz_;
}
void CubeMesh::setNx( unsigned int v )
{
nx_ = v;
updateCoords();
}
unsigned int CubeMesh::getNx() const
{
return nx_;
}
void CubeMesh::setNy( unsigned int v )
{
ny_ = v;
updateCoords();
}
unsigned int CubeMesh::getNy() const
{
return ny_;
}
void CubeMesh::setNz( unsigned int v )
{
nz_ = v;
updateCoords();
}
unsigned int CubeMesh::getNz() const
{
return nz_;
}
void CubeMesh::setIsToroid( bool v )
{
isToroid_ = v;
}
bool CubeMesh::getIsToroid() const
{
return isToroid_;
}
void CubeMesh::setPreserveNumEntries( bool v )
{
preserveNumEntries_ = v;
}
bool CubeMesh::getPreserveNumEntries() const
{
return preserveNumEntries_;
}
void CubeMesh::setAlwaysDiffuse( bool v )
{
alwaysDiffuse_ = v;
}
bool CubeMesh::getAlwaysDiffuse() const
{
// alwaysDiffuse is normally false.
return alwaysDiffuse_;
}
void CubeMesh::innerSetCoords( const vector< double >& v)
{
if ( v.size() < 6 )
return;
x0_ = v[0];
y0_ = v[1];
z0_ = v[2];
x1_ = v[3];
y1_ = v[4];
z1_ = v[5];
bool temp = preserveNumEntries_;
if ( v.size() >= 9 )
{
dx_ = v[6];
dy_ = v[7];
dz_ = v[8];
preserveNumEntries_ = 0;
}
else
{
preserveNumEntries_ = 1;
}
updateCoords();
preserveNumEntries_ = temp;
}
void CubeMesh::setCoords( const Eref& e, vector< double > v)
{
// double oldVol = getMeshEntryVolume( 0 );
innerSetCoords( v );
ChemCompt::voxelVolOut()->send( e, vGetVoxelVolume() );
}
vector< double > CubeMesh::getCoords( const Eref& e ) const
{
vector< double > ret( 9 );
ret[0] = x0_;
ret[1] = y0_;
ret[2] = z0_;
ret[3] = x1_;
ret[4] = y1_;
ret[5] = z1_;
ret[6] = dx_;
ret[7] = dy_;
ret[8] = dz_;
return ret;
}
void CubeMesh::setMeshToSpace( vector< unsigned int > v )
{
m2s_ = v;
deriveS2mFromM2s();
}
vector< unsigned int > CubeMesh::getMeshToSpace() const
{
return m2s_;
}
void CubeMesh::setSpaceToMesh( vector< unsigned int > v )
{
s2m_ = v;
deriveM2sFromS2m();
}
vector< unsigned int > CubeMesh::getSpaceToMesh() const
{
return s2m_;
}
void CubeMesh::setSurface( vector< unsigned int > v )
{
surface_ = v;
}
vector< unsigned int > CubeMesh::getSurface() const
{
return surface_;
}
unsigned int CubeMesh::innerGetDimensions() const
{
return 3;
}
//////////////////////////////////////////////////////////////////
// DestFinfos
//////////////////////////////////////////////////////////////////
void CubeMesh::buildMesh( Id geom, double x, double y, double z )
{
;
}
/**
* Builds something as close to a cube as can get. This needs a
* smarter boundary handling code than I have here. For now, goes for
* the nearest cube
*/
void CubeMesh::innerBuildDefaultMesh( const Eref& e,
double volume, unsigned int numEntries )
{
double approxN = numEntries;
approxN = pow( approxN, 1.0 / 3.0 );
unsigned int smaller = floor( approxN );
unsigned int bigger = ceil( approxN );
unsigned int numSide;
if ( smaller != bigger )
{
numSide = smaller;
}
else
{
unsigned int smallerVol = smaller * smaller * smaller;
unsigned int biggerVol = bigger * bigger * bigger;
if ( numEntries - smallerVol < biggerVol - numEntries )
numSide = smaller;
else
numSide = bigger;
}
double side = pow( volume, 1.0 / 3.0 );
vector< double > coords( 9, side );
coords[0] = coords[1] = coords[2] = 0;
coords[6] = coords[7] = coords[8] = side / numSide;
nx_ = ny_ = nz_ = numSide;
setCoords( e, coords );
}
/// More inherited virtual funcs: request comes in for mesh stats
void CubeMesh::innerHandleRequestMeshStats( const Eref& e,
const SrcFinfo2< unsigned int, vector< double > >* meshStatsFinfo )
{
vector< double > meshVolumes( 1, dx_ * dy_ * dz_ );
meshStatsFinfo->send( e, nx_ * ny_ * nz_, meshVolumes);
}
/// Generate node decomposition of mesh, send it out along
/// meshSplitFinfo msg
void CubeMesh::innerHandleNodeInfo(
const Eref& e,
unsigned int numNodes, unsigned int numThreads )
{
/*
unsigned int numEntries = nx_ * ny_ * nz_ ;
vector< double > vols( numEntries, dx_ * dy_ * dz_ );
vector< unsigned int > localEntries( numEntries );
vector< vector< unsigned int > > outgoingEntries;
vector< vector< unsigned int > > incomingEntries;
double oldvol = getMeshEntryVolume( 0 );
meshSplit()->send( e,
oldvol,
vols, localEntries,
outgoingEntries, incomingEntries );
*/
}
double CubeMesh::vGetEntireVolume() const
{
return fabs( (x1_ - x0_) * (y1_ - y0_) * (z1_ - z0_) );
}
//////////////////////////////////////////////////////////////////
// FieldElement assignment stuff for MeshEntries
//////////////////////////////////////////////////////////////////
/// Virtual function to return MeshType of specified entry.
unsigned int CubeMesh::getMeshType( unsigned int fid ) const
{
return CUBOID;
}
/// Virtual function to return dimensions of specified entry.
unsigned int CubeMesh::getMeshDimensions( unsigned int fid ) const
{
return 3;
}
/// Virtual function to return volume of mesh Entry.
double CubeMesh::getMeshEntryVolume( unsigned int fid ) const
{
return dx_ * dy_ * dz_;
}
/// Virtual function to return volume of mesh Entry, including
// for diffusively coupled voxels from other solvers.
double CubeMesh::extendedMeshEntryVolume( unsigned int fid ) const
{
if ( fid >= m2s_.size() )
{
return MeshCompt::extendedMeshEntryVolume( fid - m2s_.size() );
}
return dx_ * dy_ * dz_;
}
/// Virtual function to return coords of mesh Entry.
/// For Cuboid mesh, coords are x1y1z1 x2y2z2
vector< double > CubeMesh::getCoordinates( unsigned int fid ) const
{
assert( fid < m2s_.size() );
unsigned int spaceIndex = m2s_[fid];
unsigned int ix = spaceIndex % nx_;
unsigned int iy = (spaceIndex / nx_) % ny_;
unsigned int iz = (spaceIndex / ( nx_ * ny_ )) % nz_;
vector< double > ret( 6 );
ret[0] = x0_ + ix * dx_;
ret[1] = y0_ + iy * dy_;
ret[2] = z0_ + iz * dz_;
ret[3] = x0_ + ix * dx_ + dx_;
ret[4] = y0_ + iy * dy_ + dx_;
ret[5] = z0_ + iz * dz_ + dx_;
return ret;
}
unsigned int CubeMesh::neighbor( unsigned int spaceIndex,
int dx, int dy, int dz ) const
{
int ix = spaceIndex % nx_;
int iy = (spaceIndex / nx_) % ny_;
int iz = (spaceIndex / ( nx_ * ny_ )) % nz_;
ix += dx;
iy += dy;
iz += dz;
if ( ix < 0 || ix >= static_cast< int >( nx_ ) )
return EMPTY;
if ( iy < 0 || iy >= static_cast< int >( ny_ ) )
return EMPTY;
if ( iz < 0 || iz >= static_cast< int >( nz_ ) )
return EMPTY;
unsigned int nIndex = ( ( iz * ny_ ) + iy ) * nx_ + ix;
return s2m_[nIndex];
}
/// Virtual function to return diffusion X-section area for each neighbor
vector< double > CubeMesh::getDiffusionArea( unsigned int fid ) const
{
assert( fid < m2s_.size() );
vector< double > ret;
unsigned int spaceIndex = m2s_[fid];
unsigned int nIndex = neighbor( spaceIndex, 0, 0, 1 );
if ( nIndex != EMPTY )
ret.push_back( dx_ * dy_ );
nIndex = neighbor( spaceIndex, 0, 0, -1 );
if ( nIndex != EMPTY )
ret.push_back( dx_ * dy_ );
nIndex = neighbor( spaceIndex, 0, 1, 0 );
if ( nIndex != EMPTY )
ret.push_back( dz_ * dx_ );
nIndex = neighbor( spaceIndex, 0, -1, 0 );
if ( nIndex != EMPTY )
ret.push_back( dz_ * dx_ );
nIndex = neighbor( spaceIndex, 1, 0, 0 );
if ( nIndex != EMPTY )
ret.push_back( dy_ * dz_ );
nIndex = neighbor( spaceIndex, -1, 0, 0 );
if ( nIndex != EMPTY )
ret.push_back( dy_ * dz_ );
return ret;
}
/// Virtual function to return scale factor for diffusion. 1 here.
vector< double > CubeMesh::getDiffusionScaling( unsigned int fid ) const
{
return vector< double >( 6, 1.0 );
}
//////////////////////////////////////////////////////////////////
/**
* Inherited virtual func. Returns number of MeshEntry in array
*/
unsigned int CubeMesh::innerGetNumEntries() const
{
return m2s_.size();
}
/**
* Inherited virtual func. Assigns number of MeshEntries.
*/
void CubeMesh::innerSetNumEntries( unsigned int n )
{
cout << "Warning: CubeMesh::innerSetNumEntries is readonly.\n";
}
// We assume this is linear diffusion for now. Fails for 2 or 3-D diffusion
vector< unsigned int > CubeMesh::getParentVoxel() const
{
unsigned int numEntries = innerGetNumEntries();
vector< unsigned int > ret( numEntries );
if ( numEntries > 0 )
ret[0] = static_cast< unsigned int >( -1 );
for (unsigned int i = 1; i < numEntries; ++i )
ret[i] = i-1;
return ret;
}
const vector< double >& CubeMesh::vGetVoxelVolume() const
{
static vector< double > vol;
vol.clear();
vol.resize( nx_ * ny_ * nz_, dx_ * dy_ * dz_ );
return vol;
}
const vector< double >& CubeMesh::vGetVoxelMidpoint() const
{
static vector< double > midpoint;
midpoint.resize( m2s_.size() * 3 );
for ( unsigned int i = 0; i < m2s_.size(); ++i ) // x coords. Lowest.
midpoint[i] = x0_ + ( 0.5 + (m2s_[i] % nx_ ) ) * dx_;
for ( unsigned int i = 0; i < m2s_.size(); ++i ) // y coords. Middle.
{
unsigned int k = i + m2s_.size();
midpoint[k] = y0_ + ( 0.5 + ( (m2s_[i] / nx_) % ny_ ) ) * dy_;
}
for ( unsigned int i = 0; i < m2s_.size(); ++i ) // z coords. Top.
{
unsigned int k = i + m2s_.size() * 2;
midpoint[k] = z0_ + ( 0.5 + ( m2s_[i] / ( nx_ * ny_ ) ) ) * dz_;
}
return midpoint;
}
const vector< double >& CubeMesh::getVoxelArea() const
{
static vector< double > area;
if ( nx_ * ny_ == 1 )
area.resize( nz_, dx_ * dy_ );
else if ( nx_ * nz_ == 1 )
area.resize( ny_, dx_ * dz_ );
else if ( ny_ * nz_ == 1 )
area.resize( nx_, dy_ * dz_ );
else
area.resize( nx_, dy_ * dz_ ); // Just put in a number.
assert( area.size() == nx_ * ny_ * nz_ );
return area;
}
const vector< double >& CubeMesh::getVoxelLength() const
{
static vector< double > length;
if ( dx_ > dy_ && dx_ > dz_ )
length.assign( innerGetNumEntries(), dx_ );
else if ( dy_ > dz_ )
length.assign( innerGetNumEntries(), dy_ );
else
length.assign( innerGetNumEntries(), dz_ );
return length;
}
bool CubeMesh::vSetVolumeNotRates( double vol )
{
// Leave x0,y0.z0 and nx,ny,nz the same. Do NOT update any rates.
double oldvol = vGetEntireVolume();
double linscale = pow( vol / oldvol, 1.0 / 3.0 );
dx_ *= linscale;
dy_ *= linscale;
dz_ *= linscale;
x1_ = x0_ + dx_;
y1_ = y0_ + dy_;
z1_ = z0_ + dz_;