1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- from scattnlay import scattnlay
- import numpy as np
- nL = 500
- Xmax = 60.0
- x = np.array([np.linspace(Xmax/nL, Xmax, nL)], dtype = np.float64)
- m = np.array((np.sqrt((2.0 - (x[0]/Xmax - 0.5/nL)**2.0))), dtype = np.complex128)
- theta = np.linspace(0.0, np.pi, 1001, dtype = np.float64)
- terms, Qext, Qsca, Qabs, Qbk, Qpr, g, Albedo, S1, S2 = scattnlay(x, m, theta)
- S11 = S1[0].real*S1[0].real + S1[0].imag*S1[0].imag + S2[0].real*S2[0].real + S2[0].imag*S2[0].imag
- result = np.vstack((theta*180.0/np.pi, S11/(2.0*Xmax*Xmax), np.cos(theta))).transpose()
- try:
- import matplotlib.pyplot as plt
- plt.plot(result[ : , 0], result[ : , 1], 'k', result[ : , 0], result[ : , 2], 'r')
- ax = plt.gca()
- ax.set_yscale('log')
- ax.set_ylim(1e-4, 1e3)
- plt.xlabel('Theta')
- plt.draw()
- plt.show()
- finally:
- np.savetxt("test04.txt", result, fmt = "%.5f")
- print(result)
|