示例#1
0
def coherentinelastic_singlextal_kernel(
    dispersion
    ):
    from CoherentInelastic_SingleXtal_Kernel import CoherentInelastic_SingleXtal_Kernel as f
    return f( dispersion )
示例#2
0
def incoherentinelastic_kernel(
    dos, **kwds
    ):
    from IncoherentInelastic_Kernel import IncoherentInelastic_Kernel as f
    return f(dos, **kwds)
示例#3
0
def coherentinelastic_polyxtal_kernel(
    dispersion, **kwds):
    from CoherentInelastic_PolyXtal_Kernel import CoherentInelastic_PolyXtal_Kernel as f
    return f( dispersion, **kwds)
示例#4
0
def multiphonon_kernel(
    **kwds
    ):
    from MultiPhonon_Kernel import MultiPhonon_Kernel as f
    return f(**kwds)
示例#5
0
def incoherentelastic_kernel(
    dw_core, **kwds
    ):
    from IncoherentElastic_Kernel import IncoherentElastic_Kernel as f
    return f( dw_core, **kwds )
示例#6
0
def coherentinelastic_singlextal_kernel(dispersion):
    from CoherentInelastic_SingleXtal_Kernel import CoherentInelastic_SingleXtal_Kernel as f
    return f(dispersion)
示例#7
0
def coherentinelastic_polyxtal_kernel(dispersion, **kwds):
    from CoherentInelastic_PolyXtal_Kernel import CoherentInelastic_PolyXtal_Kernel as f
    return f(dispersion, **kwds)
示例#8
0
def incoherentinelastic_kernel(dos, **kwds):
    from IncoherentInelastic_Kernel import IncoherentInelastic_Kernel as f
    return f(dos, **kwds)
示例#9
0
def incoherentelastic_kernel(dw_core, **kwds):
    from IncoherentElastic_Kernel import IncoherentElastic_Kernel as f
    return f(dw_core, **kwds)
示例#10
0
def multiphonon_kernel(**kwds):
    from MultiPhonon_Kernel import MultiPhonon_Kernel as f
    return f(**kwds)