Source code for shadow4.beamline.optical_elements.mirrors.s4_hyperboloid_mirror

"""
The s4 hyperboloid mirror (optical element and beamline element).
"""
import numpy
from syned.beamline.shape import Hyperboloid, HyperbolicCylinder, Convexity, Direction
from shadow4.beam.s4_beam import S4Beam
from shadow4.beamline.s4_optical_element_decorators import SurfaceCalculation, S4HyperboloidOpticalElementDecorator
from shadow4.beamline.optical_elements.mirrors.s4_mirror import S4MirrorElement, S4Mirror, ElementCoordinates
from shadow4.beamline.s4_beamline_element_movements import S4BeamlineElementMovements

[docs]class S4HyperboloidMirror(S4Mirror, S4HyperboloidOpticalElementDecorator): """ Constructor. Parameters ---------- name : str, optional The name of the mirror. boundary_shape : instance of BoundaryShape, optional The boundary shape of the mirror. surface_calculation : int, optional flag: 0 = SurfaceCalculation.INTERNAL, 1 = SurfaceCalculation.EXTERNAL. is_cylinder : int, optional flag: 0=No (there is revolution symmetry along Y) 1=Yes (flat surface along X or Y). cylinder_direction : int (as defined by Direction), optional NONE = -1, UPWARD = 0, DOWNWARD = 1. convexity : int (as defined by Convexity), optional NONE = -1, UPWARD = 0, DOWNWARD = 1. min_axis : float, optional For surface_calculation=0, The minor axis of the hyperboloid (2a). maj_axis : float, optional For surface_calculation=0, The major axis of the hyperboloid (2b) pole_to_focus : float, optional For surface_calculation=0, the p or q distance (from focus to center of the optical element). f_reflec : int, optional the reflectivity of surface: - 0=no reflectivity, - 1=full polarization. f_refl : int, optional A flag to indicate the source of reflectivities: * 0=prerefl file, * 1=erefraction index, * 2=user defined file (1D angle in mrad, reflectivity), * 3=user defined file (1D energy in eV, reflectivity), * 4=user defined file (2D energy in eV, angle in mrad, reflectivity), * 5=direct calculation using xraylib, * 6=direct calculation using dabax. file_refl : str, optional name of user defined file (for f_refl=0). refraction_index : complex, optional complex scalar with refraction index n (for f_refl=1). material : str, optional string with material formula (for f_refl=5,6) density : float, optional material density in g/cm^3 (for f_refl=5,6) dabax : None or instance of DabaxXraylib, The pointer to the dabax library (used for f_refl=6). Returns ------- instance of S4HyperboloidMirror. """ def __init__(self, name="Hyperboloid Mirror", boundary_shape=None, surface_calculation=SurfaceCalculation.INTERNAL, is_cylinder=False, cylinder_direction=Direction.TANGENTIAL, convexity=Convexity.UPWARD, min_axis=0.0, maj_axis=0.0, pole_to_focus=0.0, # for external calculation p_focus=0.0, q_focus=0.0, grazing_angle=0.0, # inputs related to mirror reflectivity f_reflec=0, # reflectivity of surface: 0=no reflectivity, 1=full polarization f_refl=0, # 0=prerefl file # 1=refraction index # 2=user defined file (1D reflectivity vs angle) # 3=user defined file (1D reflectivity vs energy) # 4=user defined file (2D reflectivity vs energy and angle) # 5=direct calculation using xraylib # 6=direct calculation using dabax file_refl="", # preprocessor file fir f_refl=0,2,3,4 refraction_index=1.0, # refraction index (complex) for f_refl=1 coating_material="", # string with coating material formula for f_refl=5,6 coating_density=1.0, # coating material density for f_refl=5,6 coating_roughness=0.0, # coating material roughness in A for f_refl=5,6 dabax=None, ): S4HyperboloidOpticalElementDecorator.__init__(self, surface_calculation, is_cylinder, cylinder_direction, convexity, min_axis, maj_axis, pole_to_focus, p_focus, q_focus, grazing_angle) S4Mirror.__init__(self, name = name, boundary_shape = boundary_shape, surface_shape = self.get_surface_shape_instance(), f_reflec = f_reflec, f_refl = f_refl, file_refl = file_refl, refraction_index = refraction_index, coating_material = dabax, ) self.__inputs = { "name": name, "boundary_shape": boundary_shape, "surface_calculation": surface_calculation, "is_cylinder": is_cylinder, "cylinder_direction": cylinder_direction, "convexity": convexity, "min_axis": min_axis, "maj_axis": maj_axis, "pole_to_focus": pole_to_focus, "p_focus": p_focus, "q_focus": q_focus, "grazing_angle": grazing_angle, "f_reflec": f_reflec, "f_refl": f_refl, "file_refl": file_refl, "refraction_index": refraction_index, "coating_material": coating_material, "coating_density": coating_density, "coating_roughness": coating_roughness, "dabax": self._get_dabax_txt(), }
[docs] def to_python_code(self, **kwargs): """ Creates the python code for defining the element. Parameters ---------- **kwargs Returns ------- str Python code. """ txt = self.to_python_code_boundary_shape() txt_pre = """ from shadow4.beamline.optical_elements.mirrors.s4_hyperboloid_mirror import S4HyperboloidMirror optical_element = S4HyperboloidMirror(name='{name:s}', boundary_shape=boundary_shape, surface_calculation={surface_calculation:d}, # 0=Internal calculation, 1=External min_axis={min_axis:f}, maj_axis={maj_axis:f}, pole_to_focus={pole_to_focus:f}, p_focus={p_focus:f}, q_focus={q_focus:f}, grazing_angle={grazing_angle:.10f}, # for surface_calculation=0 is_cylinder={is_cylinder:d}, cylinder_direction={cylinder_direction:d}, convexity={convexity:d}, f_reflec={f_reflec:d}, # reflectivity of surface: 0=no reflectivity, 1=full polarization f_refl={f_refl:d}, # for f_reflec=1: file: 0=prerefl, 2=(mrad, refl), 3=(eV, refl), 4=(eV, mrad, refl); 1=refr index, 5=xraylib, 6=dabax file_refl='{file_refl:s}', # for f_refl=0,2,3,4 refraction_index={refraction_index:.10g}, # for f_refl=1 coating_material='{coating_material:s}', coating_density={coating_density:g}, # for f_refl=5,6 coating_roughness={coating_roughness:g}, # for f_refl=0,1,5,6 dabax={dabax:s}, # if using dabax (f_reflec=1,f_refl=6), instance of DabaxXraylib() (use None for default) ) """ txt += txt_pre.format(**self.__inputs) return txt
[docs]class S4HyperboloidMirrorElement(S4MirrorElement): """ Constructor. Parameters ---------- optical_element : instance of OpticalElement, optional The syned optical element. coordinates : instance of ElementCoordinates, optional The syned element coordinates. movements : instance of S4BeamlineElementMovements, optional The S4 element movements. input_beam : instance of S4Beam, optional The S4 incident beam. Returns ------- instance of S4HyperboloidMirrorElement """ def __init__(self, optical_element : S4HyperboloidMirror = None, coordinates : ElementCoordinates = None, movements: S4BeamlineElementMovements = None, input_beam : S4Beam = None): super().__init__(optical_element=optical_element if optical_element is not None else S4HyperboloidMirror(), coordinates=coordinates if coordinates is not None else ElementCoordinates(), movements=movements, input_beam=input_beam) if not (isinstance(self.get_optical_element().get_surface_shape(), HyperbolicCylinder) or isinstance(self.get_optical_element().get_surface_shape(), Hyperboloid)): raise ValueError("Wrong Optical Element: only Hyperboloid or Hyperbolic Cylinder shape is accepted")
[docs] def to_python_code(self, **kwargs): """ Creates the python code for defining the element. Parameters ---------- **kwargs Returns ------- str Python code. """ txt = "\n\n# optical element number XX" txt += self.get_optical_element().to_python_code() txt += self.to_python_code_coordinates() txt += self.to_python_code_movements() txt += "\nfrom shadow4.beamline.optical_elements.mirrors.s4_hyperboloid_mirror import S4HyperboloidMirrorElement" txt += "\nbeamline_element = S4HyperboloidMirrorElement(optical_element=optical_element, coordinates=coordinates, movements=movements, input_beam=beam)" txt += "\n\nbeam, footprint = beamline_element.trace_beam()" return txt
if __name__=="__main__": from syned.beamline.shape import Rectangle angle_radial = 88.0 el = S4HyperboloidMirrorElement(optical_element=S4HyperboloidMirror(boundary_shape=Rectangle(), surface_calculation=SurfaceCalculation.INTERNAL, is_cylinder=True, cylinder_direction=Direction.TANGENTIAL, convexity=Convexity.UPWARD, p_focus=20000, q_focus=1000, grazing_angle=numpy.radians(90-angle_radial)), coordinates=ElementCoordinates(p=20000, q=1000, angle_radial=88.0, angle_azimuthal=0.0)) print(el.get_optical_element().get_surface_shape())