MCNP具有晶格的多个细胞源

时间:2018-03-05 11:04:03

标签: montecarlo

我一直试图在MCNP中使用普通的单元源运行格子单元源。我可以让它们分别工作,但当我尝试将它们组合起来时,我得到以下fatal error: distribution 1 for cel is the wrong kind

我的源代码如下:

SDEF  PAR=SF 
      CEL=D9 $ Fatal error. distribution 1 for cel is the wrong kind
      X D11 
      Y D12
      Z D13
c
DS9 S 4 10
DS11 S 1 14
DS12 S 2 15
DS13 S 3 16
c
c ---- Lattice cell source-----
SI4 L (3<2[-5:5 -5:5 -10:10]<5) 
SP4 1  2540r 
SI1 -0.12 0.12
SP1 0 1
SI2 -0.12 0.12
SP2 0 1
SI3 -0.12 0.12
SP3 0 1
c
c ---- Separate cell source ---
SI10 L 25
SP10 1
SI14 22.8 27.2
SP14 0 1
SI15 -2.2 2.2
SP15 0 1
SI16 -2.2 2.2
SP16 0 1

您是否知道如何声明嵌入式源以及普通的单元源?晶格和单元源的图像:浅蓝色表示源材料:
https://developers.itextpdf.com/examples/itext-action-second-edition/chapter-3非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

在同事的帮助下,我们找到了一个解决方案,包括在下面。它涉及在每个发行版中包含FCEL依赖关系,以及直接在CEL发行版中调用单元格而不添加另一个D-card。然后,所有单元格必须包含在以下发行版中。

SDEF PAR=SF
CEL=D9
X=FCEL D11
Y=FCEL D12
Z=FCEL D13
c
c
SI9 L (3<2[-5:5 -5:5 -10:10]<5) 25
c Cells 3 and 25 are called (3 is in the lattice notation)
SP9 1 2540r 2079
c assigning importance to each cell: lattice ~55%, PuO ball ~45%
DS11 S 1 2540r 14
c First 2541 cells have D1 attached, the last cell is attached to D14
DS12 S 2 2540r 15
c First 2541 cells have D2 attached, the last cell is attached to D15
DS13 S 3 2540r 16
c First 2541 cells have D3 attached, the last cell is attached to D16
c
c ---- Lattice cell source-----
SI1 -0.12 0.12
SP1 0 1
SI2 -0.12 0.12
SP2 0 1
SI3 -0.12 0.12
SP3 0 1
c
c ---- Separate cell source ---
SI14 22.8 27.2
SP14 0 1
SI15 -2.2 2.2
SP15 0 1
SI16 -2.2 2.2
SP16 0 1

在没有太多背景的情况下尝试这样做总是很棘手。