-
Notifications
You must be signed in to change notification settings - Fork 0
/
fun_SSI.py
662 lines (515 loc) · 31.1 KB
/
fun_SSI.py
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
# -*- coding: utf-8 -*-
"""
Created on Fri Feb 25 20:23:31 2022
@author: Xcz
"""
import numpy as np
from fun_algorithm import find_nearest, gcd_of_float
from fun_global_var import Set, tree_print
# %%
# 定义 调制区域切片厚度 的 纵向实际像素、调制区域切片厚度 的 实际纵向尺寸
def Cal_diz(Duty_Cycle_z, size_PerPixel, Tz,
ssi_zoomout_times=5, is_print=1, **kwargs):
# %%
deff_structure_sheet = Tz * gcd_of_float(Duty_Cycle_z)[
0] / ssi_zoomout_times # 保证 deff_structure_sheet 始终能被 Tz 和 Tz * Duty_Cycle_z 整除
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "deff_structure_sheet = {} μm".format(
deff_structure_sheet)) # Unit: μm 调制区域切片厚度 的 实际纵向尺寸
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
diz = deff_structure_sheet / 1000 / size_PerPixel # Unit: mm / mm = 1
return diz, deff_structure_sheet
# %%
# 定义 结构前端面 距离 晶体前端面 的 纵向实际像素、结构前端面 距离 晶体前端面 的 实际纵向尺寸
def Cal_Iz_frontface(diz,
z0_structure_frontface_expect, L0_Crystal, size_PerPixel,
is_print=1, **kwargs):
# %%
if z0_structure_frontface_expect <= 0 or z0_structure_frontface_expect >= L0_Crystal or (
type(z0_structure_frontface_expect) != float and type(z0_structure_frontface_expect) != np.float64 and type(
z0_structure_frontface_expect) != int):
Iz_frontface = 0
else:
Iz_frontface = z0_structure_frontface_expect / size_PerPixel
leftover = Iz_frontface - Iz_frontface // diz * diz
sheets_num_frontface = int(Iz_frontface // diz) + int(leftover != 0)
sheet_th_frontface = sheets_num_frontface - 1 if sheets_num_frontface >= 1 else 0 # 但需要 前面一层 的 前端面 的 序数 来获取值
z0_structure_frontface = Iz_frontface * size_PerPixel
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0_structure_frontface = {} mm".format(
z0_structure_frontface))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
zj_frontface = np.arange(sheets_num_frontface + 1, dtype=np.float64()) * diz * size_PerPixel
zj_frontface[-1] = z0_structure_frontface # 覆盖最后一个可能超了的,不真实的值。直接 zj_frontface[sheets_num_frontface] 也行
return sheet_th_frontface, sheets_num_frontface, Iz_frontface, z0_structure_frontface, zj_frontface
# %%
# 定义 调制区域 的 纵向实际像素、调制区域 的 实际纵向尺寸
def Cal_Iz_structure(diz,
deff_structure_length, size_PerPixel,
is_print=1, **kwargs):
# %%
Iz_structure = deff_structure_length / size_PerPixel # Iz_structure 对应的是 期望的(连续的),而不是 实际的(discrete 离散的)?不,就得是离散的。
leftover = Iz_structure - Iz_structure // diz * diz
sheets_num_structure = int(Iz_structure // diz) + int(leftover != 0) # 这个 leftover 就 保证了 zj 中 没有 重复的 元素(特别是 最末 2 位)
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "deff_structure_length = {} mm".format(
deff_structure_length))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
array_1d = np.arange(sheets_num_structure + 1, dtype=np.float64())
zj_structure = array_1d * diz * size_PerPixel
zj_structure[-1] = deff_structure_length # 直接覆盖 最末一位,也永远 不会与 倒数第 2 位,值相同。
# 相同的话,plot_1d 插值会出问题。
# len(zj_structure) = sheets_num_structure + 1
return sheets_num_structure, Iz_structure, deff_structure_length, zj_structure
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸
def Cal_Iz_endface(sheets_num_frontface, sheets_num_structure,
zj_frontface, zj_structure, size_PerPixel,
is_print=1, **kwargs):
# %%
sheets_num_endface = sheets_num_frontface + sheets_num_structure
sheet_th_endface = sheets_num_endface - 1 if sheets_num_endface >= 1 else 0 # 但需要 前面一层 的 前端面 的 序数 来获取值
zj_endface = np.append(zj_frontface, zj_frontface[-1] + zj_structure[1:])
z0_structure_endface = zj_frontface[-1] + zj_structure[-1]
Iz_endface = z0_structure_endface / size_PerPixel
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0_structure_endface = {} mm".format(
z0_structure_endface))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return sheet_th_endface, sheets_num_endface, Iz_endface, z0_structure_endface, zj_endface
# %%
# 定义 晶体 的 纵向实际像素、晶体 的 实际纵向尺寸
def Cal_Iz(diz, zj_endface,
L0_Crystal, size_PerPixel,
is_print=1, **kwargs):
# %%
Iz = L0_Crystal / size_PerPixel
# sheets_num = int(Iz // diz) + int(not np.mod(Iz,diz) == 0) # mod(182,0.182) = 4.884981308350689e-15 != 0 也是牛逼
left = L0_Crystal - zj_endface[-1]
Il = left / size_PerPixel
leftover = Il - Il // diz * diz
sheets_num_left = int(Il // diz) + int(leftover != 0) # Iz - Iz//diz * diz 比 np.mod(Iz,diz) 好用
sheets_num = len(zj_endface) - 1 + sheets_num_left
array_1d = np.arange(sheets_num_left + 1, dtype=np.float64())
zj_left = array_1d * diz * size_PerPixel
zj_left[-1] = L0_Crystal
zj = np.append(zj_endface, zj_endface[-1] + zj_left[1:]) # 保证 没有 重复的元素,否则 plot_1d 会出问题
# print(sheets_num == len(zj) - 1)
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0 = L0_Crystal = {} mm".format(L0_Crystal))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return sheets_num, Iz, zj
# %%
# 定义 调制区域 的 横向实际像素、调制区域 的 实际横向尺寸
def Cal_IxIy(I1_x, I1_y,
deff_structure_size_x_expect,
deff_structure_size_y_expect,
size_PerPixel, is_print=1, **kwargs):
Ix, Iy = int(deff_structure_size_y_expect / size_PerPixel), int(deff_structure_size_x_expect / size_PerPixel)
# Ix, Iy 需要与 I1_x, I1_y 同奇偶性,这样 加边框 才好加(对称地加 而不用考虑 左右两边加的量 可能不一样)
Ix, Iy = Ix + np.mod(I1_x - Ix, 2), Iy + np.mod(I1_y - Iy, 2)
deff_structure_size_x = Iy * size_PerPixel # Unit: mm 不包含 边框,调制区域 的 实际横向尺寸
deff_structure_size_y = Ix * size_PerPixel # Unit: mm 不包含 边框,调制区域 的 实际横向尺寸
import inspect
if inspect.stack()[1][3] == "pump_pic_or_U_structure":
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", -1)) + "deff_structure_size_x = {} mm".format(
deff_structure_size_x))
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "deff_structure_size_y = {} mm".format(
deff_structure_size_y))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return Ix, Iy, deff_structure_size_x, deff_structure_size_y
# %%
def slice_structure_ssi(Duty_Cycle_z, deff_structure_length_expect,
Tz, ssi_zoomout_times, size_PerPixel,
is_print, **kwargs):
info = "结构_纵向切片_ssi"
is_print and print(tree_print(kwargs.get("is_end", 0), add_level=2) + info)
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
# %%
# 定义 调制区域切片厚度 的 纵向实际像素、调制区域切片厚度 的 实际纵向尺寸
diz, deff_structure_sheet = Cal_diz(Duty_Cycle_z, size_PerPixel, Tz,
ssi_zoomout_times, is_print, )
# %%
# 定义 调制区域 的 纵向实际像素、调制区域 的 实际纵向尺寸
sheets_num, Iz, deff_structure_length, zj_structure = \
Cal_Iz_structure(diz,
deff_structure_length_expect, size_PerPixel,
is_print, is_end=1)
# %%
Tz_unit = (Tz / 1000) / size_PerPixel
return diz, deff_structure_sheet, sheets_num, \
Iz, deff_structure_length, Tz_unit, zj_structure
# %%
# 等间距切片
def slice_ssi(L0_Crystal, Duty_Cycle_z,
z0_structure_frontface_expect, deff_structure_length_expect,
z0_section_1_expect, z0_section_2_expect,
Tz, ssi_zoomout_times, size_PerPixel,
is_print, **kwargs):
info = "晶体_纵向切片_ssi"
is_print and print(tree_print(kwargs.get("is_end", 0), add_level=2) + info)
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
# %%
# 定义 调制区域切片厚度 的 纵向实际像素、调制区域切片厚度 的 实际纵向尺寸
diz, deff_structure_sheet = Cal_diz(Duty_Cycle_z, size_PerPixel, Tz,
ssi_zoomout_times, is_print, )
# %%
# 定义 结构前端面 距离 晶体前端面 的 纵向实际像素、结构前端面 距离 晶体前端面 的 实际纵向尺寸
sheet_th_frontface, sheets_num_frontface, \
Iz_frontface, z0_structure_frontface, zj_frontface = \
Cal_Iz_frontface(diz,
z0_structure_frontface_expect,
L0_Crystal,
size_PerPixel,
is_print)
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸 1
deff_structure_length, z0_structure_endface = cal_Iz_endface_1(z0_structure_frontface, deff_structure_length_expect,
L0_Crystal)
# %%
# 定义 调制区域 的 纵向实际像素、调制区域 的 实际纵向尺寸
sheets_num_structure, Iz_structure, \
deff_structure_length, zj_structure = \
Cal_Iz_structure(diz,
deff_structure_length,
size_PerPixel,
is_print)
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸 2
sheet_th_endface, sheets_num_endface, \
Iz_endface, z0_structure_endface, zj_endface = \
Cal_Iz_endface(sheets_num_frontface, sheets_num_structure,
zj_frontface, zj_structure, size_PerPixel,
is_print, )
# %%
# 定义 晶体 的 纵向实际像素、晶体 的 实际纵向尺寸
sheets_num, Iz, zj = \
Cal_Iz(diz, zj_endface,
L0_Crystal, size_PerPixel,
is_print, )
z0 = L0_Crystal
izj = zj / size_PerPixel # 为循环 里使用
dizj = izj[1:] - izj[:-1] # 为循环 里使用(array 才能 相减)
# print(dizj*size_PerPixel)
# print(len(dizj))
# %%
# 定义 需要展示的截面 1 距离晶体前端面 的 纵向实际像素、需要展示的截面 1 距离晶体前端面 的 实际纵向尺寸
sheet_th_section_1, sheets_num_section_1, iz_1, z0_1 \
= cal_iz_1(zj, z0_section_1_expect, size_PerPixel, is_print, )
# %%
# 定义 需要展示的截面 2 距离晶体后端面 的 纵向实际像素、需要展示的截面 2 距离晶体后端面 的 实际纵向尺寸
sheet_th_section_2, sheets_num_section_2, iz_2, z0_2 \
= cal_iz_2(zj, L0_Crystal, z0_section_2_expect, size_PerPixel, is_print, is_end=1)
# %%
Set("izj", izj)
Set("zj", zj)
Set("sheet_th_frontface", sheet_th_frontface)
Set("sheet_th_endface", sheet_th_endface)
Set("sheet_th_sec1", sheet_th_section_1)
Set("sheet_th_sec2", sheet_th_section_2)
return diz, deff_structure_sheet, \
sheet_th_frontface, sheets_num_frontface, Iz_frontface, z0_structure_frontface, \
sheets_num_structure, Iz_structure, deff_structure_length, \
sheets_num, Iz, z0, \
dizj, izj, zj, \
sheet_th_endface, sheets_num_endface, Iz_endface, z0_structure_endface, \
sheet_th_section_1, sheets_num_section_1, iz_1, z0_1, \
sheet_th_section_2, sheets_num_section_2, iz_2, z0_2
# %% 非等距切片 SSI ↓↓↓↓↓
# %% 非等距切片 SSI ↓↓↓↓↓
# %%
# 定义 结构前端面 距离 晶体前端面 的 纵向实际像素、结构前端面 距离 晶体前端面 的 实际纵向尺寸
def cal_Iz_frontface(z0_structure_frontface_expect, L0_Crystal, size_PerPixel,
is_print=1, **kwargs):
if z0_structure_frontface_expect <= 0 or z0_structure_frontface_expect >= L0_Crystal or (
type(z0_structure_frontface_expect) != float and type(z0_structure_frontface_expect) != np.float64 and type(
z0_structure_frontface_expect) != int):
z0_structure_frontface = 0
else:
z0_structure_frontface = z0_structure_frontface_expect
Iz_frontface = z0_structure_frontface / size_PerPixel
sheets_num_frontface = 1 if z0_structure_frontface > 0 else 0
sheet_th_frontface = sheets_num_frontface - 1 if sheets_num_frontface >= 1 else 0
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0_structure_frontface = {} mm".format(
z0_structure_frontface))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return sheet_th_frontface, sheets_num_frontface, Iz_frontface, z0_structure_frontface
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸 1
def cal_Iz_endface_1(z0_structure_frontface, deff_structure_length_expect, L0_Crystal, ):
z0_structure_endface = z0_structure_frontface + deff_structure_length_expect
# print(z0_structure_endface)
# print(deff_structure_length_expect) # 如果 deff_structure_length_expect 值不是 预期,则应该是 Info_find_contours_SHG 的 锅
if z0_structure_endface > L0_Crystal: # 设定 z0_structure_endface 的上限
z0_structure_endface = L0_Crystal
deff_structure_length = z0_structure_endface - z0_structure_frontface
else:
deff_structure_length = deff_structure_length_expect
return deff_structure_length, z0_structure_endface
# %%
def cal_Iz_structure(deff_structure_length, size_PerPixel,
is_print=1, **kwargs):
Iz_structure = deff_structure_length / size_PerPixel
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "deff_structure_length = {} mm".format(
deff_structure_length))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return Iz_structure
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸 2
def cal_Iz_endface_2(sheets_num_frontface, sheets_num_structure,
z0_structure_endface, size_PerPixel,
is_print=1, **kwargs):
sheets_num_endface = sheets_num_frontface + sheets_num_structure
sheet_th_endface = sheets_num_endface - 1 if sheets_num_endface >= 1 else 0
Iz_endface = z0_structure_endface / size_PerPixel
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0_structure_endface = {} mm".format(
z0_structure_endface))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return sheet_th_endface, sheets_num_endface, Iz_endface
# %%
# 定义 晶体 的 纵向实际像素、晶体 的 实际纵向尺寸
def cal_Iz(sheets_num_endface, z0_structure_endface, L0_Crystal, size_PerPixel,
is_print=1, **kwargs):
z0 = L0_Crystal
Iz = L0_Crystal / size_PerPixel
sheets_num = sheets_num_endface + 1 if z0_structure_endface < L0_Crystal else sheets_num_endface
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0 = L0_Crystal = {} mm".format(L0_Crystal))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return sheets_num, Iz, z0
# %%
# 定义 调制区域切片厚度 的 纵向实际像素、调制区域切片厚度 的 实际纵向尺寸
def cal_diz(Duty_Cycle_z, Tz, Iz_structure, size_PerPixel,
is_print=1, **kwargs):
deff_structure_sheet = Tz / 1000 # Unit: mm
# 不论是否 mz != 0,即 不论 结构 是否 提供 z 向倒格矢,都对 结构 分片
# z 向无周期,分片干啥,就是为了看演化。不看演化不如直接用一步到位的 NLA 程序。
# 看演化 也可以用 写出读入 结构版,但比较耗时,不过演化比 较均匀
# ———— 不过通过 把这里结构覆盖整个长度,并且相邻畴不反转,但仍有周期,也可做到 相同效果。
diz = deff_structure_sheet / size_PerPixel
leftover = Iz_structure - Iz_structure // diz * diz
leftover2 = leftover - leftover // (diz * Duty_Cycle_z) * (diz * Duty_Cycle_z)
sheets_num_structure = int(Iz_structure // diz) * 2 + int(leftover != 0) * \
(1 + int(leftover2 != 0 and leftover2 != leftover))
# 如果 0 < leftover2 < leftover,则 + 2,否则 + 1;如果 leftover = 0,则加 0
if leftover == 0: # 触底反弹:如果 不剩(整除),则最后一步 保持 diz 不动,否则 沿用 leftover
# 如果 leftover = 0,则没有 leftover2 的事,
leftover = diz
leftover2 = diz * (1 - Duty_Cycle_z) # 这一切都在保证 最后一步的步长 储存在 leftover2 中
if leftover2 == 0: # 如果 leftover > diz * Duty_Cycle_z,则 leftover = diz * Duty_Cycle_z + leftover2,
# 否则 leftover = leftover2 = 小于等于 diz * Duty_Cycle_z 的值
leftover2 = diz * Duty_Cycle_z # 这一切都在保证 最后一步的步长 储存在 leftover2 中
# 一共有 4 种可能:
# leftover = 0 时为 diz * (1 - Duty_Cycle_z)
# leftover2 > 0 即 leftover > diz * Duty_Cycle_z 时为 leftover - diz * Duty_Cycle_z
# leftover2 == 0 时为 diz * Duty_Cycle_z
# leftover2 < 0 即 leftover < diz * Duty_Cycle_z 时为 leftover
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "deff_structure_sheet = {} μm".format(
deff_structure_sheet * 1000))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
return sheets_num_structure, diz, deff_structure_sheet
# %%
# 生成 structure 各层 z 序列,以及 正负畴 序列信息 mj
def cal_zj_mj_structure(Duty_Cycle_z, deff_structure_sheet, sheets_num_structure, z0_structure_frontface,
z0_structure_endface, SSI_zoomout_times,
is_stripe, mx, my, Tx, Ty, Tz, structure_xy_mode, size_PerPixel, ):
# mj_structure = np.zeros((sheets_num_structure + 1), dtype=np.float64())
# zj_structure = np.zeros((sheets_num_structure + 1), dtype=np.float64())
# for j in range(sheets_num_structure + 1):
# if np.mod(j, 2) == 1: # 如果 j 是奇数,则 在接下来的 deff_structure_sheet * (1 - Duty_Cycle_z) 内 输出 负畴
# zj_structure[j] = z0_structure_frontface + (j-1) // 2 * deff_structure_sheet + deff_structure_sheet * Duty_Cycle_z
# mj_structure[j] = -1
# else: # 如果 j 是偶数,则 在接下来的 deff_structure_sheet * Duty_Cycle_z 内 输出 正畴
# zj_structure[j] = z0_structure_frontface + j // 2 * deff_structure_sheet
# mj_structure[j] = 1
array_1d = np.arange(sheets_num_structure + 1, dtype=np.float64())
zj_array = array_1d / 2 - np.mod(array_1d, 2) * (0.5 - Duty_Cycle_z)
# print(zj_array)
zj_structure = z0_structure_frontface + zj_array * deff_structure_sheet
# print(zj_structure)
if zj_structure[-2] != z0_structure_endface: # 得保证 没有 重复的元素,否则 plot_1d 会出问题
zj_structure[-1] = z0_structure_endface
else: # 得保证 没有 重复的元素,否则 plot_1d 会出问题
zj_structure = zj_structure[:-1] # 否则 踢除 最后一个元素
sheets_num_structure -= 1 # 同时 sheets_num_structure - 1
dzj_structure = zj_structure[1:] - zj_structure[:-1] # 为了 对斜条纹时的 mj_structure 赋值
dzj_structure_new = np.repeat(dzj_structure / SSI_zoomout_times, SSI_zoomout_times)
zj_structure = [0] # 先把初值 0 放进去 占个坑
sum = 0
for i in range(len(dzj_structure_new)):
sum += dzj_structure_new[i]
zj_structure.append(sum)
zj_structure = np.array(zj_structure) # 记得转换回 array
# print(zj_structure)
Dzj_structure = zj_structure - z0_structure_frontface
Dzj_structure = Dzj_structure[:-1] # 丢掉 最后一个值,没用
# dzj_structure = zj_structure[1:] - zj_structure[:-1] # 为了 对斜条纹时的 mj_structure 赋值
# izj_structure = zj_structure / size_PerPixel # 为了 对斜条纹时的 mj_structure 赋值
# dizj_structure = izj_structure[1:] - izj_structure[:-1] # 为了 对斜条纹时的 mj_structure 赋值
# print("{} == {} ?".format(leftover2, dizj_structure[-1]))
if is_stripe == 1:
if structure_xy_mode == 'x' or structure_xy_mode == 'xy':
xyj_structure = mx * Tx / Tz * Dzj_structure # 本身 第一层 就不移
# xj_structure = np.append(0, xj_structure) # 第一层 不移,其他层 才移
# print(xj_structure)
elif structure_xy_mode == 'y':
xyj_structure = my * Ty / Tz * Dzj_structure
mj_structure = (xyj_structure // size_PerPixel).astype(np.int64)
# print(mj_structure)
else:
# mj_structure = - 2 * np.mod(np.arange(sheets_num_structure + 1, dtype=np.float64()), 2) + 1
mj_structure = - 2 * np.mod(np.arange(sheets_num_structure, dtype=np.int8()), 2) + 1
mj_structure = mj_structure.astype(str)
# 字符 '-1','+1','0' 分别 表示 opposite,positive,以及 bulk,注意 astype 并不会改变 mj_structure,所以得 重新赋值给 mj_structure
mj_structure = np.repeat(mj_structure, SSI_zoomout_times)
# print(mj_structure)
mj_structure = mj_structure.tolist() # 转换为 list 才能储存 不同类型 的值
# print(sheets_num_structure * SSI_zoomout_times, len(mj_structure))
sheets_num_structure = len(mj_structure)
# print(sheets_num_structure, len(Dzj_structure))
# print(len(zj_structure))
# print(len(mj_structure))
return zj_structure, mj_structure, sheets_num_structure
# %%
# 生成 晶体内 各层 z 序列、izj、dizj,以及 正负畴 序列信息 mj
def cal_zj_izj_dizj_mj(zj_structure, mj_structure, z0_structure_frontface, z0_structure_endface, L0_Crystal,
size_PerPixel, ):
# zj = np.zeros((sheets_num + 1), dtype=np.float64())
zj = np.append(0, zj_structure) if z0_structure_frontface > 0 else zj_structure
if z0_structure_endface < L0_Crystal: zj = np.append(zj, L0_Crystal)
# 如果等于,就不 append 了,最后一个 z0_structure_endface 自己就是 L0_Crystal 了
# print("{} == {} ?".format(len(zj), sheets_num + 1))
# print(zj)
izj = zj / size_PerPixel # 为循环 里使用
dizj = izj[1:] - izj[:-1] # 为循环 里使用(array 才能 相减)
# print(dizj * size_PerPixel)
# print(len(dizj))
# mj = np.append('0', mj_structure) if z0_structure_frontface > 0 else mj_structure
# if z0_structure_endface < L0_Crystal: mj = np.append(mj, '0')
mj = mj_structure
if z0_structure_frontface > 0: mj.insert(0, '0') # 不像 np.array,对 list 增插 元素 之后,原 list 改变了
if z0_structure_endface < L0_Crystal: mj.append('0')
# print(mj,mj[0],type(mj),type(mj[0]))
# print(mj)
# print(len(mj))
return zj, izj, dizj, mj
# %%
# 定义 需要展示的截面 1 距离晶体前端面 的 纵向实际像素、需要展示的截面 1 距离晶体前端面 的 实际纵向尺寸
def cal_iz_1(zj, z0_section_1_expect, size_PerPixel,
is_print=1, **kwargs):
sheets_num_section_1, z0_1 = find_nearest(zj, z0_section_1_expect)
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0_section_1 = {} mm".format(z0_1))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
Iz_1 = z0_1 / size_PerPixel
sheet_th_section_1 = sheets_num_section_1 - 1 if sheets_num_section_1 != 0 else 0
return sheet_th_section_1, sheets_num_section_1, Iz_1, z0_1
# %%
# 定义 需要展示的截面 2 距离晶体后端面 的 纵向实际像素、需要展示的截面 2 距离晶体后端面 的 实际纵向尺寸
def cal_iz_2(zj, L0_Crystal, z0_section_2_expect, size_PerPixel,
is_print=1, **kwargs):
sheets_num_section_2, z0_2 = find_nearest(zj, L0_Crystal - z0_section_2_expect)
is_print and print(
tree_print(kwargs.get("is_end", 0), kwargs.get("add_level", 0)) + "z0_section_2 = {} mm".format(z0_2))
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
Iz_2 = z0_2 / size_PerPixel
sheet_th_section_2 = sheets_num_section_2 - 1 if sheets_num_section_2 >= 1 else 0
return sheet_th_section_2, sheets_num_section_2, Iz_2, z0_2
# %%
# 非等间距切片
def slice_SSI(L0_Crystal, SSI_zoomout_times, size_PerPixel,
z0_structure_frontface_expect, deff_structure_length_expect,
z0_section_1_expect, z0_section_2_expect,
is_stripe, mx, my, Tx, Ty, Tz, Duty_Cycle_z, structure_xy_mode,
is_print, **kwargs):
info = "晶体_纵向切片_SSI"
is_print and print(tree_print(kwargs.get("is_end", 0), add_level=2) + info)
kwargs.pop("is_end", None);
kwargs.pop("add_level", None) # 该 def 子分支 后续默认 is_end = 0,如果 kwargs 还会被 继续使用 的话。
# %%
# 定义 结构前端面 距离 晶体前端面 的 纵向实际像素、结构前端面 距离 晶体前端面 的 实际纵向尺寸
sheet_th_frontface, sheets_num_frontface, Iz_frontface, z0_structure_frontface \
= cal_Iz_frontface(z0_structure_frontface_expect, L0_Crystal, size_PerPixel,
is_print, )
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸 1
deff_structure_length, z0_structure_endface \
= cal_Iz_endface_1(z0_structure_frontface, deff_structure_length_expect, L0_Crystal, )
# %%
# 定义 调制区域 的 纵向实际像素、调制区域 的 实际纵向尺寸
Iz_structure = cal_Iz_structure(deff_structure_length, size_PerPixel,
is_print, )
# %%
# 定义 调制区域切片厚度 的 纵向实际像素、调制区域切片厚度 的 实际纵向尺寸
sheets_num_structure, diz, deff_structure_sheet \
= cal_diz(Duty_Cycle_z, Tz, Iz_structure, size_PerPixel,
is_print, )
# %%
# 生成 structure 各层 z 序列,以及 正负畴 序列信息 mj
# 及时更新 正确的 sheets_num_structure, 这样 sheets_num、sheets_num_endface 等 关键参数 也都 才是正确的
zj_structure, mj_structure, sheets_num_structure \
= cal_zj_mj_structure(Duty_Cycle_z, deff_structure_sheet, sheets_num_structure, z0_structure_frontface,
z0_structure_endface, SSI_zoomout_times,
is_stripe, mx, my, Tx, Ty, Tz, structure_xy_mode, size_PerPixel, )
# %%
# 定义 结构后端面 距离 晶体前端面 的 纵向实际像素、结构后端面 距离 晶体前端面 的 实际纵向尺寸 2
sheet_th_endface, sheets_num_endface, Iz_endface \
= cal_Iz_endface_2(sheets_num_frontface, sheets_num_structure,
z0_structure_endface, size_PerPixel,
is_print, )
# %%
# 定义 晶体 的 纵向实际像素、晶体 的 实际纵向尺寸
sheets_num, Iz, z0 \
= cal_Iz(sheets_num_endface, z0_structure_endface, L0_Crystal, size_PerPixel,
is_print, )
# %%
# 生成 晶体内 各层 z 序列、izj、dizj,以及 正负畴 序列信息 mj
zj, izj, dizj, mj \
= cal_zj_izj_dizj_mj(zj_structure, mj_structure, z0_structure_frontface, z0_structure_endface, L0_Crystal,
size_PerPixel)
# %%
# 定义 需要展示的截面 1 距离晶体前端面 的 纵向实际像素、需要展示的截面 1 距离晶体前端面 的 实际纵向尺寸
sheet_th_section_1, sheets_num_section_1, Iz_1, z0_1 \
= cal_iz_1(zj, z0_section_1_expect, size_PerPixel,
is_print, )
# %%
# 定义 需要展示的截面 2 距离晶体后端面 的 纵向实际像素、需要展示的截面 2 距离晶体后端面 的 实际纵向尺寸
sheet_th_section_2, sheets_num_section_2, Iz_2, z0_2 \
= cal_iz_2(zj, deff_structure_length_expect, z0_section_2_expect, size_PerPixel,
is_print, is_end=1)
# %%
Set("izj", izj)
Set("zj", zj)
Set("sheet_th_frontface", sheet_th_frontface)
Set("sheet_th_endface", sheet_th_endface)
Set("sheet_th_sec1", sheet_th_section_1)
Set("sheet_th_sec2", sheet_th_section_2)
return diz, deff_structure_sheet, \
sheet_th_frontface, sheets_num_frontface, Iz_frontface, z0_structure_frontface, \
sheets_num_structure, Iz_structure, deff_structure_length, \
sheets_num, Iz, z0, \
mj, mj_structure, dizj, izj, zj, zj_structure, \
sheet_th_endface, sheets_num_endface, Iz_endface, z0_structure_endface, \
sheet_th_section_1, sheets_num_section_1, Iz_1, z0_1, \
sheet_th_section_2, sheets_num_section_2, Iz_2, z0_2