18 lines
975 B
Python
18 lines
975 B
Python
import numpy as np
|
|
|
|
############################# Maillage mixte ################
|
|
e3 = np.array([[1, 2, 12], [2, 3, 12], [3, 4, 14], [
|
|
4, 5, 14], [2, 15, 3], [3, 15, 4]]).astype(int)
|
|
e4 = np.array([[0, 1, 12, 11], [11, 12, 13, 10], [12, 3, 14, 13], [
|
|
10, 13, 8, 9], [13, 14, 7, 8], [14, 5, 6, 7]]).astype(int)
|
|
dds = np.array([2, 15, 4, 6, 7, 8, 9, 10, 11, 0]).astype(int)
|
|
nns = np.array([[4, 5], [5, 6], [0, 1], [1, 2]]).astype(int)
|
|
ccs = np.array([[0., 0.], [0.33333333333333, 0], [0.53333333333333, 0.],
|
|
[0.66666666666667, 0.33333333333333], [
|
|
1., 0.47], [1, 0.66666666666667],
|
|
[1., 1.], [0.66666666666667, 1.], [
|
|
0.33333333333333, 1.], [0., 1.],
|
|
[0., 0.66666666666667], [0., 0.33333333333333], [
|
|
0.33333333333333, 0.33333333333333],
|
|
[0.33333333333333, 0.66666666666667], [0.66666666666667, 0.66666666666667], [1., 0.]])
|