該文檔討(tǎo)論設置表面光學特性(如coatings, importance samples, materials, raytrace controls, scatter等)的最簡易的方式,它利用基于腳本語言的結構化(或分層次)模塊,等價于在圖形化的交互式用戶接口中的拖拉方式。
首先參考一個(gè)樹(shù)狀結構目标,如下所示:
-Geometry
-Subassembly 1 (Optical components)
-Custom Element 2
-Surface 3
-Surface 4
+Custom Element 3
+Subassembly 2 (Mechanical components)
+Subassembly 3 (Auxiliary components)
-Custom Element 1 (Detector components)
-Surface 1
編程思想是,用戶已把目标樹(shù)整理(lǐ)成包含相似功能特征的小(xiǎo)組,然後想通(tōng)過腳本編程語言容易地修改任一組的所有(yǒu)表面的光學特性,即Subassembly 1中的Optical components。形如SetAll___的一組命令能實現這一功能,它運行(xíng)用戶指定根節點ID#及期望的特性值。現在考慮下面的例子,我們想為(wèi)分層次結構中Subassembly 1下面的所有(yǒu)表面設置Transmit coating,相應的命令為(wèi):
Dim idNode As Long, coatNode As Long, count As Long
idNode = FindFullName(“Geometry.Subassembly 1 (Optical components)”)
coatNode = FindCoating(“Transmit”)
count = SetAllCoatingProp( idNode, coatNode )
在這個(gè)腳本中,Custom Element 2和(hé)Custom Element 3中的所有(yǒu)表面将被指定為(wèi)Transmit coating。 |