You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
481 B
28 lines
481 B
2 years ago
|
文件testshape.txt的格式如下:
|
||
|
|
||
|
```
|
||
|
接口数目n 接口半径r
|
||
|
接口1方向
|
||
|
接口2方向
|
||
|
...
|
||
|
接口n方向
|
||
|
```
|
||
|
|
||
|
例如:
|
||
|
|
||
|
```
|
||
|
8 10
|
||
|
1 1 1
|
||
|
1 1 -1
|
||
|
1 -1 1
|
||
|
1 -1 -1
|
||
|
-1 1 1
|
||
|
-1 1 -1
|
||
|
-1 -1 1
|
||
|
-1 -1 -1
|
||
|
```
|
||
|
|
||
|
代表有八个柱子插入,需要八个接口,这8个柱子的半径都为10,接口的方向分别为(1,1,1),(1,1,-1),...,(-1,-1,-1)(尚未平方归一化)。
|
||
|
|
||
|
读者可以根据自己的需求编写testshape文件或利用我们已经提供的testshape文件。
|