-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathfrontPropagation.js
More file actions
433 lines (389 loc) · 18 KB
/
frontPropagation.js
File metadata and controls
433 lines (389 loc) · 18 KB
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
/**
* ════════════════════════════════════════════════════════════════
* FEAScript Core Library
* Lightweight Finite Element Simulation in JavaScript
* Version: 0.3.0 (RC) | https://feascript.com
* MIT License © 2023–2026 FEAScript
* ════════════════════════════════════════════════════════════════
*/
// Internal imports
import { GenericBoundaryConditions } from "./genericBoundaryConditions.js";
import {
initializeFEA,
performIsoparametricMapping1D,
performIsoparametricMapping2D,
} from "../mesh/meshUtils.js";
import { basicLog, debugLog } from "../utilities/logging.js";
// Base viscous term that remains when eikonal equation is fully activated
const baseEikonalViscousTerm = 1e-2;
/**
* Function to assemble the Jacobian matrix and residuals vector for the front propagation model
* @param {object} meshData - Object containing prepared mesh data
* @param {object} boundaryConditions - Object containing boundary conditions for the finite element analysis
* @param {array} solutionVector - The solution vector for non-linear equations
* @param {number} eikonalActivationFlag - Activation parameter for the eikonal equation
* @returns {object} An object containing:
* - jacobianMatrix: The assembled Jacobian matrix
* - residualVector: The assembled residual vector
*/
export function assembleFrontPropagationMat(
meshData,
boundaryConditions,
solutionVector,
eikonalActivationFlag,
) {
basicLog("Starting front propagation matrix assembly...");
// Calculate eikonal viscous term
let eikonalViscousTerm = 1 - eikonalActivationFlag + baseEikonalViscousTerm; // Viscous term for the front propagation (eikonal) equation
debugLog(`eikonalViscousTerm: ${eikonalViscousTerm}`);
debugLog(`eikonalActivationFlag: ${eikonalActivationFlag}`);
// Extract mesh data
const {
nodesXCoordinates,
nodesYCoordinates,
nop,
boundaryElements,
totalElements,
meshDimension,
elementOrder,
} = meshData;
// Initialize FEA components
const FEAData = initializeFEA(meshData);
const {
residualVector,
jacobianMatrix,
localToGlobalMap,
basisFunctions,
gaussPoints,
gaussWeights,
nodesPerElement,
} = FEAData;
// Matrix assembly
for (let elementIndex = 0; elementIndex < totalElements; elementIndex++) {
// Map local element nodes to global mesh nodes
for (let localNodeIndex = 0; localNodeIndex < nodesPerElement; localNodeIndex++) {
// Subtract 1 from nop in order to start numbering from 0
localToGlobalMap[localNodeIndex] = nop[elementIndex][localNodeIndex] - 1;
}
// Loop over Gauss points
for (let gaussPointIndex1 = 0; gaussPointIndex1 < gaussPoints.length; gaussPointIndex1++) {
// 1D front propagation (eikonal) equation
if (meshDimension === "1D") {
// Unsupported 1D front propagation
errorLog("1D front propagation is not yet supported");
// Get basis functions for the current Gauss point
let basisFunctionsAndDerivatives = basisFunctions.getBasisFunctions(gaussPoints[gaussPointIndex1]);
// Perform isoparametric mapping
const mappingResult = performIsoparametricMapping1D({
basisFunction: basisFunctionsAndDerivatives.basisFunction,
basisFunctionDerivKsi: basisFunctionsAndDerivatives.basisFunctionDerivKsi,
nodesXCoordinates,
localToGlobalMap,
nodesPerElement,
});
// Extract mapping results
const { detJacobian, basisFunctionDerivX } = mappingResult;
const basisFunction = basisFunctionsAndDerivatives.basisFunction;
// Calculate solution derivative
let solutionDerivX = 0;
for (let localNodeIndex = 0; localNodeIndex < nodesPerElement; localNodeIndex++) {
solutionDerivX +=
solutionVector[localToGlobalMap[localNodeIndex]] * basisFunctionDerivX[localNodeIndex];
}
// Computation of Galerkin's residuals and Jacobian matrix
for (let localNodeIndex1 = 0; localNodeIndex1 < nodesPerElement; localNodeIndex1++) {
let localToGlobalMap1 = localToGlobalMap[localNodeIndex1];
// residualVector
// TODO residualVector calculation here
for (let localNodeIndex2 = 0; localNodeIndex2 < nodesPerElement; localNodeIndex2++) {
let localToGlobalMap2 = localToGlobalMap[localNodeIndex2];
// jacobianMatrix
// TODO jacobianMatrix calculation here
}
}
}
// 2D front propagation (eikonal) equation
else if (meshDimension === "2D") {
for (let gaussPointIndex2 = 0; gaussPointIndex2 < gaussPoints.length; gaussPointIndex2++) {
// Get basis functions for the current Gauss point
let basisFunctionsAndDerivatives = basisFunctions.getBasisFunctions(
gaussPoints[gaussPointIndex1],
gaussPoints[gaussPointIndex2],
);
// Perform isoparametric mapping
const mappingResult = performIsoparametricMapping2D({
basisFunction: basisFunctionsAndDerivatives.basisFunction,
basisFunctionDerivKsi: basisFunctionsAndDerivatives.basisFunctionDerivKsi,
basisFunctionDerivEta: basisFunctionsAndDerivatives.basisFunctionDerivEta,
nodesXCoordinates,
nodesYCoordinates,
localToGlobalMap,
nodesPerElement,
});
// Extract mapping results
const { detJacobian, basisFunctionDerivX, basisFunctionDerivY } = mappingResult;
const basisFunction = basisFunctionsAndDerivatives.basisFunction;
// Calculate solution derivatives
let solutionDerivX = 0;
let solutionDerivY = 0;
for (let localNodeIndex = 0; localNodeIndex < nodesPerElement; localNodeIndex++) {
solutionDerivX +=
solutionVector[localToGlobalMap[localNodeIndex]] * basisFunctionDerivX[localNodeIndex];
solutionDerivY +=
solutionVector[localToGlobalMap[localNodeIndex]] * basisFunctionDerivY[localNodeIndex];
}
// Computation of Galerkin's residuals and Jacobian matrix
for (let localNodeIndex1 = 0; localNodeIndex1 < nodesPerElement; localNodeIndex1++) {
let localToGlobalMap1 = localToGlobalMap[localNodeIndex1];
// residualVector: Viscous term contribution (to stabilize the solution)
residualVector[localToGlobalMap1] +=
eikonalViscousTerm *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunctionDerivX[localNodeIndex1] *
solutionDerivX +
eikonalViscousTerm *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunctionDerivY[localNodeIndex1] *
solutionDerivY;
// residualVector: Eikonal equation contribution
if (eikonalActivationFlag !== 0) {
residualVector[localToGlobalMap1] +=
eikonalActivationFlag *
(gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunction[localNodeIndex1] *
Math.sqrt(solutionDerivX ** 2 + solutionDerivY ** 2) -
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunction[localNodeIndex1]);
}
for (let localNodeIndex2 = 0; localNodeIndex2 < nodesPerElement; localNodeIndex2++) {
let localToGlobalMap2 = localToGlobalMap[localNodeIndex2];
// jacobianMatrix: Viscous term contribution
jacobianMatrix[localToGlobalMap1][localToGlobalMap2] +=
-eikonalViscousTerm *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
(basisFunctionDerivX[localNodeIndex1] * basisFunctionDerivX[localNodeIndex2] +
basisFunctionDerivY[localNodeIndex1] * basisFunctionDerivY[localNodeIndex2]);
// jacobianMatrix: Eikonal equation contribution
if (eikonalActivationFlag !== 0) {
jacobianMatrix[localToGlobalMap1][localToGlobalMap2] +=
eikonalActivationFlag *
(-(
detJacobian *
solutionDerivX *
basisFunction[localNodeIndex1] *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2]
) /
Math.sqrt(solutionDerivX ** 2 + solutionDerivY ** 2 + 1e-8)) *
basisFunctionDerivX[localNodeIndex2] -
eikonalActivationFlag *
((detJacobian *
solutionDerivY *
basisFunction[localNodeIndex1] *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2]) /
Math.sqrt(solutionDerivX ** 2 + solutionDerivY ** 2 + 1e-8)) *
basisFunctionDerivY[localNodeIndex2];
}
}
}
}
}
}
}
// Apply boundary conditions
const genericBoundaryConditions = new GenericBoundaryConditions(
boundaryConditions,
boundaryElements,
nop,
meshDimension,
elementOrder,
);
// Impose Dirichlet boundary conditions
genericBoundaryConditions.imposeDirichletBoundaryConditions(residualVector, jacobianMatrix);
basicLog("Front propagation matrix assembly completed");
return {
jacobianMatrix,
residualVector,
};
}
/**
* Function to assemble the local Jacobian matrix and residual vector for the front propagation model when using the frontal system solver
* @param {number} elementIndex - Index of the element being processed
* @param {array} nop - Nodal connectivity array (element-to-node mapping)
* @param {object} meshData - Object containing prepared mesh data
* @param {object} basisFunctions - Object containing basis functions and their derivatives
* @param {object} FEAData - Object containing FEA-related data
* @param {array} solutionVector - The solution vector for non-linear equations
* @param {number} eikonalActivationFlag - Activation parameter for the eikonal equation
* @returns {object} An object containing:
* - localJacobianMatrix: Local Jacobian matrix
* - residualVector: Residual vector contributions
* - ngl: Array mapping local node indices to global node indices
*/
export function assembleFrontPropagationFront({
elementIndex,
nop,
meshData,
basisFunctions,
FEAData,
solutionVector,
eikonalActivationFlag,
}) {
// Extract numerical integration parameters and mesh coordinates
const { gaussPoints, gaussWeights, nodesPerElement } = FEAData;
const { nodesXCoordinates, nodesYCoordinates, meshDimension } = meshData;
// Calculate eikonal viscous term
let eikonalViscousTerm = 1 - eikonalActivationFlag + baseEikonalViscousTerm; // Viscous term for the front propagation (eikonal) equation
// Initialize local Jacobian matrix and local residual vector
const localJacobianMatrix = Array(nodesPerElement)
.fill()
.map(() => Array(nodesPerElement).fill(0));
const localResidualVector = Array(nodesPerElement).fill(0);
// Build the mapping from local node indices to global node indices
const ngl = Array(nodesPerElement);
const localToGlobalMap = Array(nodesPerElement);
for (let localNodeIndex = 0; localNodeIndex < nodesPerElement; localNodeIndex++) {
ngl[localNodeIndex] = Math.abs(nop[elementIndex][localNodeIndex]);
localToGlobalMap[localNodeIndex] = Math.abs(nop[elementIndex][localNodeIndex]) - 1;
}
// Loop over Gauss points
for (let gaussPointIndex1 = 0; gaussPointIndex1 < gaussPoints.length; gaussPointIndex1++) {
// 1D front propagation (eikonal) equation
if (meshDimension === "1D") {
// Unsupported 1D front propagation
errorLog("1D front propagation is not yet supported");
// Get basis functions for the current Gauss point
let basisFunctionsAndDerivatives = basisFunctions.getBasisFunctions(gaussPoints[gaussPointIndex1]);
// Perform isoparametric mapping
const mappingResult = performIsoparametricMapping1D({
basisFunction: basisFunctionsAndDerivatives.basisFunction,
basisFunctionDerivKsi: basisFunctionsAndDerivatives.basisFunctionDerivKsi,
nodesXCoordinates,
localToGlobalMap,
nodesPerElement,
});
// Extract mapping results
const { detJacobian, basisFunctionDerivX } = mappingResult;
const basisFunction = basisFunctionsAndDerivatives.basisFunction;
// Calculate solution derivative
let solutionDerivX = 0;
for (let localNodeIndex = 0; localNodeIndex < nodesPerElement; localNodeIndex++) {
solutionDerivX +=
solutionVector[localToGlobalMap[localNodeIndex]] * basisFunctionDerivX[localNodeIndex];
}
// Computation of Galerkin's residuals and Jacobian matrix
for (let localNodeIndex1 = 0; localNodeIndex1 < nodesPerElement; localNodeIndex1++) {
let localToGlobalMap1 = localToGlobalMap[localNodeIndex1];
// residualVector
// TODO residualVector calculation here
for (let localNodeIndex2 = 0; localNodeIndex2 < nodesPerElement; localNodeIndex2++) {
let localToGlobalMap2 = localToGlobalMap[localNodeIndex2];
// localJacobianMatrix
// TODO localJacobianMatrix calculation here
}
}
// 2D front propagation (eikonal) equation
} else if (meshDimension === "2D") {
for (let gaussPointIndex2 = 0; gaussPointIndex2 < gaussPoints.length; gaussPointIndex2++) {
// Get basis functions for the current Gauss point
const { basisFunction, basisFunctionDerivKsi, basisFunctionDerivEta } =
basisFunctions.getBasisFunctions(gaussPoints[gaussPointIndex1], gaussPoints[gaussPointIndex2]);
// Perform isoparametric mapping
const { detJacobian, basisFunctionDerivX, basisFunctionDerivY } = performIsoparametricMapping2D({
basisFunction,
basisFunctionDerivKsi,
basisFunctionDerivEta,
nodesXCoordinates,
nodesYCoordinates,
localToGlobalMap,
nodesPerElement,
});
// Calculate solution derivatives
let solutionDerivX = 0;
let solutionDerivY = 0;
for (let localNodeIndex = 0; localNodeIndex < nodesPerElement; localNodeIndex++) {
solutionDerivX +=
solutionVector[localToGlobalMap[localNodeIndex]] * basisFunctionDerivX[localNodeIndex];
solutionDerivY +=
solutionVector[localToGlobalMap[localNodeIndex]] * basisFunctionDerivY[localNodeIndex];
}
// Computation of Galerkin's residuals and Jacobian matrix
for (let localNodeIndex1 = 0; localNodeIndex1 < nodesPerElement; localNodeIndex1++) {
let localToGlobalMap1 = localToGlobalMap[localNodeIndex1];
// Viscous term contribution
localResidualVector[localNodeIndex1] +=
eikonalViscousTerm *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunctionDerivX[localNodeIndex1] *
solutionDerivX +
eikonalViscousTerm *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunctionDerivY[localNodeIndex1] *
solutionDerivY;
// Eikonal equation contribution
if (eikonalActivationFlag !== 0) {
localResidualVector[localNodeIndex1] +=
eikonalActivationFlag *
(gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunction[localNodeIndex1] *
Math.sqrt(solutionDerivX ** 2 + solutionDerivY ** 2) -
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
basisFunction[localNodeIndex1]);
}
for (let localNodeIndex2 = 0; localNodeIndex2 < nodesPerElement; localNodeIndex2++) {
// Viscous term contribution
localJacobianMatrix[localNodeIndex1][localNodeIndex2] -=
eikonalViscousTerm *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2] *
detJacobian *
(basisFunctionDerivX[localNodeIndex1] * basisFunctionDerivX[localNodeIndex2] +
basisFunctionDerivY[localNodeIndex1] * basisFunctionDerivY[localNodeIndex2]);
// Eikonal equation contribution
if (eikonalActivationFlag !== 0) {
localJacobianMatrix[localNodeIndex1][localNodeIndex2] +=
eikonalActivationFlag *
(-(
detJacobian *
solutionDerivX *
basisFunction[localNodeIndex1] *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2]
) /
Math.sqrt(solutionDerivX ** 2 + solutionDerivY ** 2 + 1e-8)) *
basisFunctionDerivX[localNodeIndex2] -
eikonalActivationFlag *
((detJacobian *
solutionDerivY *
basisFunction[localNodeIndex1] *
gaussWeights[gaussPointIndex1] *
gaussWeights[gaussPointIndex2]) /
Math.sqrt(solutionDerivX ** 2 + solutionDerivY ** 2 + 1e-8)) *
basisFunctionDerivY[localNodeIndex2];
}
}
}
}
}
}
return { localJacobianMatrix, localResidualVector, ngl };
}