-
Notifications
You must be signed in to change notification settings - Fork 1
/
LinearElasticity.cc
1045 lines (878 loc) · 31.7 KB
/
LinearElasticity.cc
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
// -*- coding: utf-8; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*-
#include <LinearElasticity.h>
/*
Authors: Niels Aage, Erik Andreassen, Boyan Lazarov, August 2013
Disclaimer:
The authors reserves all rights but does not guaranty that the code is
free from errors. Furthermore, we shall not be liable in any event
caused by the use of the program.
*/
LinearElasticity::LinearElasticity(TopOpt *opt){
// Set pointers to null
K = NULL;
U = NULL;
RHS = NULL;
N = NULL;
ksp = NULL;
// Setup sitffness matrix, load vector and bcs (Dirichlet) for the design problem
SetUpLoadAndBC(opt);
}
LinearElasticity::~LinearElasticity(){
// Deallocate
VecDestroy(&(U));
VecDestroy(&(RHS));
VecDestroy(&(N));
MatDestroy(&(K));
KSPDestroy(&(ksp));
}
PetscErrorCode LinearElasticity::SetUpLoadAndBC(TopOpt *opt){
PetscErrorCode ierr;
// Allocate matrix and the RHS and Solution vector and Dirichlet vector
ierr = DMCreateMatrix(opt->da_nodes,&(K)); CHKERRQ(ierr);
ierr = DMCreateGlobalVector(opt->da_nodes,&(U)); CHKERRQ(ierr);
VecDuplicate(U,&(RHS));
VecDuplicate(U,&(N));
// Set the local stiffness matrix
PetscScalar a = opt->dx; // x-side length
PetscScalar b = opt->dy; // y-side length
PetscScalar c = opt->dz; // z-side length
PetscScalar X[8] = {0.0, a, a, 0.0, 0.0, a, a, 0.0};
PetscScalar Y[8] = {0.0, 0.0, b, b, 0.0, 0.0, b, b};
PetscScalar Z[8] = {0.0, 0.0, 0.0, 0.0, c, c, c, c};
// Compute the element stiffnes matrix - constant due to structured grid
Hex8Isoparametric(X, Y, Z, 0.3, false, KE);
// Set the RHS and Dirichlet vector
VecSet(N,1.0);
VecSet(RHS,0.0);
// Global coordinates and a pointer
Vec lcoor; // borrowed ref - do not destroy!
PetscScalar *lcoorp;
// Get local coordinates in local node numbering including ghosts
ierr = DMGetCoordinatesLocal(opt->da_nodes,&lcoor); CHKERRQ(ierr);
VecGetArray(lcoor,&lcoorp);
// Get local dof number
PetscInt nn;
VecGetSize(lcoor,&nn);
// Compute epsilon parameter for finding points in space:
PetscScalar epsi = PetscMin(a*0.05,PetscMin(b*0.05,c*0.05));
/* write load case to screen */
PetscPrintf(PETSC_COMM_WORLD,
"##############################################################\n");
ierr = PetscPrintf(PETSC_COMM_WORLD, "Setting supports and loads for loadcase %d\n",
opt->loadcase);CHKERRQ(ierr);
for (PetscInt i=0;i<nn;i++){
if(opt->loadcase == opt->torsion_t) {
/* CASE: torsion */
/* ---supports--- */
// Make a wall with all dofs clamped
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[0]) < epsi){
VecSetValueLocal(N,i,0.0,INSERT_VALUES);
VecSetValueLocal(N,++i,0.0,INSERT_VALUES);
VecSetValueLocal(N,++i,0.0,INSERT_VALUES);
}
/* ---loads--- */
/* z direction */
// Point load(s) (xmax, ymin, (zmin-zmax)/2) negative z, 1 or 2
// depending on if we have a node at half point
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-opt->xc[2]) < epsi &&
PetscAbsScalar(lcoorp[i+2]-(opt->xc[5]-opt->xc[4])/2.0) < (opt->dz/2.0+epsi) ){
if ( PetscAbsScalar(lcoorp[i+2]-(opt->xc[5]-opt->xc[4])/2.0) < epsi ) {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+2,-0.1,INSERT_VALUES); /* a single node */
} else {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+2,-0.05,INSERT_VALUES); /* two nodes */
}
}
// Point load(s) (xmax, ymax, (zmin-zmax)/2) positve z, 1 or 2
// depending on if we have a node at half point
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-opt->xc[3]) < epsi &&
PetscAbsScalar(lcoorp[i+2]-(opt->xc[5]-opt->xc[4])/2.0) < (opt->dz/2+epsi) ){
if ( PetscAbsScalar(lcoorp[i+2]-(opt->xc[5]-opt->xc[4])/2.0) < epsi ) {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+2,0.1,INSERT_VALUES); /* a single node */
} else {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+2,0.05,INSERT_VALUES); /* two nodes */
}
}
/* y direction */
// Point load(s) (xmax, (ymin-ymax)/2, zmin) negative y, 1 or 2
// depending on if we have a node at half point
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-(opt->xc[3]-opt->xc[2])/2.0) < (opt->dy/2.0+epsi) &&
PetscAbsScalar(lcoorp[i+2]-opt->xc[4]) < epsi ){
if ( PetscAbsScalar(lcoorp[i+1]-(opt->xc[3]-opt->xc[2])/2.0) < epsi ) {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+1,-0.1,INSERT_VALUES); /* a single node */
} else {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+1,-0.05,INSERT_VALUES); /* two nodes */
}
}
// Point load(s) (xmax, (ymin-ymax)/2, zmax) positive y, 1 or 2
// depending on if we have a node at half point
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-(opt->xc[3]-opt->xc[2])/2.0) < (opt->dy/2.0+epsi) &&
PetscAbsScalar(lcoorp[i+2]-opt->xc[5]) < epsi ){
if ( PetscAbsScalar(lcoorp[i+1]-(opt->xc[3]-opt->xc[2])/2.0) < epsi ) {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+1,0.1,INSERT_VALUES); /* a single node */
} else {
PetscPrintf(PETSC_COMM_SELF,"nodal load set\n");
VecSetValueLocal(RHS,i+1,0.05,INSERT_VALUES); /* two nodes */
}
}
} else if (opt->loadcase == opt->mbb_t){
/* CASE: mbb */
/* ---supports--- */
// Simply supported line (xmin, ymin, z) y
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[0]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-opt->xc[2]) < epsi){
VecSetValueLocal(N,i+1,0.0,INSERT_VALUES);
}
// Symmetry plane (xmax, y, z) x
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi){
VecSetValueLocal(N,i,0.0,INSERT_VALUES);
}
/* ---loads--- */
// Line load (xmax, ymax, z) negative y
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-opt->xc[3]) < epsi){
// adjust corners zmin zmax
if (PetscAbsScalar(lcoorp[i+2]-opt->xc[4]) < epsi ||
PetscAbsScalar(lcoorp[i+2]-opt->xc[5]) < epsi ){
VecSetValueLocal(RHS,i+1,-0.05,INSERT_VALUES);
} else {
VecSetValueLocal(RHS,i+1,-0.1,INSERT_VALUES);
}
}
} else {
/* CASE: default */
// Set the values:
// In this case: N = the wall at x=xmin is fully clamped
// RHS(z) = sin(pi*y/Ly) at x=xmax,z=zmin;
// OR
// RHS(z) = -0.1 at x=xmax,z=zmin;
// Make a wall with all dofs clamped
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[0]) < epsi){
VecSetValueLocal(N,i,0.0,INSERT_VALUES);
VecSetValueLocal(N,++i,0.0,INSERT_VALUES);
VecSetValueLocal(N,++i,0.0,INSERT_VALUES);
}
// Line load
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+2]-opt->xc[4]) < epsi){
VecSetValueLocal(RHS,i+2,-0.1,INSERT_VALUES);
}
// Adjust the corners
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-opt->xc[2]) < epsi &&
PetscAbsScalar(lcoorp[i+2]-opt->xc[4]) < epsi ){
VecSetValueLocal(RHS,i+2,-0.05,INSERT_VALUES);
}
if (i % 3 == 0 && PetscAbsScalar(lcoorp[i]-opt->xc[1]) < epsi &&
PetscAbsScalar(lcoorp[i+1]-opt->xc[3]) < epsi &&
PetscAbsScalar(lcoorp[i+2]-opt->xc[4]) < epsi){
VecSetValueLocal(RHS,i+2,-0.05,INSERT_VALUES);
}
}
}
VecAssemblyBegin(N);
VecAssemblyBegin(RHS);
VecAssemblyEnd(N);
VecAssemblyEnd(RHS);
VecRestoreArray(lcoor,&lcoorp);
return ierr;
}
PetscErrorCode LinearElasticity::SolveState(TopOpt *opt){
PetscErrorCode ierr;
double t1,t2;
t1 = MPI_Wtime();
// Assemble the stiffness matrix
ierr = AssembleStiffnessMatrix(opt);
CHKERRQ(ierr);
// Setup the solver
if (ksp==NULL){
ierr = SetUpSolver(opt);
CHKERRQ(ierr);
}
else {
ierr = KSPSetOperators(ksp,K,K);
CHKERRQ(ierr);
KSPSetUp(ksp);
}
// Solve
ierr = KSPSolve(ksp,RHS,U); CHKERRQ(ierr);
CHKERRQ(ierr);
// DEBUG
// Get iteration number and residual from KSP
PetscInt niter;
PetscScalar rnorm;
KSPGetIterationNumber(ksp,&niter);
KSPGetResidualNorm(ksp,&rnorm);
t2 = MPI_Wtime();
PetscPrintf(PETSC_COMM_WORLD,"State solver: iter: %i, rerr.: %e, time: %f\n",niter,rnorm,t2-t1);
return ierr;
}
PetscErrorCode LinearElasticity::ComputeObjectiveConstraints(TopOpt *opt) {
// Error code
PetscErrorCode ierr;
// Solve state eqs
ierr = SolveState(opt); CHKERRQ(ierr);
// Get the FE mesh structure (from the nodal mesh)
PetscInt nel, nen;
const PetscInt *necon;
ierr = DMDAGetElements_3D(opt->da_nodes,&nel,&nen,&necon); CHKERRQ(ierr);
// Get pointer to the densities
PetscScalar *xp;
VecGetArray(opt->xPhys,&xp);
// Get Solution
Vec Uloc;
DMCreateLocalVector(opt->da_nodes,&Uloc);
DMGlobalToLocalBegin(opt->da_nodes,U,INSERT_VALUES,Uloc);
DMGlobalToLocalEnd(opt->da_nodes,U,INSERT_VALUES,Uloc);
// get pointer to local vector
PetscScalar *up;
VecGetArray(Uloc,&up);
// Edof array
PetscInt edof[24];
opt->fx = 0.0;
// Loop over elements
for (PetscInt i=0;i<nel;i++){
// loop over element nodes
for (PetscInt j=0;j<nen;j++){
// Get local dofs
for (PetscInt k=0;k<3;k++){
edof[j*3+k] = 3*necon[i*nen+j]+k;
}
}
// Use SIMP for stiffness interpolation
PetscScalar uKu=0.0;
for (PetscInt k=0;k<24;k++){
for (PetscInt h=0;h<24;h++){
uKu += up[edof[k]]*KE[k*24+h]*up[edof[h]];
}
}
// Add to objective
opt->fx += (opt->Emin + PetscPowScalar(xp[i],opt->penal)*(opt->Emax - opt->Emin))*uKu;
}
// Allreduce fx[0]
PetscScalar tmp=opt->fx;
opt->fx=0.0;
MPI_Allreduce(&tmp,&(opt->fx),1,MPIU_SCALAR,MPI_SUM,PETSC_COMM_WORLD);
// Compute volume constraint gx[0]
opt->gx[0]=0;
VecSum(opt->xPhys, &(opt->gx[0]));
opt->gx[0]=opt->gx[0]/(((PetscScalar)opt->n)*opt->volfrac)-1.0;
VecRestoreArray(opt->xPhys,&xp);
VecRestoreArray(Uloc,&up);
VecDestroy(&Uloc);
return(ierr);
}
PetscErrorCode LinearElasticity::ComputeSensitivities(TopOpt *opt) {
PetscErrorCode ierr;
// Get the FE mesh structure (from the nodal mesh)
PetscInt nel, nen;
const PetscInt *necon;
ierr = DMDAGetElements_3D(opt->da_nodes,&nel,&nen,&necon); CHKERRQ(ierr);
// Get pointer to the densities
PetscScalar *xp;
VecGetArray(opt->xPhys,&xp);
// Get Solution
Vec Uloc;
DMCreateLocalVector(opt->da_nodes,&Uloc);
DMGlobalToLocalBegin(opt->da_nodes,U,INSERT_VALUES,Uloc);
DMGlobalToLocalEnd(opt->da_nodes,U,INSERT_VALUES,Uloc);
// get pointer to local vector
PetscScalar *up;
VecGetArray(Uloc,&up);
// Get dfdx
PetscScalar *df;
VecGetArray(opt->dfdx,&df);
// Edof array
PetscInt edof[24];
// Loop over elements
for (PetscInt i=0;i<nel;i++){
// loop over element nodes
for (PetscInt j=0;j<nen;j++){
// Get local dofs
for (PetscInt k=0;k<3;k++){
edof[j*3+k] = 3*necon[i*nen+j]+k;
}
}
// Use SIMP for stiffness interpolation
PetscScalar uKu=0.0;
for (PetscInt k=0;k<24;k++){
for (PetscInt h=0;h<24;h++){
uKu += up[edof[k]]*KE[k*24+h]*up[edof[h]];
}
}
// Set the Senstivity
df[i]= -1.0 * opt->penal*PetscPowScalar(xp[i],opt->penal-1)*(opt->Emax - opt->Emin)*uKu;
}
// Compute volume constraint gx[0]
VecSet(opt->dgdx[0],1.0/(((PetscScalar)opt->n)*opt->volfrac));
VecRestoreArray(opt->xPhys,&xp);
VecRestoreArray(Uloc,&up);
VecRestoreArray(opt->dfdx,&df);
VecDestroy(&Uloc);
return(ierr);
}
PetscErrorCode LinearElasticity::ComputeObjectiveConstraintsSensitivities(TopOpt *opt) {
// Errorcode
PetscErrorCode ierr;
// Solve state eqs
ierr = SolveState(opt); CHKERRQ(ierr);
// Get the FE mesh structure (from the nodal mesh)
PetscInt nel, nen;
const PetscInt *necon;
ierr = DMDAGetElements_3D(opt->da_nodes,&nel,&nen,&necon); CHKERRQ(ierr);
//DMDAGetElements(da_nodes,&nel,&nen,&necon); // Still issue with elemtype change !
// Get pointer to the densities
PetscScalar *xp;
VecGetArray(opt->xPhys,&xp);
// Get Solution
Vec Uloc;
DMCreateLocalVector(opt->da_nodes,&Uloc);
DMGlobalToLocalBegin(opt->da_nodes,U,INSERT_VALUES,Uloc);
DMGlobalToLocalEnd(opt->da_nodes,U,INSERT_VALUES,Uloc);
// get pointer to local vector
PetscScalar *up;
VecGetArray(Uloc,&up);
// Get dfdx
PetscScalar *df;
VecGetArray(opt->dfdx,&df);
// Edof array
PetscInt edof[24];
opt->fx = 0.0;
// Loop over elements
for (PetscInt i=0;i<nel;i++){
// loop over element nodes
for (PetscInt j=0;j<nen;j++){
// Get local dofs
for (PetscInt k=0;k<3;k++){
edof[j*3+k] = 3*necon[i*nen+j]+k;
}
}
// Use SIMP for stiffness interpolation
PetscScalar uKu=0.0;
for (PetscInt k=0;k<24;k++){
for (PetscInt h=0;h<24;h++){
uKu += up[edof[k]]*KE[k*24+h]*up[edof[h]];
}
}
// Add to objective
opt->fx += (opt->Emin + PetscPowScalar(xp[i],opt->penal)*(opt->Emax - opt->Emin))*uKu;
// Set the Senstivity
df[i]= -1.0 * opt->penal*PetscPowScalar(xp[i],opt->penal-1)*(opt->Emax - opt->Emin)*uKu;
}
// Allreduce fx[0]
PetscScalar tmp=opt->fx;
opt->fx=0.0;
MPI_Allreduce(&tmp,&(opt->fx),1,MPIU_SCALAR,MPI_SUM,PETSC_COMM_WORLD);
// Compute volume constraint gx[0]
opt->gx[0]=0;
VecSum(opt->xPhys, &(opt->gx[0]));
opt->gx[0]=opt->gx[0]/(((PetscScalar)opt->n)*opt->volfrac)-1.0;
VecSet(opt->dgdx[0],1.0/(((PetscScalar)opt->n)*opt->volfrac));
VecRestoreArray(opt->xPhys,&xp);
VecRestoreArray(Uloc,&up);
VecRestoreArray(opt->dfdx,&df);
VecDestroy(&Uloc);
return(ierr);
}
PetscErrorCode LinearElasticity::WriteRestartFiles(){
PetscErrorCode ierr = 0;
// Only dump data if correct allocater has been used
if (!restart){
return -1;
}
// Choose previous set of restart files
if (flip){ flip = PETSC_FALSE; }
else { flip = PETSC_TRUE; }
// Open viewers for writing
PetscViewer view; // vectors
if (!flip){
PetscViewerBinaryOpen(PETSC_COMM_WORLD,filename00.c_str(),FILE_MODE_WRITE,&view);
}
else if (flip){
PetscViewerBinaryOpen(PETSC_COMM_WORLD,filename01.c_str(),FILE_MODE_WRITE,&view);
}
// Write vectors
VecView(U,view);
// Clean up
PetscViewerDestroy(&view);
return ierr;
}
//##################################################################
//##################################################################
//##################################################################
// ######################## PRIVATE ################################
//##################################################################
//##################################################################
PetscErrorCode LinearElasticity::AssembleStiffnessMatrix(TopOpt *opt){
PetscErrorCode ierr;
// Get the FE mesh structure (from the nodal mesh)
PetscInt nel, nen;
const PetscInt *necon;
ierr = DMDAGetElements_3D(opt->da_nodes,&nel,&nen,&necon);
CHKERRQ(ierr);
// Get pointer to the densities
PetscScalar *xp;
VecGetArray(opt->xPhys,&xp);
// Zero the matrix
MatZeroEntries(K);
// Edof array
PetscInt edof[24];
PetscScalar ke[24*24];
// Loop over elements
for (PetscInt i=0;i<nel;i++){
// loop over element nodes
for (PetscInt j=0;j<nen;j++){
// Get local dofs
for (PetscInt k=0;k<3;k++){
edof[j*3+k] = 3*necon[i*nen+j]+k;
}
}
// Use SIMP for stiffness interpolation
PetscScalar dens = opt->Emin + PetscPowScalar(xp[i],opt->penal)*(opt->Emax-opt->Emin);
for (PetscInt k=0;k<24*24;k++){
ke[k]=KE[k]*dens;
}
// Add values to the sparse matrix
ierr = MatSetValuesLocal(K,24,edof,24,edof,ke,ADD_VALUES);
CHKERRQ(ierr);
}
MatAssemblyBegin(K, MAT_FINAL_ASSEMBLY);
MatAssemblyEnd(K, MAT_FINAL_ASSEMBLY);
// Impose the dirichlet conditions, i.e. K = N'*K*N - (N-I)
// 1.: K = N'*K*N
MatDiagonalScale(K,N,N);
// 2. Add ones, i.e. K = K + NI, NI = I - N
Vec NI;
VecDuplicate(N,&NI);
VecSet(NI,1.0);
VecAXPY(NI,-1.0,N);
MatDiagonalSet(K,NI,ADD_VALUES);
// Zero out possible loads in the RHS that coincide
// with Dirichlet conditions
VecPointwiseMult(RHS,RHS,N);
VecDestroy(&NI);
VecRestoreArray(opt->xPhys,&xp);
DMDARestoreElements(opt->da_nodes,&nel,&nen,&necon);
return ierr;
}
PetscErrorCode LinearElasticity::SetUpSolver(TopOpt *opt){
PetscErrorCode ierr;
// CHECK FOR RESTART POINT
restart = PETSC_TRUE;
flip = PETSC_TRUE;
PetscBool flg, onlyDesign;
onlyDesign = PETSC_FALSE;
char filenameChar[PETSC_MAX_PATH_LEN];
PetscOptionsGetBool(NULL,"-restart",&restart,&flg);
PetscOptionsGetBool(NULL,"-onlyLoadDesign",&onlyDesign,&flg); // DONT READ DESIGN IF THIS IS TRUE
// READ THE RESTART FILE INTO THE SOLUTION VECTOR(S)
if (restart){
// THE FILES FOR WRITING RESTARTS
std::string filenameWorkdir = "./";
PetscOptionsGetString(NULL,"-workdir",filenameChar,sizeof(filenameChar),&flg);
if (flg){
filenameWorkdir = "";
filenameWorkdir.append(filenameChar);
}
filename00 = filenameWorkdir;
filename01 = filenameWorkdir;
filename00.append("/RestartSol00.dat");
filename01.append("/RestartSol01.dat");
// CHECK FOR SOLUTION AND READ TO STATE VECTOR(s)
if (!onlyDesign){
// Where to read the restart point from
std::string restartFileVec = ""; // NO RESTART FILE !!!!!
// GET FILENAME
PetscOptionsGetString(NULL,"-restartFileVecSol",filenameChar,sizeof(filenameChar),&flg);
if (flg) {
restartFileVec.append(filenameChar);
}
// PRINT TO SCREEN
PetscPrintf(PETSC_COMM_WORLD,"# Restarting with solution (State Vector) from (-restartFileVecSol): %s \n",restartFileVec.c_str());
// Check if files exist:
PetscBool vecFile = fexists(restartFileVec);
if (!vecFile) { PetscPrintf(PETSC_COMM_WORLD,"File: %s NOT FOUND \n",restartFileVec.c_str()); }
// READ
if (vecFile){
PetscViewer view;
// Open the data files
ierr = PetscViewerBinaryOpen(PETSC_COMM_WORLD,restartFileVec.c_str(),FILE_MODE_READ,&view);
VecLoad(U,view);
PetscViewerDestroy(&view);
}
}
}
PC pc;
// The fine grid Krylov method
KSPCreate(PETSC_COMM_WORLD,&(ksp));
// SET THE DEFAULT SOLVER PARAMETERS
// The fine grid solver settings
PetscScalar rtol = 1.0e-5;
PetscScalar atol = 1.0e-50;
PetscScalar dtol = 1.0e3;
PetscInt restart = 100;
PetscInt maxitsGlobal = 200;
// Coarsegrid solver
PetscScalar coarse_rtol = 1.0e-8;
PetscScalar coarse_atol = 1.0e-50;
PetscScalar coarse_dtol = 1e3;
PetscInt coarse_maxits = 30;
PetscInt coarse_restart = 30;
// Number of smoothening iterations per up/down smooth_sweeps
PetscInt smooth_sweeps = 4;
// Set up the solver
ierr = KSPSetType(ksp,KSPFGMRES); // KSPCG, KSPGMRES
CHKERRQ(ierr);
ierr = KSPGMRESSetRestart(ksp,restart);
CHKERRQ(ierr);
ierr = KSPSetTolerances(ksp,rtol,atol,dtol,maxitsGlobal);
CHKERRQ(ierr);
ierr = KSPSetInitialGuessNonzero(ksp,PETSC_TRUE);
CHKERRQ(ierr);
ierr = KSPSetOperators(ksp,K,K);
CHKERRQ(ierr);
// The preconditinoer
KSPGetPC(ksp,&pc);
// Make PCMG the default solver
PCSetType(pc,PCMG);
// Set solver from options
KSPSetFromOptions(ksp);
// Get the prec again - check if it has changed
KSPGetPC(ksp,&pc);
// Flag for pcmg pc
PetscBool pcmg_flag = PETSC_TRUE;
PetscObjectTypeCompare((PetscObject)pc,PCMG,&pcmg_flag);
// Only if PCMG is used
if (pcmg_flag){
// DMs for grid hierachy
DM *da_list,*daclist;
Mat R;
PetscMalloc(sizeof(DM)*opt->nlvls,&da_list);
for (PetscInt k=0; k<opt->nlvls; k++) da_list[k] = NULL;
PetscMalloc(sizeof(DM)*opt->nlvls,&daclist);
for (PetscInt k=0; k<opt->nlvls; k++) daclist[k] = NULL;
// Set 0 to the finest level
daclist[0] = opt->da_nodes;
// Coordinates
PetscReal xmin=opt->xc[0], xmax=opt->xc[1], ymin=opt->xc[2], ymax=opt->xc[3], zmin=opt->xc[4], zmax=opt->xc[5];
// Set up the coarse meshes
DMCoarsenHierarchy(opt->da_nodes,opt->nlvls-1,&daclist[1]);
for (PetscInt k=0; k<opt->nlvls; k++) {
// NOTE: finest grid is nlevels - 1: PCMG MUST USE THIS ORDER ???
da_list[k] = daclist[opt->nlvls-1-k];
// THIS SHOULD NOT BE NECESSARY
DMDASetUniformCoordinates(da_list[k],xmin,xmax,ymin,ymax,zmin,zmax);
}
// the PCMG specific options
PCMGSetLevels(pc,opt->nlvls,NULL);
PCMGSetType(pc,PC_MG_MULTIPLICATIVE); // Default
ierr = PCMGSetCycleType(pc,PC_MG_CYCLE_V); CHKERRQ(ierr);
PCMGSetGalerkin(pc,PETSC_TRUE);
for (PetscInt k=1; k<opt->nlvls; k++) {
DMCreateInterpolation(da_list[k-1],da_list[k],&R,NULL);
PCMGSetInterpolation(pc,k,R);
MatDestroy(&R);
}
// tidy up
for (PetscInt k=1; k<opt->nlvls; k++) { // DO NOT DESTROY LEVEL 0
DMDestroy(&daclist[k]);
}
PetscFree(da_list);
PetscFree(daclist);
// AVOID THE DEFAULT FOR THE MG PART
{
// SET the coarse grid solver:
// i.e. get a pointer to the ksp and change its settings
KSP cksp;
PCMGGetCoarseSolve(pc,&cksp);
// The solver
ierr = KSPSetType(cksp,KSPGMRES); // KSPCG, KSPFGMRES
ierr = KSPGMRESSetRestart(cksp,coarse_restart);
ierr = KSPSetTolerances(cksp,coarse_rtol,coarse_atol,coarse_dtol,coarse_maxits);
// The preconditioner
PC cpc;
KSPGetPC(cksp,&cpc);
PCSetType(cpc,PCSOR); // PCSOR, PCSPAI (NEEDS TO BE COMPILED), PCJACOBI
// Set smoothers on all levels (except for coarse grid):
for (PetscInt k=1;k<opt->nlvls;k++){
KSP dksp;
PCMGGetSmoother(pc,k,&dksp);
PC dpc;
KSPGetPC(dksp,&dpc);
ierr = KSPSetType(dksp,KSPGMRES); // KSPCG, KSPGMRES, KSPCHEBYSHEV (VERY GOOD FOR SPD)
ierr = KSPGMRESSetRestart(dksp,smooth_sweeps);
ierr = KSPSetTolerances(dksp,PETSC_DEFAULT,PETSC_DEFAULT,PETSC_DEFAULT,smooth_sweeps); // NOTE in the above maxitr=restart;
PCSetType(dpc,PCSOR);// PCJACOBI, PCSOR for KSPCHEBYSHEV very good
}
}
}
// Write check to screen:
// Check the overall Krylov solver
KSPType ksptype;
KSPGetType(ksp,&ksptype);
PCType pctype;
PCGetType(pc,&pctype);
PetscInt mmax;
KSPGetTolerances(ksp,NULL,NULL,NULL,&mmax);
PetscPrintf(PETSC_COMM_WORLD,"##############################################################\n");
PetscPrintf(PETSC_COMM_WORLD,"################# Linear solver settings #####################\n");
PetscPrintf(PETSC_COMM_WORLD,"# Main solver: %s, prec.: %s, maxiter.: %i \n",ksptype,pctype,mmax);
// Only if pcmg is used
if (pcmg_flag){
// Check the smoothers and coarse grid solver:
for (PetscInt k=0;k<opt->nlvls;k++){
KSP dksp;
PC dpc;
KSPType dksptype;
PCMGGetSmoother(pc,k,&dksp);
KSPGetType(dksp,&dksptype);
KSPGetPC(dksp,&dpc);
PCType dpctype;
PCGetType(dpc,&dpctype);
PetscInt mmax;
KSPGetTolerances(dksp,NULL,NULL,NULL,&mmax);
PetscPrintf(PETSC_COMM_WORLD,"# Level %i smoother: %s, prec.: %s, sweep: %i \n",k,dksptype,dpctype,mmax);
}
}
PetscPrintf(PETSC_COMM_WORLD,"##############################################################\n");
return(ierr);
}
PetscErrorCode LinearElasticity::DMDAGetElements_3D(DM dm,PetscInt *nel,PetscInt *nen,const PetscInt *e[]) {
PetscErrorCode ierr;
DM_DA *da = (DM_DA*)dm->data;
PetscInt i,xs,xe,Xs,Xe;
PetscInt j,ys,ye,Ys,Ye;
PetscInt k,zs,ze,Zs,Ze;
PetscInt cnt=0, cell[8], ns=1, nn=8;
PetscInt c;
if (!da->e) {
if (da->elementtype == DMDA_ELEMENT_Q1) {ns=1; nn=8;}
ierr = DMDAGetCorners(dm,&xs,&ys,&zs,&xe,&ye,&ze);
CHKERRQ(ierr);
ierr = DMDAGetGhostCorners(dm,&Xs,&Ys,&Zs,&Xe,&Ye,&Ze);
CHKERRQ(ierr);
xe += xs; Xe += Xs; if (xs != Xs) xs -= 1;
ye += ys; Ye += Ys; if (ys != Ys) ys -= 1;
ze += zs; Ze += Zs; if (zs != Zs) zs -= 1;
da->ne = ns*(xe - xs - 1)*(ye - ys - 1)*(ze - zs - 1);
PetscMalloc((1 + nn*da->ne)*sizeof(PetscInt),&da->e);
for (k=zs; k<ze-1; k++) {
for (j=ys; j<ye-1; j++) {
for (i=xs; i<xe-1; i++) {
cell[0] = (i-Xs ) + (j-Ys )*(Xe-Xs) + (k-Zs )*(Xe-Xs)*(Ye-Ys);
cell[1] = (i-Xs+1) + (j-Ys )*(Xe-Xs) + (k-Zs )*(Xe-Xs)*(Ye-Ys);
cell[2] = (i-Xs+1) + (j-Ys+1)*(Xe-Xs) + (k-Zs )*(Xe-Xs)*(Ye-Ys);
cell[3] = (i-Xs ) + (j-Ys+1)*(Xe-Xs) + (k-Zs )*(Xe-Xs)*(Ye-Ys);
cell[4] = (i-Xs ) + (j-Ys )*(Xe-Xs) + (k-Zs+1)*(Xe-Xs)*(Ye-Ys);
cell[5] = (i-Xs+1) + (j-Ys )*(Xe-Xs) + (k-Zs+1)*(Xe-Xs)*(Ye-Ys);
cell[6] = (i-Xs+1) + (j-Ys+1)*(Xe-Xs) + (k-Zs+1)*(Xe-Xs)*(Ye-Ys);
cell[7] = (i-Xs ) + (j-Ys+1)*(Xe-Xs) + (k-Zs+1)*(Xe-Xs)*(Ye-Ys);
if (da->elementtype == DMDA_ELEMENT_Q1) {
for (c=0; c<ns*nn; c++) da->e[cnt++] = cell[c];
}
}
}
}
}
*nel = da->ne;
*nen = nn;
*e = da->e;
return(0);
}
PetscInt LinearElasticity::Hex8Isoparametric(PetscScalar *X, PetscScalar *Y, PetscScalar *Z, PetscScalar nu, PetscInt redInt, PetscScalar *ke){
// HEX8_ISOPARAMETRIC - Computes HEX8 isoparametric element matrices
// The element stiffness matrix is computed as:
//
// ke = int(int(int(B^T*C*B,x),y),z)
//
// For an isoparameteric element this integral becomes:
//
// ke = int(int(int(B^T*C*B*det(J),xi=-1..1),eta=-1..1),zeta=-1..1)
//
// where B is the more complicated expression:
// B = [dx*alpha1 + dy*alpha2 + dz*alpha3]*N
// where
// dx = [invJ11 invJ12 invJ13]*[dxi deta dzeta]
// dy = [invJ21 invJ22 invJ23]*[dxi deta dzeta]
// dy = [invJ31 invJ32 invJ33]*[dxi deta dzeta]
//
// Remark: The elasticity modulus is left out in the below
// computations, because we multiply with it afterwards (the aim is
// topology optimization).
// Furthermore, this is not the most efficient code, but it is readable.
//
/////////////////////////////////////////////////////////////////////////////////
//////// INPUT:
// X, Y, Z = Vectors containing the coordinates of the eight nodes
// (x1,y1,z1,x2,y2,z2,...,x8,y8,z8). Where node 1 is in the lower
// left corner, and node 2 is the next node counterclockwise
// (looking in the negative z-dir).
// Finish the x-y-plane and then move in the positive z-dir.
// redInt = Reduced integration option boolean (here an integer).
// redInt == 0 (false): Full integration
// redInt == 1 (true): Reduced integration
// nu = Poisson's ratio.
//
//////// OUTPUT:
// ke = Element stiffness matrix. Needs to be multiplied with elasticity modulus
//
// Written 2013 at
// Department of Mechanical Engineering
// Technical University of Denmark (DTU).
/////////////////////////////////////////////////////////////////////////////////
//// COMPUTE ELEMENT STIFFNESS MATRIX
// Lame's parameters (with E=1.0):
PetscScalar lambda = nu/((1.0+nu)*(1.0-2.0*nu));
PetscScalar mu = 1.0/(2.0*(1.0+nu));
// Constitutive matrix
PetscScalar C[6][6] = {{lambda+2.0*mu, lambda, lambda, 0.0, 0.0, 0.0},
{lambda, lambda+2.0*mu, lambda, 0.0, 0.0, 0.0},
{lambda, lambda, lambda+2.0*mu, 0.0, 0.0, 0.0},
{0.0, 0.0, 0.0, mu, 0.0, 0.0},
{0.0, 0.0, 0.0, 0.0, mu, 0.0},
{0.0, 0.0, 0.0, 0.0, 0.0, mu}};
// Gauss points (GP) and weigths
// Two Gauss points in all directions (total of eight)
PetscScalar GP[2] = {-0.577350269189626, 0.577350269189626};
// Corresponding weights
PetscScalar W[2] = {1.0, 1.0};
// If reduced integration only use one GP
if (redInt){
GP[1] = 0.0;
W[1] = 2.0;
}
// Matrices that help when we gather the strain-displacement matrix:
PetscScalar alpha1[6][3]; PetscScalar alpha2[6][3]; PetscScalar alpha3[6][3];
memset(alpha1, 0, sizeof(alpha1[0][0])*6*3); // zero out
memset(alpha2, 0, sizeof(alpha2[0][0])*6*3); // zero out
memset(alpha3, 0, sizeof(alpha3[0][0])*6*3); // zero out
alpha1[0][0] = 1.0; alpha1[3][1] = 1.0; alpha1[5][2] = 1.0;
alpha2[1][1] = 1.0; alpha2[3][0] = 1.0; alpha2[4][2] = 1.0;
alpha3[2][2] = 1.0; alpha3[4][1] = 1.0; alpha3[5][0] = 1.0;
PetscScalar dNdxi[8]; PetscScalar dNdeta[8]; PetscScalar dNdzeta[8];
PetscScalar J[3][3];
PetscScalar invJ[3][3];
PetscScalar beta[6][3];
PetscScalar B[6][24]; // Note: Small enough to be allocated on stack
PetscScalar *dN;
// Make sure the stiffness matrix is zeroed out:
memset(ke, 0, sizeof(ke[0])*24*24);
// Perform the numerical integration
for (PetscInt ii=0; ii<2-redInt; ii++){
for (PetscInt jj=0; jj<2-redInt; jj++){
for (PetscInt kk=0; kk<2-redInt; kk++){
// Integration point
PetscScalar xi = GP[ii];
PetscScalar eta = GP[jj];
PetscScalar zeta = GP[kk];
// Differentiated shape functions
DifferentiatedShapeFunctions(xi, eta, zeta, dNdxi, dNdeta, dNdzeta);
// Jacobian
J[0][0] = Dot(dNdxi,X,8); J[0][1] = Dot(dNdxi,Y,8); J[0][2] = Dot(dNdxi,Z,8);
J[1][0] = Dot(dNdeta,X,8); J[1][1] = Dot(dNdeta,Y,8); J[1][2] = Dot(dNdeta,Z,8);
J[2][0] = Dot(dNdzeta,X,8); J[2][1] = Dot(dNdzeta,Y,8); J[2][2] = Dot(dNdzeta,Z,8);
// Inverse and determinant
PetscScalar detJ = Inverse3M(J, invJ);
// Weight factor at this point
PetscScalar weight = W[ii]*W[jj]*W[kk]*detJ;
// Strain-displacement matrix
memset(B, 0, sizeof(B[0][0])*6*24); // zero out
for (PetscInt ll=0; ll<3; ll++){
// Add contributions from the different derivatives
if (ll==0) {dN = dNdxi;}
if (ll==1) {dN = dNdeta;}
if (ll==2) {dN = dNdzeta;}
// Assemble strain operator
for (PetscInt i=0; i<6; i++){
for (PetscInt j=0; j<3; j++){
beta[i][j] = invJ[0][ll]*alpha1[i][j]
+invJ[1][ll]*alpha2[i][j]
+invJ[2][ll]*alpha3[i][j];
}
}
// Add contributions to strain-displacement matrix
for (PetscInt i=0; i<6; i++){
for (PetscInt j=0; j<24; j++){
B[i][j] = B[i][j] + beta[i][j%3]*dN[j/3];
}
}
}
// Finally, add to the element matrix
for (PetscInt i=0; i<24; i++){
for (PetscInt j=0; j<24; j++){
for (PetscInt k=0; k<6; k++){
for (PetscInt l=0; l<6; l++){
ke[j+24*i] = ke[j+24*i] + weight*(B[k][i] * C[k][l] * B[l][j]);
}
}
}
}
}
}
}
return 0;
}
PetscScalar LinearElasticity::Dot(PetscScalar *v1, PetscScalar *v2, PetscInt l){
// Function that returns the dot product of v1 and v2,
// which must have the same length l
PetscScalar result = 0.0;
for (PetscInt i=0; i<l; i++){
result = result + v1[i]*v2[i];
}
return result;
}
void LinearElasticity::DifferentiatedShapeFunctions(PetscScalar xi, PetscScalar eta, PetscScalar zeta, PetscScalar *dNdxi, PetscScalar *dNdeta, PetscScalar *dNdzeta){
//differentiatedShapeFunctions - Computes differentiated shape functions