├── .github └── FUNDING.yml ├── .gitignore ├── ChangeLog.txt ├── LICENSE ├── README.md ├── bin └── dartray.dart ├── lib ├── accelerators │ ├── accelerators.dart │ ├── brute_force_accel.dart │ ├── bvh_accel.dart │ ├── grid_accel.dart │ └── kdtree_accel.dart ├── cameras │ ├── cameras.dart │ ├── environment_camera.dart │ ├── orthographic_camera.dart │ └── perspective_camera.dart ├── core │ ├── animated_transform.dart │ ├── bbox.dart │ ├── camera.dart │ ├── camera_sample.dart │ ├── common.dart │ ├── core.dart │ ├── differential_geometry.dart │ ├── film.dart │ ├── filter.dart │ ├── integrator.dart │ ├── intersection.dart │ ├── kdtree.dart │ ├── light.dart │ ├── light │ │ ├── area_light.dart │ │ ├── light_sample.dart │ │ ├── light_sample_offsets.dart │ │ ├── shape_set.dart │ │ └── visibility_tester.dart │ ├── log.dart │ ├── material.dart │ ├── matrix4x4.dart │ ├── mipmap.dart │ ├── montecarlo.dart │ ├── normal.dart │ ├── octree.dart │ ├── output_image.dart │ ├── param_set.dart │ ├── pixel_sampler.dart │ ├── plugin.dart │ ├── point.dart │ ├── primitive.dart │ ├── primitive │ │ ├── aggregate.dart │ │ ├── geometric_primitive.dart │ │ └── transformed_primitive.dart │ ├── projective_camera.dart │ ├── quaternion.dart │ ├── ray.dart │ ├── ray_differential.dart │ ├── reflection │ │ ├── anisotropic.dart │ │ ├── blinn.dart │ │ ├── brdf_remap.dart │ │ ├── brdf_to_btdf.dart │ │ ├── bsdf.dart │ │ ├── bsdf_sample.dart │ │ ├── bsdf_sample_offsets.dart │ │ ├── bssrdf.dart │ │ ├── bxdf.dart │ │ ├── fresnel.dart │ │ ├── fresnel_blend.dart │ │ ├── fresnel_conductor.dart │ │ ├── fresnel_dielectric.dart │ │ ├── fresnel_no_op.dart │ │ ├── irregular_isotropic_brdf.dart │ │ ├── lambertian.dart │ │ ├── microfacet.dart │ │ ├── microfacet_distribution.dart │ │ ├── oren_nayar.dart │ │ ├── regular_halfangle_brdf.dart │ │ ├── scaled_bxdf.dart │ │ ├── specular_reflection.dart │ │ └── specular_transmission.dart │ ├── render_overrides.dart │ ├── renderer.dart │ ├── resource_manager.dart │ ├── rgb_color.dart │ ├── rng.dart │ ├── sample.dart │ ├── sampled_spectrum.dart │ ├── sampler.dart │ ├── scene.dart │ ├── shape.dart │ ├── spectrum.dart │ ├── spectrum_image.dart │ ├── spherical_harmonics.dart │ ├── stats.dart │ ├── surface_integrator.dart │ ├── surface_point.dart │ ├── texture.dart │ ├── texture │ │ ├── constant_texture.dart │ │ ├── cylindrical_mapping_2d.dart │ │ ├── identity_mapping_3d.dart │ │ ├── planar_mapping_2d.dart │ │ ├── spherical_mapping_2d.dart │ │ ├── texture_mapping_2d.dart │ │ ├── texture_mapping_3d.dart │ │ └── uv_mapping_2d.dart │ ├── texture_params.dart │ ├── transform.dart │ ├── vector.dart │ ├── volume │ │ ├── aggregate_volume.dart │ │ ├── density_region.dart │ │ ├── volume.dart │ │ └── volume_region.dart │ ├── volume_integrator.dart │ └── xyz_color.dart ├── dartray │ ├── dartray.dart │ ├── graphics_state.dart │ ├── pbrt_lexer.dart │ ├── pbrt_parser.dart │ ├── render_manager_interface.dart │ ├── render_options.dart │ └── transform_set.dart ├── dartray_core.dart ├── dartray_io.dart ├── dartray_io │ └── render_manager.dart ├── dartray_web.dart ├── dartray_web │ ├── render_isolate.dart │ ├── render_manager.dart │ └── render_task.dart ├── film │ ├── film.dart │ └── image_film.dart ├── filters │ ├── box_filter.dart │ ├── filters.dart │ ├── gaussian_filter.dart │ ├── lanczos_sinc_filter.dart │ ├── mitchell_filter.dart │ └── triangle_filter.dart ├── lights │ ├── diffuse_area_light.dart │ ├── distant_light.dart │ ├── goniometric_light.dart │ ├── infinite_area_light.dart │ ├── lights.dart │ ├── point_light.dart │ ├── projection_light.dart │ └── spot_light.dart ├── materials │ ├── glass_material.dart │ ├── kd_subsurface_material.dart │ ├── materials.dart │ ├── matte_material.dart │ ├── measured_material.dart │ ├── metal_material.dart │ ├── mirror_material.dart │ ├── mix_material.dart │ ├── plastic_material.dart │ ├── shiny_metal_material.dart │ ├── substrate_material.dart │ ├── subsurface_material.dart │ ├── translucent_material.dart │ └── uber_material.dart ├── pixel_samplers │ ├── linear_pixel_sampler.dart │ ├── pixel_samplers.dart │ ├── random_pixel_sampler.dart │ └── tile_pixel_sampler.dart ├── renderers │ ├── aggregate_test_renderer.dart │ ├── create_probes_renderer.dart │ ├── metropolis_renderer.dart │ ├── renderers.dart │ ├── sampler_renderer.dart │ └── surface_points_renderer.dart ├── samplers │ ├── adaptive_sampler.dart │ ├── best_candidate_sampler.dart │ ├── halton_sampler.dart │ ├── low_discrepancy_sampler.dart │ ├── random_sampler.dart │ ├── samplers.dart │ └── stratified_sampler.dart ├── shapes │ ├── cone.dart │ ├── cylinder.dart │ ├── disk.dart │ ├── heightfield.dart │ ├── hyperboloid.dart │ ├── loop_subdivision.dart │ ├── nurbs.dart │ ├── paraboloid.dart │ ├── shapes.dart │ ├── sphere.dart │ ├── triangle.dart │ └── triangle_mesh.dart ├── surface_integrators │ ├── ambient_occlusion_integrator.dart │ ├── diffuse_prt_integrator.dart │ ├── dipole_subsurface_integrator.dart │ ├── direct_lighting_integrator.dart │ ├── glossy_prt_integrator.dart │ ├── igi_integrator.dart │ ├── irradiance_cache_integrator.dart │ ├── path_integrator.dart │ ├── photon_map_integrator.dart │ ├── surface_integrators.dart │ ├── use_probes_integrator.dart │ └── whitted_integrator.dart ├── textures │ ├── bilerp_texture.dart │ ├── checkerboard_3d_texture.dart │ ├── checkerboard_texture.dart │ ├── dots_texture.dart │ ├── fbm_texture.dart │ ├── image_texture.dart │ ├── marble_texture.dart │ ├── mix_texture.dart │ ├── scale_texture.dart │ ├── textures.dart │ ├── uv_texture.dart │ ├── windy_texture.dart │ └── wrinkled_texture.dart ├── volume_integrators │ ├── emission_integrator.dart │ ├── single_scatter_integrator.dart │ └── volume_integrators.dart └── volume_regions │ ├── exponential_density_region.dart │ ├── homogenous_volume_region.dart │ ├── volume_grid.dart │ └── volume_regions.dart ├── pubspec.yaml ├── test ├── dartray_test.dart └── spectrum_test.dart └── web ├── dartray_isolate.dart ├── index.html ├── scenes ├── anim-bluespheres.pbrt ├── brdfs │ ├── cayman.brdf │ └── mystique.brdf ├── bump-sphere.pbrt ├── bunny.pbrt ├── cornell-mlt.pbrt ├── cornell-path.pbrt ├── geometry │ ├── bunny.pbrt.gz │ ├── density_render.60.pbrt.gz │ ├── room-teapot.pbrt.gz │ └── teapot-area-light.pbrt.gz ├── miscquads.pbrt ├── smoke-2.pbrt ├── spds │ └── metals │ │ ├── Ag.eta.spd │ │ ├── Ag.k.spd │ │ ├── Al.eta.spd │ │ ├── Al.k.spd │ │ ├── AlAs.eta.spd │ │ ├── AlAs.k.spd │ │ ├── AlAs_palik.eta.spd │ │ ├── AlAs_palik.k.spd │ │ ├── AlSb.eta.spd │ │ ├── AlSb.k.spd │ │ ├── AlSb_palik.eta.spd │ │ ├── AlSb_palik.k.spd │ │ ├── Au.eta.spd │ │ ├── Au.k.spd │ │ ├── Be.eta.spd │ │ ├── Be.k.spd │ │ ├── Be_palik.eta.spd │ │ ├── Be_palik.k.spd │ │ ├── Cr.eta.spd │ │ ├── Cr.k.spd │ │ ├── CsI.eta.spd │ │ ├── CsI.k.spd │ │ ├── CsI_palik.eta.spd │ │ ├── CsI_palik.k.spd │ │ ├── Cu.eta.spd │ │ ├── Cu.k.spd │ │ ├── Cu2O.eta.spd │ │ ├── Cu2O.k.spd │ │ ├── Cu2O_palik.eta.spd │ │ ├── Cu2O_palik.k.spd │ │ ├── CuO.eta.spd │ │ ├── CuO.k.spd │ │ ├── CuO_palik.eta.spd │ │ ├── CuO_palik.k.spd │ │ ├── Cu_palik.eta.spd │ │ ├── Cu_palik.k.spd │ │ ├── Hg.eta.spd │ │ ├── Hg.k.spd │ │ ├── HgTe.eta.spd │ │ ├── HgTe.k.spd │ │ ├── HgTe_palik.eta.spd │ │ ├── HgTe_palik.k.spd │ │ ├── Hg_palik.eta.spd │ │ ├── Hg_palik.k.spd │ │ ├── Ir.eta.spd │ │ ├── Ir.k.spd │ │ ├── Ir_palik.eta.spd │ │ ├── Ir_palik.k.spd │ │ ├── K.eta.spd │ │ ├── K.k.spd │ │ ├── KBr.eta.spd │ │ ├── KBr.k.spd │ │ ├── KBr_palik.eta.spd │ │ ├── KBr_palik.k.spd │ │ ├── KCl.eta.spd │ │ ├── KCl.k.spd │ │ ├── KCl_palik.eta.spd │ │ ├── KCl_palik.k.spd │ │ ├── K_palik.eta.spd │ │ ├── K_palik.k.spd │ │ ├── Li.eta.spd │ │ ├── Li.k.spd │ │ ├── Li_palik.eta.spd │ │ ├── Li_palik.k.spd │ │ ├── MgO.eta.spd │ │ ├── MgO.k.spd │ │ ├── MgO_palik.eta.spd │ │ ├── MgO_palik.k.spd │ │ ├── Mo.eta.spd │ │ ├── Mo.k.spd │ │ ├── Mo_palik.eta.spd │ │ ├── Mo_palik.k.spd │ │ ├── NaCl.eta.spd │ │ ├── NaCl.k.spd │ │ ├── NaCl_palik.eta.spd │ │ ├── NaCl_palik.k.spd │ │ ├── Na_palik.eta.spd │ │ ├── Na_palik.k.spd │ │ ├── Nb.eta.spd │ │ ├── Nb.k.spd │ │ ├── Nb_palik.eta.spd │ │ ├── Nb_palik.k.spd │ │ ├── Ni_palik.eta.spd │ │ ├── Ni_palik.k.spd │ │ ├── Rh.eta.spd │ │ ├── Rh.k.spd │ │ ├── Rh_palik.eta.spd │ │ ├── Rh_palik.k.spd │ │ ├── Se-e.eta.spd │ │ ├── Se-e.k.spd │ │ ├── Se-e_palik.eta.spd │ │ ├── Se-e_palik.k.spd │ │ ├── Se.eta.spd │ │ ├── Se.k.spd │ │ ├── Se_palik.eta.spd │ │ ├── Se_palik.k.spd │ │ ├── SiC.eta.spd │ │ ├── SiC.k.spd │ │ ├── SiC_palik.eta.spd │ │ ├── SiC_palik.k.spd │ │ ├── SiO.eta.spd │ │ ├── SiO.k.spd │ │ ├── SnTe.eta.spd │ │ ├── SnTe.k.spd │ │ ├── SnTe_palik.eta.spd │ │ ├── SnTe_palik.k.spd │ │ ├── Ta.eta.spd │ │ ├── Ta.k.spd │ │ ├── Ta_palik.eta.spd │ │ ├── Ta_palik.k.spd │ │ ├── Te-e.eta.spd │ │ ├── Te-e.k.spd │ │ ├── Te-e_palik.eta.spd │ │ ├── Te-e_palik.k.spd │ │ ├── Te.eta.spd │ │ ├── Te.k.spd │ │ ├── Te_palik.eta.spd │ │ ├── Te_palik.k.spd │ │ ├── ThF4.eta.spd │ │ ├── ThF4.k.spd │ │ ├── ThF4_palik.eta.spd │ │ ├── ThF4_palik.k.spd │ │ ├── TiC.eta.spd │ │ ├── TiC.k.spd │ │ ├── TiC_palik.eta.spd │ │ ├── TiC_palik.k.spd │ │ ├── TiN.eta.spd │ │ ├── TiN.k.spd │ │ ├── TiN_palik.eta.spd │ │ ├── TiN_palik.k.spd │ │ ├── TiO2-e.eta.spd │ │ ├── TiO2-e.k.spd │ │ ├── TiO2-e_palik.eta.spd │ │ ├── TiO2-e_palik.k.spd │ │ ├── TiO2.eta.spd │ │ ├── TiO2.k.spd │ │ ├── TiO2_palik.eta.spd │ │ ├── TiO2_palik.k.spd │ │ ├── VC.eta.spd │ │ ├── VC.k.spd │ │ ├── VC_palik.eta.spd │ │ ├── VC_palik.k.spd │ │ ├── VN.eta.spd │ │ ├── VN.k.spd │ │ ├── VN_palik.eta.spd │ │ ├── VN_palik.k.spd │ │ ├── V_palik.eta.spd │ │ ├── V_palik.k.spd │ │ ├── W.eta.spd │ │ ├── W.k.spd │ │ ├── a-C.eta.spd │ │ ├── a-C.k.spd │ │ ├── a-C_palik.eta.spd │ │ ├── a-C_palik.k.spd │ │ ├── a-SiH.eta.spd │ │ ├── a-SiH.k.spd │ │ ├── a-SiH_palik.eta.spd │ │ ├── a-SiH_palik.k.spd │ │ ├── d-C.eta.spd │ │ ├── d-C.k.spd │ │ ├── d-C_palik.eta.spd │ │ └── d-C_palik.k.spd ├── spotfog.pbrt ├── teapot-area-light.pbrt ├── teapot-metal.pbrt └── textures │ ├── buildingblock.exr │ ├── glacier_latlong.exr │ ├── grid.exr │ ├── lines.exr │ └── skylight-day.exr └── web_dartray.dart /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: brendan-duncan 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | packages/ 2 | pubspec.lock 3 | build 4 | packages 5 | output.png 6 | web/pbrt/ 7 | .idea/ 8 | .dart_tool/ 9 | .packages 10 | -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- 1 | v 0.0.2 - May 8, 2014 2 | 3 | - Fixed a number of bugs 4 | 5 | 6 | v 0.0.1 - April 25, 2014 7 | 8 | - Initial version. 9 | -------------------------------------------------------------------------------- /lib/accelerators/accelerators.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library accelerators; 22 | 23 | import 'dart:math' as Math; 24 | import 'dart:typed_data'; 25 | import '../core/core.dart'; 26 | 27 | part 'bvh_accel.dart'; 28 | part 'grid_accel.dart'; 29 | part 'kdtree_accel.dart'; 30 | part 'brute_force_accel.dart'; 31 | -------------------------------------------------------------------------------- /lib/cameras/cameras.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library cameras; 22 | 23 | import 'dart:math' as Math; 24 | import '../core/core.dart'; 25 | 26 | part 'environment_camera.dart'; 27 | part 'orthographic_camera.dart'; 28 | part 'perspective_camera.dart'; 29 | -------------------------------------------------------------------------------- /lib/core/filter.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | /** 24 | * Base class for sample filters. 25 | */ 26 | abstract class Filter { 27 | final double xWidth; 28 | final double yWidth; 29 | final double invXWidth; 30 | final double invYWidth; 31 | 32 | Filter(double xw, double yw) 33 | : xWidth = xw, 34 | yWidth = yw, 35 | invXWidth = 1.0 / xw, 36 | invYWidth = 1.0 / yw; 37 | 38 | double evaluate(double x, double y); 39 | } 40 | -------------------------------------------------------------------------------- /lib/core/light/area_light.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | abstract class AreaLight extends Light { 24 | AreaLight(Transform l2w, int ns) 25 | : super(l2w, ns); 26 | 27 | Spectrum L(Point p, Normal n, Vector w); 28 | } 29 | -------------------------------------------------------------------------------- /lib/core/light/light_sample_offsets.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | class LightSampleOffsets { 24 | LightSampleOffsets([this.nSamples = 0, Sample sample]) { 25 | if (sample != null) { 26 | componentOffset = sample.add1D(nSamples); 27 | posOffset = sample.add2D(nSamples); 28 | } 29 | } 30 | 31 | int nSamples; 32 | int componentOffset; 33 | int posOffset; 34 | } 35 | -------------------------------------------------------------------------------- /lib/core/reflection/bsdf_sample_offsets.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | class BSDFSampleOffsets { 24 | BSDFSampleOffsets([this.nSamples = 0, Sample sample]) { 25 | if (sample != null) { 26 | componentOffset = sample.add1D(nSamples); 27 | dirOffset = sample.add2D(nSamples); 28 | } else { 29 | componentOffset = 0; 30 | dirOffset = 0; 31 | } 32 | } 33 | 34 | int nSamples; 35 | int componentOffset; 36 | int dirOffset; 37 | } 38 | -------------------------------------------------------------------------------- /lib/core/reflection/fresnel.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | abstract class Fresnel { 24 | Spectrum evaluate(double cosi); 25 | } 26 | -------------------------------------------------------------------------------- /lib/core/reflection/fresnel_no_op.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | class FresnelNoOp extends Fresnel { 24 | Spectrum evaluate(double) { 25 | return new Spectrum(1.0); 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /lib/core/reflection/microfacet_distribution.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | /** 24 | * Defines a microfacet distribution for use in a Torrance-Sparrow microfacet 25 | * model for metallic surfaces. 26 | */ 27 | abstract class MicrofacetDistribution { 28 | double d(Vector wh); 29 | 30 | // returns pdf; wi is mutable. 31 | double sample_f(Vector wo, Vector wi, double u1, double u2); 32 | 33 | double pdf(Vector wo, Vector wi); 34 | } 35 | -------------------------------------------------------------------------------- /lib/core/surface_integrator.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | /** 24 | * Computes the radiance transmitting in the ray direction from a point 25 | * on a surface. 26 | */ 27 | abstract class SurfaceIntegrator extends Integrator { 28 | Spectrum Li(Scene scene, Renderer renderer, 29 | RayDifferential ray, Intersection isect, 30 | Sample sample, RNG rng); 31 | } 32 | -------------------------------------------------------------------------------- /lib/core/surface_point.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | class SurfacePoint { 24 | SurfacePoint(Point p, Normal n, this.area, this.rayEpsilon) 25 | : this.p = new Point.from(p), 26 | this.n = new Normal.from(n); 27 | 28 | final Point p; 29 | final Normal n; 30 | final double area; 31 | final double rayEpsilon; 32 | } 33 | -------------------------------------------------------------------------------- /lib/core/texture/texture_mapping_2d.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | abstract class TextureMapping2D { 24 | void map(DifferentialGeometry dg, List s, List t, 25 | List dsdx, List dtdx, List dsdy, 26 | List dtdy); 27 | } 28 | -------------------------------------------------------------------------------- /lib/core/texture/texture_mapping_3d.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | part of core; 22 | 23 | abstract class TextureMapping3D { 24 | Point map(DifferentialGeometry dg, Vector dpdx, Vector dpdy); 25 | } 26 | -------------------------------------------------------------------------------- /lib/dartray_io.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library dartray_io; 22 | 23 | import 'dart:async'; 24 | import 'dart:io'; 25 | import 'core/core.dart'; 26 | import 'dartray/dartray.dart'; 27 | 28 | export 'dartray_core.dart'; 29 | 30 | part 'dartray_io/render_manager.dart'; 31 | -------------------------------------------------------------------------------- /lib/dartray_web.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library dartray_web; 22 | 23 | import 'dart:async'; 24 | import 'dart:html'; 25 | import 'dart:math' as Math; 26 | import 'dart:typed_data'; 27 | 28 | import 'core/core.dart'; 29 | import 'dartray/dartray.dart'; 30 | 31 | import 'package:image/image.dart'; 32 | 33 | export 'dartray_core.dart'; 34 | 35 | part 'dartray_web/render_isolate.dart'; 36 | part 'dartray_web/render_manager.dart'; 37 | part 'dartray_web/render_task.dart'; 38 | -------------------------------------------------------------------------------- /lib/film/film.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library film; 22 | 23 | import 'dart:math'; 24 | import 'dart:typed_data'; 25 | 26 | import '../core/core.dart'; 27 | import 'package:image/image.dart'; 28 | 29 | part 'image_film.dart'; 30 | -------------------------------------------------------------------------------- /lib/filters/filters.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library filters; 22 | 23 | import 'dart:math'; 24 | import '../core/core.dart'; 25 | 26 | part 'box_filter.dart'; 27 | part 'gaussian_filter.dart'; 28 | part 'lanczos_sinc_filter.dart'; 29 | part 'mitchell_filter.dart'; 30 | part 'triangle_filter.dart'; 31 | -------------------------------------------------------------------------------- /lib/lights/lights.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library lights; 22 | 23 | import 'dart:async'; 24 | import 'dart:math' as Math; 25 | import 'dart:typed_data'; 26 | import '../core/core.dart'; 27 | 28 | part 'diffuse_area_light.dart'; 29 | part 'distant_light.dart'; 30 | part 'goniometric_light.dart'; 31 | part 'infinite_area_light.dart'; 32 | part 'point_light.dart'; 33 | part 'projection_light.dart'; 34 | part 'spot_light.dart'; 35 | -------------------------------------------------------------------------------- /lib/pixel_samplers/pixel_samplers.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library pixel_samplers; 22 | 23 | import 'dart:typed_data'; 24 | import '../core/core.dart'; 25 | 26 | part 'linear_pixel_sampler.dart'; 27 | part 'random_pixel_sampler.dart'; 28 | part 'tile_pixel_sampler.dart'; 29 | -------------------------------------------------------------------------------- /lib/samplers/samplers.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library samplers; 22 | 23 | import 'dart:math' as Math; 24 | import 'dart:typed_data'; 25 | import '../core/core.dart'; 26 | import '../pixel_samplers/pixel_samplers.dart'; 27 | 28 | part 'adaptive_sampler.dart'; 29 | part 'best_candidate_sampler.dart'; 30 | part 'halton_sampler.dart'; 31 | part 'low_discrepancy_sampler.dart'; 32 | part 'random_sampler.dart'; 33 | part 'stratified_sampler.dart'; 34 | -------------------------------------------------------------------------------- /lib/shapes/shapes.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library shapes; 22 | 23 | import 'dart:math' as Math; 24 | import 'dart:typed_data'; 25 | import '../core/core.dart'; 26 | 27 | part 'cone.dart'; 28 | part 'cylinder.dart'; 29 | part 'disk.dart'; 30 | part 'heightfield.dart'; 31 | part 'hyperboloid.dart'; 32 | part 'loop_subdivision.dart'; 33 | part 'nurbs.dart'; 34 | part 'paraboloid.dart'; 35 | part 'sphere.dart'; 36 | part 'triangle.dart'; 37 | part 'triangle_mesh.dart'; 38 | -------------------------------------------------------------------------------- /lib/volume_integrators/volume_integrators.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library volume_integrators; 22 | 23 | import 'dart:math' hide Point; 24 | import 'dart:typed_data'; 25 | import '../core/core.dart'; 26 | 27 | part 'emission_integrator.dart'; 28 | part 'single_scatter_integrator.dart'; 29 | -------------------------------------------------------------------------------- /lib/volume_regions/volume_regions.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | library volume_regions; 22 | 23 | import 'dart:math' hide Point; 24 | import 'dart:typed_data'; 25 | import '../core/core.dart'; 26 | 27 | part 'exponential_density_region.dart'; 28 | part 'homogenous_volume_region.dart'; 29 | part 'volume_grid.dart'; 30 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: dartray 2 | version: 0.0.2 3 | author: Brendan Duncan 4 | description: DartRay is an extendable physically based ray tracer providing a number of state-of-the-art algorithms for rendering, lighting and shading. It is a port of the PBRT renderer. 5 | homepage: https://github.com/brendan-duncan/dartray 6 | documentation: https://github.com/brendan-duncan/dartray/wiki 7 | dependencies: 8 | archive: '>=2.0.0 <3.0.0' 9 | image: '>=2.0.0 <3.0.0' 10 | dev_dependencies: 11 | args: any 12 | crypto: any 13 | build_runner: '>=0.8.10 <0.10.0' 14 | build_web_compilers: '>=0.3.6 <0.5.0' 15 | 16 | -------------------------------------------------------------------------------- /test/dartray_test.dart: -------------------------------------------------------------------------------- 1 | library dartray_test; 2 | 3 | //import 'package:unittest/unittest.dart'; 4 | import 'package:dartray/dartray_core.dart'; 5 | 6 | part 'spectrum_test.dart'; 7 | 8 | void main() { 9 | spectrum_test(); 10 | } 11 | -------------------------------------------------------------------------------- /test/spectrum_test.dart: -------------------------------------------------------------------------------- 1 | part of dartray_test; 2 | 3 | void spectrum_test() { 4 | /*group('RGBColor', () { 5 | test('constructor', () { 6 | RGBColor c1 = new RGBColor(); 7 | expect(c1.c[0], equals(0.0)); 8 | expect(c1.c[1], equals(0.0)); 9 | expect(c1.c[2], equals(0.0)); 10 | expect(c1.isBlack(), equals(true)); 11 | 12 | RGBColor c2 = new RGBColor(3.0); 13 | expect(c2.c[0], equals(3.0)); 14 | expect(c2.c[1], equals(3.0)); 15 | expect(c2.c[2], equals(3.0)); 16 | expect(c2.isBlack(), equals(false)); 17 | 18 | RGBColor c3 = new RGBColor.rgb(0.0, 1.0, 2.0); 19 | expect(c3.c[0], equals(0.0)); 20 | expect(c3.c[1], equals(1.0)); 21 | expect(c3.c[2], equals(2.0)); 22 | expect(c3.isBlack(), equals(false)); 23 | 24 | RGBColor c4 = new RGBColor.from(c3); 25 | expect(c4.c[0], equals(0.0)); 26 | expect(c4.c[1], equals(1.0)); 27 | expect(c4.c[2], equals(2.0)); 28 | }); 29 | });*/ 30 | } 31 | -------------------------------------------------------------------------------- /web/dartray_isolate.dart: -------------------------------------------------------------------------------- 1 | /**************************************************************************** 2 | * Copyright (C) 2014 by Brendan Duncan. * 3 | * * 4 | * This file is part of DartRay. * 5 | * * 6 | * Licensed under the Apache License, Version 2.0 (the "License"); * 7 | * you may not use this file except in compliance with the License. * 8 | * You may obtain a copy of the License at * 9 | * * 10 | * http://www.apache.org/licenses/LICENSE-2.0 * 11 | * * 12 | * Unless required by applicable law or agreed to in writing, software * 13 | * distributed under the License is distributed on an "AS IS" BASIS, * 14 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * 15 | * See the License for the specific language governing permissions and * 16 | * limitations under the License. * 17 | * * 18 | * This project is based on PBRT v2 ; see http://www.pbrt.org * 19 | * pbrt2 source code Copyright(c) 1998-2010 Matt Pharr and Greg Humphreys. * 20 | ****************************************************************************/ 21 | import 'package:dartray/dartray_web.dart'; 22 | import 'dart:html'; 23 | 24 | void main() { 25 | print("@@@@ dartray_isolate.dart"); 26 | DedicatedWorkerGlobalScope dws = DedicatedWorkerGlobalScope.instance; 27 | 28 | try { 29 | new RenderManager().startIsolate(); 30 | } catch (e) { 31 | //port.send('ERROR: $e'); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | dartray 8 | 43 | 44 | 45 | 46 |

DartRay

47 | 48 |

49 |

50 | 51 |
52 |

53 |


54 | 
55 |     
56 |   
57 | 
58 | 


--------------------------------------------------------------------------------
/web/scenes/anim-bluespheres.pbrt:
--------------------------------------------------------------------------------
 1 | 
 2 | LookAt 0 2 -5   0 -.3 0   0 1 0
 3 | Camera "perspective" "float fov" [22]
 4 | 
 5 | Film "image" "integer xresolution" [400] "integer yresolution" [200]
 6 | "string filename" "anim-bluespheres.exr"
 7 | 
 8 | Sampler "lowdiscrepancy" "integer pixelsamples" [64]
 9 | PixelFilter "box"
10 | 
11 | SurfaceIntegrator "path"
12 | 
13 | WorldBegin
14 | 
15 | #LightSource "distant" "point from" [0 20 -5] "point to" [0 0 0 ]
16 | #LightSource "distant" "point from" [0 0 -5] "point to" [0 0 0 ] "color L" [ .3 .3 .3]
17 | 
18 | AttributeBegin
19 | Rotate -90 1 0 0
20 | LightSource "infinite" "string mapname" ["textures/skylight-day.exr"]
21 |         "integer nsamples" [8]
22 | AttributeEnd
23 | 
24 | Texture "lines-tex" "color" "imagemap" "string filename" "textures/lines.exr"
25 | Material "plastic" "texture Kd" "lines-tex"
26 | "float roughness" [.002] "color Ks" [.3 .3 .3]
27 | 
28 | AttributeBegin
29 | Translate -1.25 0 0
30 | Rotate 40 1 1 0
31 | Shape "sphere" "float radius" [.5]
32 | AttributeEnd
33 | 
34 | AttributeBegin
35 | Rotate 40 1 1 0
36 | ActiveTransform EndTime
37 | Rotate 7 0 0 1
38 | ActiveTransform All
39 | Shape "sphere" "float radius" [.5]
40 | AttributeEnd
41 | 
42 | AttributeBegin
43 | Translate 1.25 0 0
44 | Rotate 40 1 1 0
45 | ActiveTransform EndTime
46 | Rotate 20 0 0 1
47 | Shape "sphere" "float radius" [.5]
48 | AttributeEnd
49 | 
50 | AttributeBegin
51 | Material "uber" "color Kr" [1 1 1] "color Kd" [.2 .2 .2]
52 |     "color Ks" [ 0 0 0]
53 | Material "mirror"
54 | Translate 0 0 1
55 | Rotate 45 1 0 0
56 | Shape "trianglemesh" "integer indices" [ 0 1 2] 
57 |     "point P" [-10 -10 0   10 -10 0   0 10 0]
58 | #Shape "trianglemesh" "integer indices" [ 0 1 2] 
59 | #    "point P" [-200 -0.5 0   200 -0.5 0   0 -0.5 200]
60 | AttributeEnd
61 | 
62 | WorldEnd
63 | 
64 | 


--------------------------------------------------------------------------------
/web/scenes/bump-sphere.pbrt:
--------------------------------------------------------------------------------
 1 | 
 2 | Film "image"
 3 | 	"integer xresolution" [400] "integer yresolution" [400]
 4 |     "string filename" "bump-sphere.exr"
 5 | 
 6 | Sampler "lowdiscrepancy" "integer pixelsamples" [16] 
 7 | PixelFilter "box"
 8 | 
 9 | LookAt 0 3 8  0 .8 0   0 1 0
10 | Camera "perspective" "float fov" [22]
11 | 
12 | SurfaceIntegrator "directlighting"
13 | 
14 | WorldBegin
15 | 
16 | AttributeBegin
17 |   CoordSysTransform "camera"
18 |   AreaLightSource "area" "color L" [12 12 12  ] "integer nsamples" [16]
19 |   Translate 0 2 -10
20 |   Material "matte" "color Kd" [ 0 0 0 ]
21 |   Shape "disk" "float radius" [3] 
22 | AttributeEnd
23 | 
24 | AttributeBegin
25 |   AreaLightSource "area" "color L" [2 2 2] "integer nsamples" [16]
26 |   Translate 0 10 2
27 |   Rotate 90 1 0 0 
28 |   Material "matte" "color Kd" [ 0 0 0 ]
29 |   Shape "disk" "float radius" [10] 
30 | AttributeEnd
31 | 
32 | AttributeBegin
33 |   Material "matte" "color Kd" [.8 .8 .8 ]
34 |   Shape "trianglemesh" "integer indices" [ 0 1 2 2 0 3 ]
35 |     "point P" [-10 0 -10   10 0 -10   10 0 10   -10 0 10 ]
36 |   Shape "trianglemesh" "integer indices" [ 0 1 2 2 0 3 ]
37 |     "point P" [-10 0 -10   10 0 -10   10 9 -10   -10 9 -10 ]
38 |   Shape "trianglemesh" "integer indices" [ 0 1 2 2 0 3 ]
39 |     "point P" [-10 0 -10   -10 0 10   -10 9 10   -10 9 -10 ]
40 | AttributeEnd
41 | 
42 | Texture "bump" "float" "imagemap" "string filename" ["textures/lines.exr"]
43 | Texture "sbump" "float" "scale" "texture tex1" "bump" "float tex2" [-.1]
44 | 
45 | Material "uber" "color Kd" [.8 .7 .4 ] "color Ks" [.05 .05 .05]
46 | 	 "float roughness" [.01] "texture bumpmap" "sbump"
47 | 
48 | AttributeBegin
49 | Translate 0 1 0
50 | Rotate 60 1 1 1
51 | Shape "sphere"
52 | AttributeEnd
53 | 
54 | WorldEnd
55 | 


--------------------------------------------------------------------------------
/web/scenes/bunny.pbrt:
--------------------------------------------------------------------------------
 1 | Film "image"
 2 |     "string filename" "bunny.exr"
 3 | 
 4 | Sampler "lowdiscrepancy" "integer pixelsamples" [32]
 5 | 
 6 | LookAt 0 .2 .2    -.02 .1 0  0 1 0
 7 | Camera "perspective" "float fov" [60]
 8 | 
 9 | WorldBegin
10 | 
11 | AttributeBegin
12 | Rotate 90 1 0 0
13 | LightSource "infinite" "string mapname" ["textures/glacier_latlong.exr"]
14 |         "integer nsamples" [32]
15 | AttributeEnd
16 | 
17 | AttributeBegin
18 | #AreaLightSource "area" "color L" [60 60 60 ] "integer nsamples"  [3]
19 | #AreaLightSource "area" "color L" [15 15 15 ] "integer nsamples"  [4]
20 | Translate 0 2 0
21 | Rotate 90 1 0 0
22 | #Shape "disk" "float radius" [.25]
23 | AttributeEnd
24 | 
25 | Material "matte" "color Kd" [.4 .42 .4]
26 | Shape "trianglemesh" "point P" [ -1 0 -1 1 0 -1 1 0 1 -1 0 1 ]
27 | 	"integer indices" [ 0 1 2 2 3 0]
28 | 
29 | Material "measured" "string filename" "brdfs/mystique.brdf"
30 | 
31 | Include "geometry/bunny.pbrt.gz"
32 | 
33 | WorldEnd
34 | 


--------------------------------------------------------------------------------
/web/scenes/geometry/bunny.pbrt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/geometry/bunny.pbrt.gz


--------------------------------------------------------------------------------
/web/scenes/geometry/density_render.60.pbrt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/geometry/density_render.60.pbrt.gz


--------------------------------------------------------------------------------
/web/scenes/geometry/room-teapot.pbrt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/geometry/room-teapot.pbrt.gz


--------------------------------------------------------------------------------
/web/scenes/geometry/teapot-area-light.pbrt.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/geometry/teapot-area-light.pbrt.gz


--------------------------------------------------------------------------------
/web/scenes/smoke-2.pbrt:
--------------------------------------------------------------------------------
 1 | 
 2 | LookAt 3.3 4 -4   1.2 .7 0    0 1 0
 3 | Camera "perspective" "float fov" [28]
 4 | Film "image" "integer xresolution" [400] "integer yresolution" [400]
 5 |     "string filename" "smoke-2.exr"
 6 | 
 7 | #Sampler "bestcandidate" "integer pixelsamples" [15]
 8 | #PixelFilter "triangle"
 9 | 
10 | VolumeIntegrator "single" "float stepsize" [.025]
11 | 
12 | WorldBegin
13 | 
14 | #LightSource "point" "point from" [0 10 2] "color I" [100 100 100]
15 | AttributeBegin
16 | AreaLightSource "area" "color L" [9500 9500 9500 ] "integer nsamples" [4]
17 | Translate 4 15 -2
18 | Rotate 80 1 0 0
19 | Shape "disk" "float radius" [.2]
20 | AttributeEnd
21 | 
22 | Include "geometry/density_render.60.pbrt.gz"
23 |   "color sigma_a" [1 1 1] "color sigma_s" [4 4 4]
24 |   "color Le" [4.5 4.5 4.5]
25 | 
26 | Material "matte" "color Kd" [.57 .57 .6]
27 | Translate 0 -1 0
28 | Shape "trianglemesh" "integer indices" [0 1 2 2 3 0]
29 | 	"point P" [ -5 0 -5  5 0 -5  5 0 5  -5 0 5]
30 | Shape "trianglemesh" "integer indices" [0 1 2 2 3 0]
31 | 	"point P" [ -5 0 1.7  5 0 1.7   5 10 1.7  -5 10 1.7 ]
32 | 
33 | WorldEnd
34 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ag.eta.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 1.519000
 2 | 302.400421 1.496000
 3 | 306.133759 1.432500
 4 | 309.960449 1.323000
 5 | 313.884003 1.142062
 6 | 317.908142 0.932000
 7 | 322.036835 0.719062
 8 | 326.274139 0.526000
 9 | 330.624481 0.388125
10 | 335.092377 0.294000
11 | 339.682678 0.253313
12 | 344.400482 0.238000
13 | 349.251221 0.221438
14 | 354.240509 0.209000
15 | 359.374420 0.194813
16 | 364.659332 0.186000
17 | 370.102020 0.192063
18 | 375.709625 0.200000
19 | 381.489777 0.198063
20 | 387.450562 0.192000
21 | 393.600555 0.182000
22 | 399.948975 0.173000
23 | 406.505493 0.172625
24 | 413.280579 0.173000
25 | 420.285339 0.166688
26 | 427.531647 0.160000
27 | 435.032196 0.158500
28 | 442.800629 0.157000
29 | 450.851562 0.151063
30 | 459.200653 0.144000
31 | 467.864838 0.137313
32 | 476.862213 0.132000
33 | 486.212463 0.130250
34 | 495.936707 0.130000
35 | 506.057861 0.129938
36 | 516.600769 0.130000
37 | 527.592224 0.130063
38 | 539.061646 0.129000
39 | 551.040771 0.124375
40 | 563.564453 0.120000
41 | 576.670593 0.119313
42 | 590.400818 0.121000
43 | 604.800842 0.125500
44 | 619.920898 0.131000
45 | 635.816284 0.136125
46 | 652.548279 0.140000
47 | 670.184753 0.140063
48 | 688.800964 0.140000
49 | 708.481018 0.144313
50 | 729.318665 0.148000
51 | 751.419250 0.145875
52 | 774.901123 0.143000
53 | 799.897949 0.142563
54 | 826.561157 0.145000
55 | 855.063293 0.151938
56 | 885.601257 0.163000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ag.k.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 1.080000
 2 | 302.400421 0.882000
 3 | 306.133759 0.761063
 4 | 309.960449 0.647000
 5 | 313.884003 0.550875
 6 | 317.908142 0.504000
 7 | 322.036835 0.554375
 8 | 326.274139 0.663000
 9 | 330.624481 0.818563
10 | 335.092377 0.986000
11 | 339.682678 1.120687
12 | 344.400482 1.240000
13 | 349.251221 1.345250
14 | 354.240509 1.440000
15 | 359.374420 1.533750
16 | 364.659332 1.610000
17 | 370.102020 1.641875
18 | 375.709625 1.670000
19 | 381.489777 1.735000
20 | 387.450562 1.810000
21 | 393.600555 1.878750
22 | 399.948975 1.950000
23 | 406.505493 2.029375
24 | 413.280579 2.110000
25 | 420.285339 2.186250
26 | 427.531647 2.260000
27 | 435.032196 2.329375
28 | 442.800629 2.400000
29 | 450.851562 2.478750
30 | 459.200653 2.560000
31 | 467.864838 2.640000
32 | 476.862213 2.720000
33 | 486.212463 2.798125
34 | 495.936707 2.880000
35 | 506.057861 2.973750
36 | 516.600769 3.070000
37 | 527.592224 3.159375
38 | 539.061646 3.250000
39 | 551.040771 3.348125
40 | 563.564453 3.450000
41 | 576.670593 3.553750
42 | 590.400818 3.660000
43 | 604.800842 3.766250
44 | 619.920898 3.880000
45 | 635.816284 4.010625
46 | 652.548279 4.150000
47 | 670.184753 4.293125
48 | 688.800964 4.440000
49 | 708.481018 4.586250
50 | 729.318665 4.740000
51 | 751.419250 4.908125
52 | 774.901123 5.090000
53 | 799.897949 5.288750
54 | 826.561157 5.500000
55 | 855.063293 5.720624
56 | 885.601257 5.950000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Al.eta.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 0.273375
 2 | 302.400421 0.280000
 3 | 306.133759 0.286813
 4 | 309.960449 0.294000
 5 | 313.884003 0.301875
 6 | 317.908142 0.310000
 7 | 322.036835 0.317875
 8 | 326.274139 0.326000
 9 | 330.624481 0.334750
10 | 335.092377 0.344000
11 | 339.682678 0.353813
12 | 344.400482 0.364000
13 | 349.251221 0.374375
14 | 354.240509 0.385000
15 | 359.374420 0.395750
16 | 364.659332 0.407000
17 | 370.102020 0.419125
18 | 375.709625 0.432000
19 | 381.489777 0.445688
20 | 387.450562 0.460000
21 | 393.600555 0.474688
22 | 399.948975 0.490000
23 | 406.505493 0.506188
24 | 413.280579 0.523000
25 | 420.285339 0.540063
26 | 427.531647 0.558000
27 | 435.032196 0.577313
28 | 442.800629 0.598000
29 | 450.851562 0.620313
30 | 459.200653 0.644000
31 | 467.864838 0.668625
32 | 476.862213 0.695000
33 | 486.212463 0.723750
34 | 495.936707 0.755000
35 | 506.057861 0.789000
36 | 516.600769 0.826000
37 | 527.592224 0.867000
38 | 539.061646 0.912000
39 | 551.040771 0.963000
40 | 563.564453 1.020000
41 | 576.670593 1.080000
42 | 590.400818 1.150000
43 | 604.800842 1.220000
44 | 619.920898 1.300000
45 | 635.816284 1.390000
46 | 652.548279 1.490000
47 | 670.184753 1.600000
48 | 688.800964 1.740000
49 | 708.481018 1.910000
50 | 729.318665 2.140000
51 | 751.419250 2.410000
52 | 774.901123 2.630000
53 | 799.897949 2.800000
54 | 826.561157 2.740000
55 | 855.063293 2.580000
56 | 885.601257 2.240000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Al.k.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 3.593750
 2 | 302.400421 3.640000
 3 | 306.133759 3.689375
 4 | 309.960449 3.740000
 5 | 313.884003 3.789375
 6 | 317.908142 3.840000
 7 | 322.036835 3.894375
 8 | 326.274139 3.950000
 9 | 330.624481 4.005000
10 | 335.092377 4.060000
11 | 339.682678 4.113750
12 | 344.400482 4.170000
13 | 349.251221 4.233750
14 | 354.240509 4.300000
15 | 359.374420 4.365000
16 | 364.659332 4.430000
17 | 370.102020 4.493750
18 | 375.709625 4.560000
19 | 381.489777 4.633750
20 | 387.450562 4.710000
21 | 393.600555 4.784375
22 | 399.948975 4.860000
23 | 406.505493 4.938125
24 | 413.280579 5.020000
25 | 420.285339 5.108750
26 | 427.531647 5.200000
27 | 435.032196 5.290000
28 | 442.800629 5.380000
29 | 450.851562 5.480000
30 | 459.200653 5.580000
31 | 467.864838 5.690000
32 | 476.862213 5.800000
33 | 486.212463 5.915000
34 | 495.936707 6.030000
35 | 506.057861 6.150000
36 | 516.600769 6.280000
37 | 527.592224 6.420000
38 | 539.061646 6.550000
39 | 551.040771 6.700000
40 | 563.564453 6.850000
41 | 576.670593 7.000000
42 | 590.400818 7.150000
43 | 604.800842 7.310000
44 | 619.920898 7.480000
45 | 635.816284 7.650000
46 | 652.548279 7.820000
47 | 670.184753 8.010000
48 | 688.800964 8.210000
49 | 708.481018 8.390000
50 | 729.318665 8.570000
51 | 751.419250 8.620000
52 | 774.901123 8.600000
53 | 799.897949 8.450000
54 | 826.561157 8.310000
55 | 855.063293 8.210000
56 | 885.601257 8.210000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlAs.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlAs
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 4.470000
12 | 309.950012 4.920000
13 | 317.897003 5.350000
14 | 326.263000 5.390000
15 | 335.081024 4.990000
16 | 344.389008 4.720000
17 | 354.229004 4.480000
18 | 364.647003 4.300000
19 | 375.696991 4.130000
20 | 387.437988 3.930000
21 | 393.587006 0.000000
22 | 397.372009 0.000000
23 | 399.935028 0.000000
24 | 403.187012 0.000000
25 | 406.492004 0.000000
26 | 409.850983 0.000000
27 | 413.266998 0.000000
28 | 416.739990 0.000000
29 | 420.270996 0.000000
30 | 423.863007 0.000000
31 | 427.516998 0.000000
32 | 431.235016 0.000000
33 | 435.018036 0.000000
34 | 442.785980 3.703000
35 | 459.185028 3.570000
36 | 476.846008 3.472000
37 | 495.920013 3.394000
38 | 516.583008 3.329000
39 | 539.044006 3.273000
40 | 563.545044 3.225000
41 | 590.381042 3.183000
42 | 619.900024 3.145000
43 | 652.526001 3.112000
44 | 688.778015 3.082000
45 | 729.294006 3.056000
46 | 774.875000 3.032000
47 | 826.533020 3.010000
48 | 885.570984 2.990000
49 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlAs.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlAs
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 2.680000
12 | 309.950012 2.490000
13 | 317.897003 2.150000
14 | 326.263000 1.300000
15 | 335.081024 0.752000
16 | 344.389008 0.519000
17 | 354.229004 0.334000
18 | 364.647003 0.233000
19 | 375.696991 0.139000
20 | 387.437988 0.115000
21 | 393.587006 0.119000
22 | 397.372009 0.115000
23 | 399.935028 0.113000
24 | 403.187012 0.110000
25 | 406.492004 0.106000
26 | 409.850983 0.099800
27 | 413.266998 0.063800
28 | 416.739990 0.031500
29 | 420.270996 0.018900
30 | 423.863007 0.011800
31 | 427.516998 0.010500
32 | 431.235016 0.010300
33 | 435.018036 0.009930
34 | 442.785980 0.001610
35 | 459.185028 0.001560
36 | 476.846008 0.001530
37 | 495.920013 0.001250
38 | 516.583008 0.000682
39 | 539.044006 0.000275
40 | 563.545044 0.000040
41 | 590.381042 0.000002
42 | 619.900024 0.000000
43 | 652.526001 0.000000
44 | 688.778015 0.000000
45 | 729.294006 0.000000
46 | 774.875000 0.000000
47 | 826.533020 0.000000
48 | 885.570984 0.000000
49 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlAs_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlAs
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 4.470000
12 | 309.950012 4.920000
13 | 317.897003 5.350000
14 | 326.263000 5.390000
15 | 335.081024 4.990000
16 | 344.389008 4.720000
17 | 354.229004 4.480000
18 | 364.647003 4.300000
19 | 375.696991 4.130000
20 | 387.437988 3.930000
21 | 393.587006 0.000000
22 | 397.372009 0.000000
23 | 399.935028 0.000000
24 | 403.187012 0.000000
25 | 406.492004 0.000000
26 | 409.850983 0.000000
27 | 413.266998 0.000000
28 | 416.739990 0.000000
29 | 420.270996 0.000000
30 | 423.863007 0.000000
31 | 427.516998 0.000000
32 | 431.235016 0.000000
33 | 435.018036 0.000000
34 | 442.785980 3.703000
35 | 459.185028 3.570000
36 | 476.846008 3.472000
37 | 495.920013 3.394000
38 | 516.583008 3.329000
39 | 539.044006 3.273000
40 | 563.545044 3.225000
41 | 590.381042 3.183000
42 | 619.900024 3.145000
43 | 652.526001 3.112000
44 | 688.778015 3.082000
45 | 729.294006 3.056000
46 | 774.875000 3.032000
47 | 826.533020 3.010000
48 | 885.570984 2.990000
49 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlAs_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlAs
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 2.680000
12 | 309.950012 2.490000
13 | 317.897003 2.150000
14 | 326.263000 1.300000
15 | 335.081024 0.752000
16 | 344.389008 0.519000
17 | 354.229004 0.334000
18 | 364.647003 0.233000
19 | 375.696991 0.139000
20 | 387.437988 0.115000
21 | 393.587006 0.119000
22 | 397.372009 0.115000
23 | 399.935028 0.113000
24 | 403.187012 0.110000
25 | 406.492004 0.106000
26 | 409.850983 0.099800
27 | 413.266998 0.063800
28 | 416.739990 0.031500
29 | 420.270996 0.018900
30 | 423.863007 0.011800
31 | 427.516998 0.010500
32 | 431.235016 0.010300
33 | 435.018036 0.009930
34 | 442.785980 0.001610
35 | 459.185028 0.001560
36 | 476.846008 0.001530
37 | 495.920013 0.001250
38 | 516.583008 0.000682
39 | 539.044006 0.000275
40 | 563.545044 0.000040
41 | 590.381042 0.000002
42 | 619.900024 0.000000
43 | 652.526001 0.000000
44 | 688.778015 0.000000
45 | 729.294006 0.000000
46 | 774.875000 0.000000
47 | 826.533020 0.000000
48 | 885.570984 0.000000
49 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlSb.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlSb
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 3.150000
12 | 309.950012 3.500000
13 | 317.897003 3.710000
14 | 326.263000 3.810000
15 | 335.081024 3.930000
16 | 344.389008 3.960000
17 | 354.229004 3.950000
18 | 364.647003 3.970000
19 | 375.696991 4.140000
20 | 387.437988 4.510000
21 | 399.935028 4.570000
22 | 413.266998 4.520000
23 | 427.516998 4.660000
24 | 442.785980 5.270000
25 | 459.185028 5.080000
26 | 476.846008 4.810000
27 | 495.920013 4.610000
28 | 516.583008 4.440000
29 | 539.044006 4.310000
30 | 563.545044 4.200000
31 | 590.381042 4.010000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlSb.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlSb
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 4.000000
12 | 309.950012 3.710000
13 | 317.897003 3.400000
14 | 326.263000 3.160000
15 | 335.081024 2.970000
16 | 344.389008 2.810000
17 | 354.229004 2.690000
18 | 364.647003 2.640000
19 | 375.696991 2.690000
20 | 387.437988 2.470000
21 | 399.935028 2.120000
22 | 413.266998 1.970000
23 | 427.516998 2.060000
24 | 442.785980 1.580000
25 | 459.185028 0.920000
26 | 476.846008 0.630000
27 | 495.920013 0.460000
28 | 516.583008 0.330000
29 | 539.044006 0.240000
30 | 563.545044 0.010000
31 | 590.381042 0.006000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlSb_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlSb
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 3.150000
12 | 309.950012 3.500000
13 | 317.897003 3.710000
14 | 326.263000 3.810000
15 | 335.081024 3.930000
16 | 344.389008 3.960000
17 | 354.229004 3.950000
18 | 364.647003 3.970000
19 | 375.696991 4.140000
20 | 387.437988 4.510000
21 | 399.935028 4.570000
22 | 413.266998 4.520000
23 | 427.516998 4.660000
24 | 442.785980 5.270000
25 | 459.185028 5.080000
26 | 476.846008 4.810000
27 | 495.920013 4.610000
28 | 516.583008 4.440000
29 | 539.044006 4.310000
30 | 563.545044 4.200000
31 | 590.381042 4.010000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/AlSb_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic AlSb
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 4.000000
12 | 309.950012 3.710000
13 | 317.897003 3.400000
14 | 326.263000 3.160000
15 | 335.081024 2.970000
16 | 344.389008 2.810000
17 | 354.229004 2.690000
18 | 364.647003 2.640000
19 | 375.696991 2.690000
20 | 387.437988 2.470000
21 | 399.935028 2.120000
22 | 413.266998 1.970000
23 | 427.516998 2.060000
24 | 442.785980 1.580000
25 | 459.185028 0.920000
26 | 476.846008 0.630000
27 | 495.920013 0.460000
28 | 516.583008 0.330000
29 | 539.044006 0.240000
30 | 563.545044 0.010000
31 | 590.381042 0.006000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Au.eta.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 1.795000
 2 | 302.400421 1.812000
 3 | 306.133759 1.822625
 4 | 309.960449 1.830000
 5 | 313.884003 1.837125
 6 | 317.908142 1.840000
 7 | 322.036835 1.834250
 8 | 326.274139 1.824000
 9 | 330.624481 1.812000
10 | 335.092377 1.798000
11 | 339.682678 1.782000
12 | 344.400482 1.766000
13 | 349.251221 1.752500
14 | 354.240509 1.740000
15 | 359.374420 1.727625
16 | 364.659332 1.716000
17 | 370.102020 1.705875
18 | 375.709625 1.696000
19 | 381.489777 1.684750
20 | 387.450562 1.674000
21 | 393.600555 1.666000
22 | 399.948975 1.658000
23 | 406.505493 1.647250
24 | 413.280579 1.636000
25 | 420.285339 1.628000
26 | 427.531647 1.616000
27 | 435.032196 1.596250
28 | 442.800629 1.562000
29 | 450.851562 1.502125
30 | 459.200653 1.426000
31 | 467.864838 1.345875
32 | 476.862213 1.242000
33 | 486.212463 1.086750
34 | 495.936707 0.916000
35 | 506.057861 0.754500
36 | 516.600769 0.608000
37 | 527.592224 0.491750
38 | 539.061646 0.402000
39 | 551.040771 0.345500
40 | 563.564453 0.306000
41 | 576.670593 0.267625
42 | 590.400818 0.236000
43 | 604.800842 0.212375
44 | 619.920898 0.194000
45 | 635.816284 0.177750
46 | 652.548279 0.166000
47 | 670.184753 0.161000
48 | 688.800964 0.160000
49 | 708.481018 0.160875
50 | 729.318665 0.164000
51 | 751.419250 0.169500
52 | 774.901123 0.176000
53 | 799.897949 0.181375
54 | 826.561157 0.188000
55 | 855.063293 0.198125
56 | 885.601257 0.210000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Au.k.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 1.920375
 2 | 302.400421 1.920000
 3 | 306.133759 1.918875
 4 | 309.960449 1.916000
 5 | 313.884003 1.911375
 6 | 317.908142 1.904000
 7 | 322.036835 1.891375
 8 | 326.274139 1.878000
 9 | 330.624481 1.868250
10 | 335.092377 1.860000
11 | 339.682678 1.851750
12 | 344.400482 1.846000
13 | 349.251221 1.845250
14 | 354.240509 1.848000
15 | 359.374420 1.852375
16 | 364.659332 1.862000
17 | 370.102020 1.883000
18 | 375.709625 1.906000
19 | 381.489777 1.922500
20 | 387.450562 1.936000
21 | 393.600555 1.947750
22 | 399.948975 1.956000
23 | 406.505493 1.959375
24 | 413.280579 1.958000
25 | 420.285339 1.951375
26 | 427.531647 1.940000
27 | 435.032196 1.924500
28 | 442.800629 1.904000
29 | 450.851562 1.875875
30 | 459.200653 1.846000
31 | 467.864838 1.814625
32 | 476.862213 1.796000
33 | 486.212463 1.797375
34 | 495.936707 1.840000
35 | 506.057861 1.956500
36 | 516.600769 2.120000
37 | 527.592224 2.326250
38 | 539.061646 2.540000
39 | 551.040771 2.730625
40 | 563.564453 2.880000
41 | 576.670593 2.940625
42 | 590.400818 2.970000
43 | 604.800842 3.015000
44 | 619.920898 3.060000
45 | 635.816284 3.070000
46 | 652.548279 3.150000
47 | 670.184753 3.445812
48 | 688.800964 3.800000
49 | 708.481018 4.087687
50 | 729.318665 4.357000
51 | 751.419250 4.610188
52 | 774.901123 4.860000
53 | 799.897949 5.125813
54 | 826.561157 5.390000
55 | 855.063293 5.631250
56 | 885.601257 5.880000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Be.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline Be
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  Be_llnl_cxro + Be_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 310.000000 2.470000
11 | 326.300018 2.550000
12 | 344.399994 2.640000
13 | 364.600006 2.730000
14 | 387.399994 2.840000
15 | 413.300018 2.950000
16 | 442.800018 3.070000
17 | 476.800018 3.190000
18 | 516.600037 3.300000
19 | 563.500000 3.390000
20 | 619.900024 3.460000
21 | 688.799988 3.470000
22 | 774.900024 3.440000
23 | 885.600037 3.350000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Be.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline Be
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  Be_llnl_cxro + Be_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 310.000000 3.080000
11 | 326.300018 3.080000
12 | 344.399994 3.080000
13 | 364.600006 3.100000
14 | 387.399994 3.120000
15 | 413.300018 3.140000
16 | 442.800018 3.160000
17 | 476.800018 3.160000
18 | 516.600037 3.180000
19 | 563.500000 3.170000
20 | 619.900024 3.180000
21 | 688.799988 3.230000
22 | 774.900024 3.350000
23 | 885.600037 3.550000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Be_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | 310.000000 2.470000
 3 | 326.300018 2.550000
 4 | 344.399994 2.640000
 5 | 364.600006 2.730000
 6 | 387.399994 2.840000
 7 | 413.300018 2.950000
 8 | 442.800018 3.070000
 9 | 476.800018 3.190000
10 | 516.600037 3.300000
11 | 563.500000 3.390000
12 | 619.900024 3.460000
13 | 688.799988 3.470000
14 | 774.900024 3.440000
15 | 885.600037 3.350000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Be_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | 310.000000 3.080000
 3 | 326.300018 3.080000
 4 | 344.399994 3.080000
 5 | 364.600006 3.100000
 6 | 387.399994 3.120000
 7 | 413.300018 3.140000
 8 | 442.800018 3.160000
 9 | 476.800018 3.160000
10 | 516.600037 3.180000
11 | 563.500000 3.170000
12 | 619.900024 3.180000
13 | 688.799988 3.230000
14 | 774.900024 3.350000
15 | 885.600037 3.550000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cr.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cr
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  Cr_llnl_cxro + Cr_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 300.194000 0.980000
11 | 307.643005 1.020000
12 | 316.276001 1.060000
13 | 323.708008 1.120000
14 | 333.279999 1.180000
15 | 341.542999 1.260000
16 | 351.217987 1.330000
17 | 362.514984 1.390000
18 | 372.312012 1.430000
19 | 385.031006 1.440000
20 | 396.102020 1.480000
21 | 409.175018 1.540000
22 | 424.589020 1.650000
23 | 438.092010 1.800000
24 | 455.808990 1.990000
25 | 471.406982 2.220000
26 | 490.040009 2.490000
27 | 512.314026 2.750000
28 | 532.102966 2.980000
29 | 558.468018 3.180000
30 | 582.066040 3.340000
31 | 610.739014 3.480000
32 | 700.452026 3.840000
33 | 815.658020 4.230000
34 | 826.533020 4.270000
35 | 849.178040 4.310000
36 | 860.971985 4.330000
37 | 885.570984 4.380000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cr.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cr
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  Cr_llnl_cxro + Cr_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 300.194000 2.670000
11 | 307.643005 2.760000
12 | 316.276001 2.850000
13 | 323.708008 2.950000
14 | 333.279999 3.040000
15 | 341.542999 3.120000
16 | 351.217987 3.180000
17 | 362.514984 3.240000
18 | 372.312012 3.310000
19 | 385.031006 3.400000
20 | 396.102020 3.540000
21 | 409.175018 3.710000
22 | 424.589020 3.890000
23 | 438.092010 4.060000
24 | 455.808990 4.220000
25 | 471.406982 4.360000
26 | 490.040009 4.440000
27 | 512.314026 4.460000
28 | 532.102966 4.450000
29 | 558.468018 4.410000
30 | 582.066040 4.380000
31 | 610.739014 4.360000
32 | 700.452026 4.370000
33 | 815.658020 4.340000
34 | 826.533020 4.330000
35 | 849.178040 4.320000
36 | 860.971985 4.320000
37 | 885.570984 4.310000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CsI.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for CsI
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  CsI_llnl_cxro + CsI_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 304.993988 1.967310
11 | 309.950012 1.956510
12 | 314.989990 1.946580
13 | 319.947998 1.937410
14 | 324.980011 1.928930
15 | 329.997009 1.921060
16 | 334.990997 1.913730
17 | 339.951019 1.906900
18 | 344.963989 1.900510
19 | 350.028015 1.894530
20 | 354.937988 1.888910
21 | 359.988007 1.883630
22 | 364.968994 1.878660
23 | 369.979004 1.873970
24 | 375.014984 1.869540
25 | 379.957001 1.865350
26 | 385.031006 1.861380
27 | 389.997009 1.857620
28 | 394.967010 1.854040
29 | 399.935028 1.850640
30 | 409.987030 1.844330
31 | 419.985992 1.838590
32 | 430.037994 1.833360
33 | 439.957001 1.828570
34 | 450.018036 1.824170
35 | 460.037018 1.820120
36 | 469.977020 1.816370
37 | 479.985016 1.812910
38 | 490.040009 1.809700
39 | 499.919006 1.806720
40 | 509.996002 1.803930
41 | 520.049988 1.801340
42 | 530.056030 1.798910
43 | 539.983032 1.796640
44 | 550.044006 1.794510
45 | 559.981995 1.792500
46 | 570.023010 1.790620
47 | 579.888000 1.788840
48 | 590.100037 1.787170
49 | 600.097046 1.785590
50 | 619.900024 1.782680
51 | 640.062012 1.780060
52 | 659.819031 1.777700
53 | 680.088013 1.775570
54 | 700.056030 1.773630
55 | 719.976990 1.771860
56 | 740.179016 1.770250
57 | 760.147034 1.768770
58 | 779.747986 1.767410
59 | 799.871033 1.766150
60 | 819.974060 1.765000
61 | 839.973083 1.763920
62 | 859.778015 1.762930
63 | 879.915039 1.762010
64 | 899.709961 1.761150
65 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CsI.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for CsI
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  CsI_llnl_cxro + CsI_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 304.993988 0.000000
11 | 309.950012 0.000000
12 | 314.989990 0.000000
13 | 319.947998 0.000000
14 | 324.980011 0.000000
15 | 329.997009 0.000000
16 | 334.990997 0.000000
17 | 339.951019 0.000000
18 | 344.963989 0.000000
19 | 350.028015 0.000000
20 | 354.937988 0.000000
21 | 359.988007 0.000000
22 | 364.968994 0.000000
23 | 369.979004 0.000000
24 | 375.014984 0.000000
25 | 379.957001 0.000000
26 | 385.031006 0.000000
27 | 389.997009 0.000000
28 | 394.967010 0.000000
29 | 399.935028 0.000000
30 | 409.987030 0.000000
31 | 419.985992 0.000000
32 | 430.037994 0.000000
33 | 439.957001 0.000000
34 | 450.018036 0.000000
35 | 460.037018 0.000000
36 | 469.977020 0.000000
37 | 479.985016 0.000000
38 | 490.040009 0.000000
39 | 499.919006 0.000000
40 | 509.996002 0.000000
41 | 520.049988 0.000000
42 | 530.056030 0.000000
43 | 539.983032 0.000000
44 | 550.044006 0.000000
45 | 559.981995 0.000000
46 | 570.023010 0.000000
47 | 579.888000 0.000000
48 | 590.100037 0.000000
49 | 600.097046 0.000000
50 | 619.900024 0.000000
51 | 640.062012 0.000000
52 | 659.819031 0.000000
53 | 680.088013 0.000000
54 | 700.056030 0.000000
55 | 719.976990 0.000000
56 | 740.179016 0.000000
57 | 760.147034 0.000000
58 | 779.747986 0.000000
59 | 799.871033 0.000000
60 | 819.974060 0.000000
61 | 839.973083 0.000000
62 | 859.778015 0.000000
63 | 879.915039 0.000000
64 | 899.709961 0.000000
65 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CsI_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic CsI
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 304.993988 1.967310
12 | 309.950012 1.956510
13 | 314.989990 1.946580
14 | 319.947998 1.937410
15 | 324.980011 1.928930
16 | 329.997009 1.921060
17 | 334.990997 1.913730
18 | 339.951019 1.906900
19 | 344.963989 1.900510
20 | 350.028015 1.894530
21 | 354.937988 1.888910
22 | 359.988007 1.883630
23 | 364.968994 1.878660
24 | 369.979004 1.873970
25 | 375.014984 1.869540
26 | 379.957001 1.865350
27 | 385.031006 1.861380
28 | 389.997009 1.857620
29 | 394.967010 1.854040
30 | 399.935028 1.850640
31 | 409.987030 1.844330
32 | 419.985992 1.838590
33 | 430.037994 1.833360
34 | 439.957001 1.828570
35 | 450.018036 1.824170
36 | 460.037018 1.820120
37 | 469.977020 1.816370
38 | 479.985016 1.812910
39 | 490.040009 1.809700
40 | 499.919006 1.806720
41 | 509.996002 1.803930
42 | 520.049988 1.801340
43 | 530.056030 1.798910
44 | 539.983032 1.796640
45 | 550.044006 1.794510
46 | 559.981995 1.792500
47 | 570.023010 1.790620
48 | 579.888000 1.788840
49 | 590.100037 1.787170
50 | 600.097046 1.785590
51 | 619.900024 1.782680
52 | 640.062012 1.780060
53 | 659.819031 1.777700
54 | 680.088013 1.775570
55 | 700.056030 1.773630
56 | 719.976990 1.771860
57 | 740.179016 1.770250
58 | 760.147034 1.768770
59 | 779.747986 1.767410
60 | 799.871033 1.766150
61 | 819.974060 1.765000
62 | 839.973083 1.763920
63 | 859.778015 1.762930
64 | 879.915039 1.762010
65 | 899.709961 1.761150
66 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CsI_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic CsI
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 304.993988 0.000000
12 | 309.950012 0.000000
13 | 314.989990 0.000000
14 | 319.947998 0.000000
15 | 324.980011 0.000000
16 | 329.997009 0.000000
17 | 334.990997 0.000000
18 | 339.951019 0.000000
19 | 344.963989 0.000000
20 | 350.028015 0.000000
21 | 354.937988 0.000000
22 | 359.988007 0.000000
23 | 364.968994 0.000000
24 | 369.979004 0.000000
25 | 375.014984 0.000000
26 | 379.957001 0.000000
27 | 385.031006 0.000000
28 | 389.997009 0.000000
29 | 394.967010 0.000000
30 | 399.935028 0.000000
31 | 409.987030 0.000000
32 | 419.985992 0.000000
33 | 430.037994 0.000000
34 | 439.957001 0.000000
35 | 450.018036 0.000000
36 | 460.037018 0.000000
37 | 469.977020 0.000000
38 | 479.985016 0.000000
39 | 490.040009 0.000000
40 | 499.919006 0.000000
41 | 509.996002 0.000000
42 | 520.049988 0.000000
43 | 530.056030 0.000000
44 | 539.983032 0.000000
45 | 550.044006 0.000000
46 | 559.981995 0.000000
47 | 570.023010 0.000000
48 | 579.888000 0.000000
49 | 590.100037 0.000000
50 | 600.097046 0.000000
51 | 619.900024 0.000000
52 | 640.062012 0.000000
53 | 659.819031 0.000000
54 | 680.088013 0.000000
55 | 700.056030 0.000000
56 | 719.976990 0.000000
57 | 740.179016 0.000000
58 | 760.147034 0.000000
59 | 779.747986 0.000000
60 | 799.871033 0.000000
61 | 819.974060 0.000000
62 | 839.973083 0.000000
63 | 859.778015 0.000000
64 | 879.915039 0.000000
65 | 899.709961 0.000000
66 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu.eta.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 1.400313
 2 | 302.400421 1.380000
 3 | 306.133759 1.358438
 4 | 309.960449 1.340000
 5 | 313.884003 1.329063
 6 | 317.908142 1.325000
 7 | 322.036835 1.332500
 8 | 326.274139 1.340000
 9 | 330.624481 1.334375
10 | 335.092377 1.325000
11 | 339.682678 1.317812
12 | 344.400482 1.310000
13 | 349.251221 1.300313
14 | 354.240509 1.290000
15 | 359.374420 1.281563
16 | 364.659332 1.270000
17 | 370.102020 1.249062
18 | 375.709625 1.225000
19 | 381.489777 1.200000
20 | 387.450562 1.180000
21 | 393.600555 1.174375
22 | 399.948975 1.175000
23 | 406.505493 1.177500
24 | 413.280579 1.180000
25 | 420.285339 1.178125
26 | 427.531647 1.175000
27 | 435.032196 1.172812
28 | 442.800629 1.170000
29 | 450.851562 1.165312
30 | 459.200653 1.160000
31 | 467.864838 1.155312
32 | 476.862213 1.150000
33 | 486.212463 1.142812
34 | 495.936707 1.135000
35 | 506.057861 1.131562
36 | 516.600769 1.120000
37 | 527.592224 1.092437
38 | 539.061646 1.040000
39 | 551.040771 0.950375
40 | 563.564453 0.826000
41 | 576.670593 0.645875
42 | 590.400818 0.468000
43 | 604.800842 0.351250
44 | 619.920898 0.272000
45 | 635.816284 0.230813
46 | 652.548279 0.214000
47 | 670.184753 0.209250
48 | 688.800964 0.213000
49 | 708.481018 0.216250
50 | 729.318665 0.223000
51 | 751.419250 0.236500
52 | 774.901123 0.250000
53 | 799.897949 0.254188
54 | 826.561157 0.260000
55 | 855.063293 0.280000
56 | 885.601257 0.300000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu.k.spd:
--------------------------------------------------------------------------------
 1 | 298.757050 1.662125
 2 | 302.400421 1.687000
 3 | 306.133759 1.703313
 4 | 309.960449 1.720000
 5 | 313.884003 1.744563
 6 | 317.908142 1.770000
 7 | 322.036835 1.791625
 8 | 326.274139 1.810000
 9 | 330.624481 1.822125
10 | 335.092377 1.834000
11 | 339.682678 1.851750
12 | 344.400482 1.872000
13 | 349.251221 1.894250
14 | 354.240509 1.916000
15 | 359.374420 1.931688
16 | 364.659332 1.950000
17 | 370.102020 1.972438
18 | 375.709625 2.015000
19 | 381.489777 2.121562
20 | 387.450562 2.210000
21 | 393.600555 2.177188
22 | 399.948975 2.130000
23 | 406.505493 2.160063
24 | 413.280579 2.210000
25 | 420.285339 2.249938
26 | 427.531647 2.289000
27 | 435.032196 2.326000
28 | 442.800629 2.362000
29 | 450.851562 2.397625
30 | 459.200653 2.433000
31 | 467.864838 2.469187
32 | 476.862213 2.504000
33 | 486.212463 2.535875
34 | 495.936707 2.564000
35 | 506.057861 2.589625
36 | 516.600769 2.605000
37 | 527.592224 2.595562
38 | 539.061646 2.583000
39 | 551.040771 2.576500
40 | 563.564453 2.599000
41 | 576.670593 2.678062
42 | 590.400818 2.809000
43 | 604.800842 3.010750
44 | 619.920898 3.240000
45 | 635.816284 3.458187
46 | 652.548279 3.670000
47 | 670.184753 3.863125
48 | 688.800964 4.050000
49 | 708.481018 4.239563
50 | 729.318665 4.430000
51 | 751.419250 4.619563
52 | 774.901123 4.817000
53 | 799.897949 5.034125
54 | 826.561157 5.260000
55 | 855.063293 5.485625
56 | 885.601257 5.717000
57 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu2O.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cu2O
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Cu2O_llnl_cxro + Cu2O_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 350.028015 2.400000
11 | 399.935028 2.800000
12 | 449.854980 3.060000
13 | 499.919006 3.120000
14 | 549.799988 3.100000
15 | 599.806030 3.020000
16 | 649.789978 2.900000
17 | 700.056030 2.830000
18 | 750.029968 2.770000
19 | 799.871033 2.700000
20 | 849.759949 2.660000
21 | 899.709961 2.630000
22 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu2O.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cu2O
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Cu2O_llnl_cxro + Cu2O_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 350.028015 1.440000
11 | 399.935028 0.990000
12 | 449.854980 0.600000
13 | 499.919006 0.350000
14 | 549.799988 0.190000
15 | 599.806030 0.130000
16 | 649.789978 0.100000
17 | 700.056030 0.083000
18 | 750.029968 0.070000
19 | 799.871033 0.060000
20 | 849.759949 0.053000
21 | 899.709961 0.048000
22 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu2O_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cu2O
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 350.028015 2.400000
12 | 399.935028 2.800000
13 | 449.854980 3.060000
14 | 499.919006 3.120000
15 | 549.799988 3.100000
16 | 599.806030 3.020000
17 | 649.789978 2.900000
18 | 700.056030 2.830000
19 | 750.029968 2.770000
20 | 799.871033 2.700000
21 | 849.759949 2.660000
22 | 899.709961 2.630000
23 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu2O_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cu2O
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 350.028015 1.440000
12 | 399.935028 0.990000
13 | 449.854980 0.600000
14 | 499.919006 0.350000
15 | 549.799988 0.190000
16 | 599.806030 0.130000
17 | 649.789978 0.100000
18 | 700.056030 0.083000
19 | 750.029968 0.070000
20 | 799.871033 0.060000
21 | 849.759949 0.053000
22 | 899.709961 0.048000
23 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CuO.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for CuO
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  CuO_llnl_cxro + CuO_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 350.028015 2.240000
11 | 399.935028 2.340000
12 | 449.854980 2.450000
13 | 499.919006 2.540000
14 | 549.799988 2.580000
15 | 599.806030 2.650000
16 | 649.789978 2.720000
17 | 700.056030 2.880000
18 | 750.029968 2.970000
19 | 799.871033 2.940000
20 | 849.759949 2.810000
21 | 899.709961 2.740000
22 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CuO.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for CuO
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;  
 6 | # ;  CuO_llnl_cxro + CuO_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 350.028015 1.030000
11 | 399.935028 0.870000
12 | 449.854980 0.770000
13 | 499.919006 0.680000
14 | 549.799988 0.590000
15 | 599.806030 0.500000
16 | 649.789978 0.400000
17 | 700.056030 0.310000
18 | 750.029968 0.220000
19 | 799.871033 0.110000
20 | 849.759949 0.040000
21 | 899.709961 0.030000
22 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CuO_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline CuO
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 350.028015 2.240000
12 | 399.935028 2.340000
13 | 449.854980 2.450000
14 | 499.919006 2.540000
15 | 549.799988 2.580000
16 | 599.806030 2.650000
17 | 649.789978 2.720000
18 | 700.056030 2.880000
19 | 750.029968 2.970000
20 | 799.871033 2.940000
21 | 849.759949 2.810000
22 | 899.709961 2.740000
23 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/CuO_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline CuO
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 350.028015 1.030000
12 | 399.935028 0.870000
13 | 449.854980 0.770000
14 | 499.919006 0.680000
15 | 549.799988 0.590000
16 | 599.806030 0.500000
17 | 649.789978 0.400000
18 | 700.056030 0.310000
19 | 750.029968 0.220000
20 | 799.871033 0.110000
21 | 849.759949 0.040000
22 | 899.709961 0.030000
23 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cu
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.340000
12 | 326.263000 1.340000
13 | 344.389008 1.310000
14 | 364.647003 1.270000
15 | 387.437988 1.180000
16 | 413.266998 1.180000
17 | 442.785980 1.170000
18 | 476.846008 1.150000
19 | 516.583008 1.120000
20 | 539.044006 1.040000
21 | 563.545044 0.826000
22 | 590.381042 0.468000
23 | 619.900024 0.272000
24 | 652.526001 0.214000
25 | 670.162048 0.215000
26 | 688.778015 0.213000
27 | 708.456970 0.214000
28 | 729.294006 0.223000
29 | 826.533020 0.260000
30 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Cu_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Cu
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.720000
12 | 326.263000 1.810000
13 | 344.389008 1.870000
14 | 364.647003 1.950000
15 | 387.437988 2.210000
16 | 413.266998 2.210000
17 | 442.785980 2.360000
18 | 476.846008 2.500000
19 | 516.583008 2.600000
20 | 539.044006 2.590000
21 | 563.545044 2.600000
22 | 590.381042 2.810000
23 | 619.900024 3.240000
24 | 652.526001 3.670000
25 | 670.162048 3.860000
26 | 688.778015 4.050000
27 | 708.456970 4.240000
28 | 729.294006 4.430000
29 | 826.533020 5.260000
30 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Hg.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Hg
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Hg_llnl_cxro + Hg_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 0.542000
11 | 326.263000 0.589000
12 | 344.389008 0.644000
13 | 364.647003 0.713000
14 | 387.437988 0.798000
15 | 413.266998 0.898000
16 | 442.785980 1.027000
17 | 476.846008 1.186000
18 | 516.583008 1.384000
19 | 563.545044 1.620000
20 | 619.900024 1.910000
21 | 688.778015 2.284000
22 | 774.875000 2.746000
23 | 885.570984 3.324000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Hg.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Hg
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Hg_llnl_cxro + Hg_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.502000
11 | 326.263000 2.665000
12 | 344.389008 2.860000
13 | 364.647003 3.074000
14 | 387.437988 3.294000
15 | 413.266998 3.538000
16 | 442.785980 3.802000
17 | 476.846008 4.090000
18 | 516.583008 4.407000
19 | 563.545044 4.751000
20 | 619.900024 5.150000
21 | 688.778015 5.582000
22 | 774.875000 6.054000
23 | 885.570984 6.558000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Hg_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Hg
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.542000
12 | 326.263000 0.589000
13 | 344.389008 0.644000
14 | 364.647003 0.713000
15 | 387.437988 0.798000
16 | 413.266998 0.898000
17 | 442.785980 1.027000
18 | 476.846008 1.186000
19 | 516.583008 1.384000
20 | 563.545044 1.620000
21 | 619.900024 1.910000
22 | 688.778015 2.284000
23 | 774.875000 2.746000
24 | 885.570984 3.324000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Hg_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Hg
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.502000
12 | 326.263000 2.665000
13 | 344.389008 2.860000
14 | 364.647003 3.074000
15 | 387.437988 3.294000
16 | 413.266998 3.538000
17 | 442.785980 3.802000
18 | 476.846008 4.090000
19 | 516.583008 4.407000
20 | 563.545044 4.751000
21 | 619.900024 5.150000
22 | 688.778015 5.582000
23 | 774.875000 6.054000
24 | 885.570984 6.558000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ir.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ir
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Ir_llnl_cxro + Ir_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 1.620000
11 | 309.950012 1.640000
12 | 317.897003 1.640000
13 | 326.263000 1.610000
14 | 335.081024 1.570000
15 | 344.389008 1.520000
16 | 354.229004 1.500000
17 | 364.647003 1.530000
18 | 375.696991 1.570000
19 | 387.437988 1.620000
20 | 399.935028 1.680000
21 | 413.266998 1.730000
22 | 427.516998 1.770000
23 | 442.785980 1.810000
24 | 459.185028 1.850000
25 | 476.846008 1.910000
26 | 495.920013 1.980000
27 | 516.583008 2.070000
28 | 539.044006 2.180000
29 | 563.545044 2.290000
30 | 590.381042 2.400000
31 | 619.900024 2.500000
32 | 652.526001 2.570000
33 | 688.778015 2.640000
34 | 729.294006 2.690000
35 | 774.875000 2.680000
36 | 826.533020 2.650000
37 | 885.570984 2.720000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ir.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ir
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Ir_llnl_cxro + Ir_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 2.700000
11 | 309.950012 2.680000
12 | 317.897003 2.670000
13 | 326.263000 2.690000
14 | 335.081024 2.720000
15 | 344.389008 2.810000
16 | 354.229004 2.930000
17 | 364.647003 3.050000
18 | 375.696991 3.150000
19 | 387.437988 3.260000
20 | 399.935028 3.350000
21 | 413.266998 3.430000
22 | 427.516998 3.510000
23 | 442.785980 3.610000
24 | 459.185028 3.730000
25 | 476.846008 3.860000
26 | 495.920013 4.000000
27 | 516.583008 4.140000
28 | 539.044006 4.260000
29 | 563.545044 4.380000
30 | 590.381042 4.480000
31 | 619.900024 4.570000
32 | 652.526001 4.680000
33 | 688.778015 4.810000
34 | 729.294006 4.920000
35 | 774.875000 5.080000
36 | 826.533020 5.390000
37 | 885.570984 5.740000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ir_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ir
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 1.620000
12 | 309.950012 1.640000
13 | 317.897003 1.640000
14 | 326.263000 1.610000
15 | 335.081024 1.570000
16 | 344.389008 1.520000
17 | 354.229004 1.500000
18 | 364.647003 1.530000
19 | 375.696991 1.570000
20 | 387.437988 1.620000
21 | 399.935028 1.680000
22 | 413.266998 1.730000
23 | 427.516998 1.770000
24 | 442.785980 1.810000
25 | 459.185028 1.850000
26 | 476.846008 1.910000
27 | 495.920013 1.980000
28 | 516.583008 2.070000
29 | 539.044006 2.180000
30 | 563.545044 2.290000
31 | 590.381042 2.400000
32 | 619.900024 2.500000
33 | 652.526001 2.570000
34 | 688.778015 2.640000
35 | 729.294006 2.690000
36 | 774.875000 2.680000
37 | 826.533020 2.650000
38 | 885.570984 2.720000
39 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ir_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ir
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 2.700000
12 | 309.950012 2.680000
13 | 317.897003 2.670000
14 | 326.263000 2.690000
15 | 335.081024 2.720000
16 | 344.389008 2.810000
17 | 354.229004 2.930000
18 | 364.647003 3.050000
19 | 375.696991 3.150000
20 | 387.437988 3.260000
21 | 399.935028 3.350000
22 | 413.266998 3.430000
23 | 427.516998 3.510000
24 | 442.785980 3.610000
25 | 459.185028 3.730000
26 | 476.846008 3.860000
27 | 495.920013 4.000000
28 | 516.583008 4.140000
29 | 539.044006 4.260000
30 | 563.545044 4.380000
31 | 590.381042 4.480000
32 | 619.900024 4.570000
33 | 652.526001 4.680000
34 | 688.778015 4.810000
35 | 729.294006 4.920000
36 | 774.875000 5.080000
37 | 826.533020 5.390000
38 | 885.570984 5.740000
39 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/K.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline K
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 304.993988 0.380000
12 | 309.950012 0.340000
13 | 312.291992 0.287000
14 | 334.178009 0.089000
15 | 364.647003 0.052000
16 | 405.162994 0.041000
17 | 420.270996 0.041000
18 | 439.645020 0.043000
19 | 469.621002 0.043000
20 | 506.041016 0.046000
21 | 546.166992 0.049000
22 | 598.937012 0.053000
23 | 662.995056 0.050000
24 | 751.393982 0.044000
25 | 860.971985 0.040000
26 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/K.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline K
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 304.993988 0.070000
12 | 309.950012 0.080000
13 | 312.291992 0.091000
14 | 334.178009 0.288000
15 | 364.647003 0.549000
16 | 405.162994 0.799000
17 | 420.270996 0.898000
18 | 439.645020 1.020000
19 | 469.621002 1.140000
20 | 506.041016 1.280000
21 | 546.166992 1.430000
22 | 598.937012 1.620000
23 | 662.995056 1.840000
24 | 751.393982 2.190000
25 | 860.971985 2.560000
26 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KBr.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic KBr
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 1.638860
12 | 320.031006 1.630710
13 | 329.997009 1.623570
14 | 339.951019 1.617270
15 | 350.028015 1.611670
16 | 359.988007 1.606680
17 | 369.979004 1.602200
18 | 379.957001 1.598160
19 | 389.997009 1.594500
20 | 399.935028 1.591170
21 | 419.985992 1.585370
22 | 439.957001 1.580480
23 | 460.037018 1.576320
24 | 479.985016 1.572740
25 | 499.919006 1.569640
26 | 520.049988 1.566940
27 | 539.983032 1.564560
28 | 559.981995 1.562470
29 | 579.888000 1.560600
30 | 600.097046 1.558940
31 | 619.900024 1.557440
32 | 640.062012 1.556100
33 | 659.819031 1.554880
34 | 680.088013 1.553780
35 | 700.056030 1.552780
36 | 719.976990 1.551860
37 | 740.179016 1.551020
38 | 760.147034 1.550250
39 | 779.747986 1.549540
40 | 799.871033 1.548880
41 | 819.974060 1.548280
42 | 839.973083 1.547720
43 | 859.778015 1.547200
44 | 879.915039 1.546710
45 | 899.709961 1.546260
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KBr.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic KBr
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 0.000000
12 | 320.031006 0.000000
13 | 329.997009 0.000000
14 | 339.951019 0.000000
15 | 350.028015 0.000000
16 | 359.988007 0.000000
17 | 369.979004 0.000000
18 | 379.957001 0.000000
19 | 389.997009 0.000000
20 | 399.935028 0.000000
21 | 419.985992 0.000000
22 | 439.957001 0.000000
23 | 460.037018 0.000000
24 | 479.985016 0.000000
25 | 499.919006 0.000000
26 | 520.049988 0.000000
27 | 539.983032 0.000000
28 | 559.981995 0.000000
29 | 579.888000 0.000000
30 | 600.097046 0.000000
31 | 619.900024 0.000000
32 | 640.062012 0.000000
33 | 659.819031 0.000000
34 | 680.088013 0.000000
35 | 700.056030 0.000000
36 | 719.976990 0.000000
37 | 740.179016 0.000000
38 | 760.147034 0.000000
39 | 779.747986 0.000000
40 | 799.871033 0.000000
41 | 819.974060 0.000000
42 | 839.973083 0.000000
43 | 859.778015 0.000000
44 | 879.915039 0.000000
45 | 899.709961 0.000000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KBr_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic KBr
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 1.638860
12 | 320.031006 1.630710
13 | 329.997009 1.623570
14 | 339.951019 1.617270
15 | 350.028015 1.611670
16 | 359.988007 1.606680
17 | 369.979004 1.602200
18 | 379.957001 1.598160
19 | 389.997009 1.594500
20 | 399.935028 1.591170
21 | 419.985992 1.585370
22 | 439.957001 1.580480
23 | 460.037018 1.576320
24 | 479.985016 1.572740
25 | 499.919006 1.569640
26 | 520.049988 1.566940
27 | 539.983032 1.564560
28 | 559.981995 1.562470
29 | 579.888000 1.560600
30 | 600.097046 1.558940
31 | 619.900024 1.557440
32 | 640.062012 1.556100
33 | 659.819031 1.554880
34 | 680.088013 1.553780
35 | 700.056030 1.552780
36 | 719.976990 1.551860
37 | 740.179016 1.551020
38 | 760.147034 1.550250
39 | 779.747986 1.549540
40 | 799.871033 1.548880
41 | 819.974060 1.548280
42 | 839.973083 1.547720
43 | 859.778015 1.547200
44 | 879.915039 1.546710
45 | 899.709961 1.546260
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KBr_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic KBr
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 0.000000
12 | 320.031006 0.000000
13 | 329.997009 0.000000
14 | 339.951019 0.000000
15 | 350.028015 0.000000
16 | 359.988007 0.000000
17 | 369.979004 0.000000
18 | 379.957001 0.000000
19 | 389.997009 0.000000
20 | 399.935028 0.000000
21 | 419.985992 0.000000
22 | 439.957001 0.000000
23 | 460.037018 0.000000
24 | 479.985016 0.000000
25 | 499.919006 0.000000
26 | 520.049988 0.000000
27 | 539.983032 0.000000
28 | 559.981995 0.000000
29 | 579.888000 0.000000
30 | 600.097046 0.000000
31 | 619.900024 0.000000
32 | 640.062012 0.000000
33 | 659.819031 0.000000
34 | 680.088013 0.000000
35 | 700.056030 0.000000
36 | 719.976990 0.000000
37 | 740.179016 0.000000
38 | 760.147034 0.000000
39 | 779.747986 0.000000
40 | 799.871033 0.000000
41 | 819.974060 0.000000
42 | 839.973083 0.000000
43 | 859.778015 0.000000
44 | 879.915039 0.000000
45 | 899.709961 0.000000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KCl.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for KCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 1.540050
12 | 320.031006 1.535180
13 | 329.997009 1.530870
14 | 339.951019 1.527030
15 | 350.028015 1.523580
16 | 359.988007 1.520490
17 | 369.979004 1.517690
18 | 379.957001 1.515150
19 | 389.997009 1.512830
20 | 399.935028 1.510720
21 | 419.985992 1.507010
22 | 439.957001 1.503860
23 | 460.037018 1.501150
24 | 479.985016 1.498820
25 | 499.919006 1.496790
26 | 520.049988 1.495010
27 | 539.983032 1.493440
28 | 559.981995 1.492050
29 | 579.888000 1.490810
30 | 600.097046 1.489690
31 | 619.900024 1.488690
32 | 640.062012 1.487790
33 | 659.819031 1.486970
34 | 680.088013 1.486230
35 | 700.056030 1.485550
36 | 719.976990 1.484930
37 | 740.179016 1.484360
38 | 760.147034 1.483840
39 | 779.747986 1.483360
40 | 799.871033 1.482910
41 | 819.974060 1.482500
42 | 839.973083 1.482120
43 | 859.778015 1.481760
44 | 879.915039 1.481430
45 | 899.709961 1.481110
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KCl.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for KCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 0.000000
12 | 320.031006 0.000000
13 | 329.997009 0.000000
14 | 339.951019 0.000000
15 | 350.028015 0.000000
16 | 359.988007 0.000000
17 | 369.979004 0.000000
18 | 379.957001 0.000000
19 | 389.997009 0.000000
20 | 399.935028 0.000000
21 | 419.985992 0.000000
22 | 439.957001 0.000000
23 | 460.037018 0.000000
24 | 479.985016 0.000000
25 | 499.919006 0.000000
26 | 520.049988 0.000000
27 | 539.983032 0.000000
28 | 559.981995 0.000000
29 | 579.888000 0.000000
30 | 600.097046 0.000000
31 | 619.900024 0.000000
32 | 640.062012 0.000000
33 | 659.819031 0.000000
34 | 680.088013 0.000000
35 | 700.056030 0.000000
36 | 719.976990 0.000000
37 | 740.179016 0.000000
38 | 760.147034 0.000000
39 | 779.747986 0.000000
40 | 799.871033 0.000000
41 | 819.974060 0.000000
42 | 839.973083 0.000000
43 | 859.778015 0.000000
44 | 879.915039 0.000000
45 | 899.709961 0.000000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KCl_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for KCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 1.540050
12 | 320.031006 1.535180
13 | 329.997009 1.530870
14 | 339.951019 1.527030
15 | 350.028015 1.523580
16 | 359.988007 1.520490
17 | 369.979004 1.517690
18 | 379.957001 1.515150
19 | 389.997009 1.512830
20 | 399.935028 1.510720
21 | 419.985992 1.507010
22 | 439.957001 1.503860
23 | 460.037018 1.501150
24 | 479.985016 1.498820
25 | 499.919006 1.496790
26 | 520.049988 1.495010
27 | 539.983032 1.493440
28 | 559.981995 1.492050
29 | 579.888000 1.490810
30 | 600.097046 1.489690
31 | 619.900024 1.488690
32 | 640.062012 1.487790
33 | 659.819031 1.486970
34 | 680.088013 1.486230
35 | 700.056030 1.485550
36 | 719.976990 1.484930
37 | 740.179016 1.484360
38 | 760.147034 1.483840
39 | 779.747986 1.483360
40 | 799.871033 1.482910
41 | 819.974060 1.482500
42 | 839.973083 1.482120
43 | 859.778015 1.481760
44 | 879.915039 1.481430
45 | 899.709961 1.481110
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/KCl_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for KCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 310.027008 0.000000
12 | 320.031006 0.000000
13 | 329.997009 0.000000
14 | 339.951019 0.000000
15 | 350.028015 0.000000
16 | 359.988007 0.000000
17 | 369.979004 0.000000
18 | 379.957001 0.000000
19 | 389.997009 0.000000
20 | 399.935028 0.000000
21 | 419.985992 0.000000
22 | 439.957001 0.000000
23 | 460.037018 0.000000
24 | 479.985016 0.000000
25 | 499.919006 0.000000
26 | 520.049988 0.000000
27 | 539.983032 0.000000
28 | 559.981995 0.000000
29 | 579.888000 0.000000
30 | 600.097046 0.000000
31 | 619.900024 0.000000
32 | 640.062012 0.000000
33 | 659.819031 0.000000
34 | 680.088013 0.000000
35 | 700.056030 0.000000
36 | 719.976990 0.000000
37 | 740.179016 0.000000
38 | 760.147034 0.000000
39 | 779.747986 0.000000
40 | 799.871033 0.000000
41 | 819.974060 0.000000
42 | 839.973083 0.000000
43 | 859.778015 0.000000
44 | 879.915039 0.000000
45 | 899.709961 0.000000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/K_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline K
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 304.993988 0.380000
12 | 309.950012 0.340000
13 | 312.291992 0.287000
14 | 334.178009 0.089000
15 | 364.647003 0.052000
16 | 405.162994 0.041000
17 | 420.270996 0.041000
18 | 439.645020 0.043000
19 | 469.621002 0.043000
20 | 506.041016 0.046000
21 | 546.166992 0.049000
22 | 598.937012 0.053000
23 | 662.995056 0.050000
24 | 751.393982 0.044000
25 | 860.971985 0.040000
26 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/K_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline K
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 304.993988 0.070000
12 | 309.950012 0.080000
13 | 312.291992 0.091000
14 | 334.178009 0.288000
15 | 364.647003 0.549000
16 | 405.162994 0.799000
17 | 420.270996 0.898000
18 | 439.645020 1.020000
19 | 469.621002 1.140000
20 | 506.041016 1.280000
21 | 546.166992 1.430000
22 | 598.937012 1.620000
23 | 662.995056 1.840000
24 | 751.393982 2.190000
25 | 860.971985 2.560000
26 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Li.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Li
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 306.123016 0.346000
12 | 330.613007 0.345000
13 | 359.362030 0.334000
14 | 393.587006 0.304000
15 | 435.018036 0.247000
16 | 486.196014 0.217000
17 | 551.022034 0.206000
18 | 635.795044 0.221000
19 | 751.393982 0.265000
20 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Li.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Li
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 306.123016 1.210000
12 | 330.613007 1.320000
13 | 359.362030 1.450000
14 | 393.587006 1.600000
15 | 435.018036 1.820000
16 | 486.196014 2.110000
17 | 551.022034 2.480000
18 | 635.795044 2.940000
19 | 751.393982 3.550000
20 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Li_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Li
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 306.123016 0.346000
12 | 330.613007 0.345000
13 | 359.362030 0.334000
14 | 393.587006 0.304000
15 | 435.018036 0.247000
16 | 486.196014 0.217000
17 | 551.022034 0.206000
18 | 635.795044 0.221000
19 | 751.393982 0.265000
20 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Li_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Li
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 306.123016 1.210000
12 | 330.613007 1.320000
13 | 359.362030 1.450000
14 | 393.587006 1.600000
15 | 435.018036 1.820000
16 | 486.196014 2.110000
17 | 551.022034 2.480000
18 | 635.795044 2.940000
19 | 751.393982 3.550000
20 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/MgO.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for MgO
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  MgO_llnl_cxro + MgO_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 1.798000
11 | 330.613007 1.785000
12 | 351.118988 1.776800
13 | 355.549011 1.775500
14 | 360.932007 1.773200
15 | 361.141998 1.773180
16 | 364.968994 1.771860
17 | 382.065002 1.766800
18 | 386.712006 1.765500
19 | 393.337982 1.763800
20 | 404.634003 1.761040
21 | 430.935028 1.755700
22 | 435.781982 1.754710
23 | 457.829010 1.751200
24 | 477.949036 1.748300
25 | 486.004974 1.747110
26 | 487.918030 1.746900
27 | 499.919006 1.745400
28 | 502.350006 1.745300
29 | 508.531982 1.744460
30 | 514.440002 1.743900
31 | 546.166992 1.740770
32 | 589.258972 1.737370
33 | 632.874023 1.734600
34 | 643.718018 1.734000
35 | 656.325989 1.733350
36 | 667.635986 1.732770
37 | 690.695984 1.731910
38 | 706.439026 1.731010
39 | 767.677979 1.728720
40 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/MgO.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for MgO
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  MgO_llnl_cxro + MgO_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 0.000000
11 | 330.613007 0.000000
12 | 351.118988 0.000000
13 | 355.549011 0.000001
14 | 360.932007 0.000001
15 | 361.141998 0.000001
16 | 364.968994 0.000000
17 | 382.065002 0.000000
18 | 386.712006 0.000000
19 | 393.337982 0.000000
20 | 404.634003 0.000000
21 | 430.935028 0.000000
22 | 435.781982 0.000000
23 | 457.829010 0.000000
24 | 477.949036 0.000000
25 | 486.004974 0.000000
26 | 487.918030 0.000000
27 | 499.919006 0.000000
28 | 502.350006 0.000000
29 | 508.531982 0.000000
30 | 514.440002 0.000000
31 | 546.166992 0.000000
32 | 589.258972 0.000000
33 | 632.874023 0.000000
34 | 643.718018 0.000000
35 | 656.325989 0.000000
36 | 667.635986 0.000000
37 | 690.695984 0.000000
38 | 706.439026 0.000000
39 | 767.677979 0.000000
40 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/MgO_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for MgO
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.798000
12 | 330.613007 1.785000
13 | 351.118988 1.776800
14 | 355.549011 1.775500
15 | 360.932007 1.773200
16 | 361.141998 1.773180
17 | 364.968994 1.771860
18 | 382.065002 1.766800
19 | 386.712006 1.765500
20 | 393.337982 1.763800
21 | 404.634003 1.761040
22 | 430.935028 1.755700
23 | 435.781982 1.754710
24 | 457.829010 1.751200
25 | 477.949036 1.748300
26 | 486.004974 1.747110
27 | 487.918030 1.746900
28 | 499.919006 1.745400
29 | 502.350006 1.745300
30 | 508.531982 1.744460
31 | 514.440002 1.743900
32 | 546.166992 1.740770
33 | 589.258972 1.737370
34 | 632.874023 1.734600
35 | 643.718018 1.734000
36 | 656.325989 1.733350
37 | 667.635986 1.732770
38 | 690.695984 1.731910
39 | 706.439026 1.731010
40 | 767.677979 1.728720
41 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/MgO_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for MgO
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.000000
12 | 330.613007 0.000000
13 | 351.118988 0.000000
14 | 355.549011 0.000001
15 | 360.932007 0.000001
16 | 361.141998 0.000001
17 | 364.968994 0.000000
18 | 382.065002 0.000000
19 | 386.712006 0.000000
20 | 393.337982 0.000000
21 | 404.634003 0.000000
22 | 430.935028 0.000000
23 | 435.781982 0.000000
24 | 457.829010 0.000000
25 | 477.949036 0.000000
26 | 486.004974 0.000000
27 | 487.918030 0.000000
28 | 499.919006 0.000000
29 | 502.350006 0.000000
30 | 508.531982 0.000000
31 | 514.440002 0.000000
32 | 546.166992 0.000000
33 | 589.258972 0.000000
34 | 632.874023 0.000000
35 | 643.718018 0.000000
36 | 656.325989 0.000000
37 | 667.635986 0.000000
38 | 690.695984 0.000000
39 | 706.439026 0.000000
40 | 767.677979 0.000000
41 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Mo.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for 
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Mo_llnl_cxro + Mo_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 2.910000
11 | 309.950012 3.010000
12 | 317.897003 3.040000
13 | 326.263000 3.040000
14 | 335.081024 3.040000
15 | 344.389008 3.050000
16 | 354.229004 3.060000
17 | 364.647003 3.060000
18 | 375.696991 3.060000
19 | 387.437988 3.050000
20 | 399.935028 3.030000
21 | 413.266998 3.040000
22 | 427.516998 3.050000
23 | 442.785980 3.080000
24 | 459.185028 3.130000
25 | 476.846008 3.220000
26 | 495.920013 3.360000
27 | 516.583008 3.590000
28 | 539.044006 3.790000
29 | 563.545044 3.760000
30 | 590.381042 3.680000
31 | 619.900024 3.680000
32 | 652.526001 3.740000
33 | 688.778015 3.810000
34 | 729.294006 3.840000
35 | 774.875000 3.770000
36 | 826.533020 3.530000
37 | 885.570984 3.150000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Mo.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for 
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Mo_llnl_cxro + Mo_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 3.670000
11 | 309.950012 3.510000
12 | 317.897003 3.400000
13 | 326.263000 3.310000
14 | 335.081024 3.270000
15 | 344.389008 3.240000
16 | 354.229004 3.210000
17 | 364.647003 3.190000
18 | 375.696991 3.180000
19 | 387.437988 3.180000
20 | 399.935028 3.220000
21 | 413.266998 3.270000
22 | 427.516998 3.330000
23 | 442.785980 3.420000
24 | 459.185028 3.510000
25 | 476.846008 3.610000
26 | 495.920013 3.730000
27 | 516.583008 3.780000
28 | 539.044006 3.610000
29 | 563.545044 3.410000
30 | 590.381042 3.450000
31 | 619.900024 3.520000
32 | 652.526001 3.580000
33 | 688.778015 3.580000
34 | 729.294006 3.510000
35 | 774.875000 3.410000
36 | 826.533020 3.300000
37 | 885.570984 3.400000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Mo_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Mo
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 2.910000
12 | 309.950012 3.010000
13 | 317.897003 3.040000
14 | 326.263000 3.040000
15 | 335.081024 3.040000
16 | 344.389008 3.050000
17 | 354.229004 3.060000
18 | 364.647003 3.060000
19 | 375.696991 3.060000
20 | 387.437988 3.050000
21 | 399.935028 3.030000
22 | 413.266998 3.040000
23 | 427.516998 3.050000
24 | 442.785980 3.080000
25 | 459.185028 3.130000
26 | 476.846008 3.220000
27 | 495.920013 3.360000
28 | 516.583008 3.590000
29 | 539.044006 3.790000
30 | 563.545044 3.760000
31 | 590.381042 3.680000
32 | 619.900024 3.680000
33 | 652.526001 3.740000
34 | 688.778015 3.810000
35 | 729.294006 3.840000
36 | 774.875000 3.770000
37 | 826.533020 3.530000
38 | 885.570984 3.150000
39 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Mo_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Mo
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 3.670000
12 | 309.950012 3.510000
13 | 317.897003 3.400000
14 | 326.263000 3.310000
15 | 335.081024 3.270000
16 | 344.389008 3.240000
17 | 354.229004 3.210000
18 | 364.647003 3.190000
19 | 375.696991 3.180000
20 | 387.437988 3.180000
21 | 399.935028 3.220000
22 | 413.266998 3.270000
23 | 427.516998 3.330000
24 | 442.785980 3.420000
25 | 459.185028 3.510000
26 | 476.846008 3.610000
27 | 495.920013 3.730000
28 | 516.583008 3.780000
29 | 539.044006 3.610000
30 | 563.545044 3.410000
31 | 590.381042 3.450000
32 | 619.900024 3.520000
33 | 652.526001 3.580000
34 | 688.778015 3.580000
35 | 729.294006 3.510000
36 | 774.875000 3.410000
37 | 826.533020 3.300000
38 | 885.570984 3.400000
39 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/NaCl.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for NaCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 319.947998 1.595060
12 | 339.951019 1.585900
13 | 359.988007 1.578520
14 | 379.957001 1.572480
15 | 399.935028 1.567460
16 | 419.985992 1.563240
17 | 439.957001 1.559650
18 | 460.037018 1.556570
19 | 479.985016 1.553900
20 | 499.919006 1.551570
21 | 520.049988 1.549530
22 | 539.983032 1.547730
23 | 559.981995 1.546130
24 | 579.888000 1.544710
25 | 600.097046 1.543430
26 | 619.900024 1.542280
27 | 640.062012 1.541240
28 | 659.819031 1.540300
29 | 680.088013 1.539440
30 | 700.056030 1.538650
31 | 719.976990 1.537940
32 | 740.179016 1.537280
33 | 760.147034 1.536670
34 | 779.747986 1.536110
35 | 799.871033 1.535600
36 | 819.974060 1.535120
37 | 839.973083 1.534670
38 | 859.778015 1.534260
39 | 879.915039 1.533870
40 | 899.709961 1.533510
41 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/NaCl.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for NaCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 319.947998 0.000000
12 | 339.951019 0.000000
13 | 359.988007 0.000000
14 | 379.957001 0.000000
15 | 399.935028 0.000000
16 | 419.985992 0.000000
17 | 439.957001 0.000000
18 | 460.037018 0.000000
19 | 479.985016 0.000000
20 | 499.919006 0.000000
21 | 520.049988 0.000000
22 | 539.983032 0.000000
23 | 559.981995 0.000000
24 | 579.888000 0.000000
25 | 600.097046 0.000000
26 | 619.900024 0.000000
27 | 640.062012 0.000000
28 | 659.819031 0.000000
29 | 680.088013 0.000000
30 | 700.056030 0.000000
31 | 719.976990 0.000000
32 | 740.179016 0.000000
33 | 760.147034 0.000000
34 | 779.747986 0.000000
35 | 799.871033 0.000000
36 | 819.974060 0.000000
37 | 839.973083 0.000000
38 | 859.778015 0.000000
39 | 879.915039 0.000000
40 | 899.709961 0.000000
41 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/NaCl_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for NaCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 319.947998 1.595060
12 | 339.951019 1.585900
13 | 359.988007 1.578520
14 | 379.957001 1.572480
15 | 399.935028 1.567460
16 | 419.985992 1.563240
17 | 439.957001 1.559650
18 | 460.037018 1.556570
19 | 479.985016 1.553900
20 | 499.919006 1.551570
21 | 520.049988 1.549530
22 | 539.983032 1.547730
23 | 559.981995 1.546130
24 | 579.888000 1.544710
25 | 600.097046 1.543430
26 | 619.900024 1.542280
27 | 640.062012 1.541240
28 | 659.819031 1.540300
29 | 680.088013 1.539440
30 | 700.056030 1.538650
31 | 719.976990 1.537940
32 | 740.179016 1.537280
33 | 760.147034 1.536670
34 | 779.747986 1.536110
35 | 799.871033 1.535600
36 | 819.974060 1.535120
37 | 839.973083 1.534670
38 | 859.778015 1.534260
39 | 879.915039 1.533870
40 | 899.709961 1.533510
41 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/NaCl_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for NaCl
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 319.947998 0.000000
12 | 339.951019 0.000000
13 | 359.988007 0.000000
14 | 379.957001 0.000000
15 | 399.935028 0.000000
16 | 419.985992 0.000000
17 | 439.957001 0.000000
18 | 460.037018 0.000000
19 | 479.985016 0.000000
20 | 499.919006 0.000000
21 | 520.049988 0.000000
22 | 539.983032 0.000000
23 | 559.981995 0.000000
24 | 579.888000 0.000000
25 | 600.097046 0.000000
26 | 619.900024 0.000000
27 | 640.062012 0.000000
28 | 659.819031 0.000000
29 | 680.088013 0.000000
30 | 700.056030 0.000000
31 | 719.976990 0.000000
32 | 740.179016 0.000000
33 | 760.147034 0.000000
34 | 779.747986 0.000000
35 | 799.871033 0.000000
36 | 819.974060 0.000000
37 | 839.973083 0.000000
38 | 859.778015 0.000000
39 | 879.915039 0.000000
40 | 899.709961 0.000000
41 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Na_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Na
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 312.291992 0.049000
12 | 334.178009 0.055000
13 | 364.647003 0.061000
14 | 387.437988 0.065000
15 | 405.162994 0.069000
16 | 420.270996 0.068000
17 | 439.645020 0.068000
18 | 469.621002 0.066000
19 | 506.041016 0.063000
20 | 546.166992 0.059000
21 | 598.937012 0.053000
22 | 662.995056 0.049000
23 | 751.393982 0.050000
24 | 860.971985 0.053000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Na_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Na
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 312.291992 1.010000
12 | 334.178009 1.130000
13 | 364.647003 1.330000
14 | 387.437988 1.470000
15 | 405.162994 1.540000
16 | 420.270996 1.630000
17 | 439.645020 1.760000
18 | 469.621002 1.880000
19 | 506.041016 2.070000
20 | 546.166992 2.230000
21 | 598.937012 2.480000
22 | 662.995056 2.760000
23 | 751.393982 3.220000
24 | 860.971985 3.720000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Nb.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Nb
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Nb_llnl_cxro + Nb_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.640000
11 | 317.897003 2.620000
12 | 326.263000 2.590000
13 | 335.081024 2.560000
14 | 344.389008 2.520000
15 | 354.229004 2.480000
16 | 364.647003 2.460000
17 | 375.696991 2.440000
18 | 387.437988 2.450000
19 | 399.935028 2.480000
20 | 413.266998 2.510000
21 | 435.018036 2.580000
22 | 450.835999 2.660000
23 | 467.849030 2.740000
24 | 486.196014 2.830000
25 | 506.041016 2.890000
26 | 527.575012 2.920000
27 | 551.022034 2.930000
28 | 576.651001 2.920000
29 | 604.781006 2.890000
30 | 635.795044 2.820000
31 | 670.162048 2.690000
32 | 708.456970 2.540000
33 | 751.393982 2.360000
34 | 799.871033 2.150000
35 | 855.033997 1.950000
36 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Nb.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Nb
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Nb_llnl_cxro + Nb_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.330000
11 | 317.897003 2.290000
12 | 326.263000 2.280000
13 | 335.081024 2.270000
14 | 344.389008 2.290000
15 | 354.229004 2.330000
16 | 364.647003 2.380000
17 | 375.696991 2.450000
18 | 387.437988 2.530000
19 | 399.935028 2.600000
20 | 413.266998 2.680000
21 | 435.018036 2.800000
22 | 450.835999 2.860000
23 | 467.849030 2.900000
24 | 486.196014 2.920000
25 | 506.041016 2.900000
26 | 527.575012 2.880000
27 | 551.022034 2.870000
28 | 576.651001 2.870000
29 | 604.781006 2.870000
30 | 635.795044 2.860000
31 | 670.162048 2.890000
32 | 708.456970 2.990000
33 | 751.393982 3.130000
34 | 799.871033 3.370000
35 | 855.033997 3.680000
36 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Nb_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Nb
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.640000
12 | 317.897003 2.620000
13 | 326.263000 2.590000
14 | 335.081024 2.560000
15 | 344.389008 2.520000
16 | 354.229004 2.480000
17 | 364.647003 2.460000
18 | 375.696991 2.440000
19 | 387.437988 2.450000
20 | 399.935028 2.480000
21 | 413.266998 2.510000
22 | 435.018036 2.580000
23 | 450.835999 2.660000
24 | 467.849030 2.740000
25 | 486.196014 2.830000
26 | 506.041016 2.890000
27 | 527.575012 2.920000
28 | 551.022034 2.930000
29 | 576.651001 2.920000
30 | 604.781006 2.890000
31 | 635.795044 2.820000
32 | 670.162048 2.690000
33 | 708.456970 2.540000
34 | 751.393982 2.360000
35 | 799.871033 2.150000
36 | 855.033997 1.950000
37 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Nb_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Nb
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.330000
12 | 317.897003 2.290000
13 | 326.263000 2.280000
14 | 335.081024 2.270000
15 | 344.389008 2.290000
16 | 354.229004 2.330000
17 | 364.647003 2.380000
18 | 375.696991 2.450000
19 | 387.437988 2.530000
20 | 399.935028 2.600000
21 | 413.266998 2.680000
22 | 435.018036 2.800000
23 | 450.835999 2.860000
24 | 467.849030 2.900000
25 | 486.196014 2.920000
26 | 506.041016 2.900000
27 | 527.575012 2.880000
28 | 551.022034 2.870000
29 | 576.651001 2.870000
30 | 604.781006 2.870000
31 | 635.795044 2.860000
32 | 670.162048 2.890000
33 | 708.456970 2.990000
34 | 751.393982 3.130000
35 | 799.871033 3.370000
36 | 855.033997 3.680000
37 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ni_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ni
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 1.740000
12 | 309.950012 1.730000
13 | 317.897003 1.720000
14 | 326.263000 1.690000
15 | 335.081024 1.660000
16 | 344.389008 1.640000
17 | 354.229004 1.630000
18 | 364.647003 1.620000
19 | 375.696991 1.610000
20 | 387.437988 1.610000
21 | 399.935028 1.610000
22 | 413.266998 1.610000
23 | 427.516998 1.620000
24 | 442.785980 1.620000
25 | 459.185028 1.640000
26 | 476.846008 1.660000
27 | 495.920013 1.670000
28 | 516.583008 1.710000
29 | 539.044006 1.750000
30 | 563.545044 1.800000
31 | 590.381042 1.850000
32 | 619.900024 1.930000
33 | 635.795044 1.980000
34 | 652.526001 2.020000
35 | 670.162048 2.080000
36 | 688.778015 2.140000
37 | 708.456970 2.210000
38 | 729.294006 2.280000
39 | 751.393982 2.360000
40 | 774.875000 2.430000
41 | 799.871033 2.480000
42 | 826.533020 2.530000
43 | 855.033997 2.590000
44 | 885.570984 2.650000
45 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ni_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ni
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 1.990000
12 | 309.950012 1.980000
13 | 317.897003 1.980000
14 | 326.263000 1.990000
15 | 335.081024 2.020000
16 | 344.389008 2.070000
17 | 354.229004 2.110000
18 | 364.647003 2.170000
19 | 375.696991 2.230000
20 | 387.437988 2.300000
21 | 399.935028 2.360000
22 | 413.266998 2.440000
23 | 427.516998 2.520000
24 | 442.785980 2.610000
25 | 459.185028 2.710000
26 | 476.846008 2.810000
27 | 495.920013 2.930000
28 | 516.583008 3.060000
29 | 539.044006 3.190000
30 | 563.545044 3.330000
31 | 590.381042 3.480000
32 | 619.900024 3.650000
33 | 635.795044 3.740000
34 | 652.526001 3.820000
35 | 670.162048 3.910000
36 | 688.778015 4.000000
37 | 708.456970 4.090000
38 | 729.294006 4.180000
39 | 751.393982 4.250000
40 | 774.875000 4.310000
41 | 799.871033 4.380000
42 | 826.533020 4.470000
43 | 855.033997 4.550000
44 | 885.570984 4.630000
45 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Rh.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Rh
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Rh_llnl_cxro + Rh_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 0.840000
11 | 309.950012 0.860000
12 | 317.897003 0.880000
13 | 326.263000 0.910000
14 | 335.081024 0.950000
15 | 344.389008 0.990000
16 | 354.229004 1.040000
17 | 364.647003 1.110000
18 | 375.696991 1.200000
19 | 387.437988 1.300000
20 | 399.935028 1.410000
21 | 413.266998 1.530000
22 | 427.516998 1.630000
23 | 459.185028 1.800000
24 | 476.846008 1.850000
25 | 495.920013 1.880000
26 | 516.583008 1.900000
27 | 539.044006 1.940000
28 | 563.545044 2.000000
29 | 590.381042 2.050000
30 | 619.900024 2.120000
31 | 652.526001 2.200000
32 | 688.778015 2.300000
33 | 729.294006 2.420000
34 | 774.875000 2.600000
35 | 826.533020 2.780000
36 | 885.570984 3.010000
37 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Rh.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Rh
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Rh_llnl_cxro + Rh_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 3.030000
11 | 309.950012 3.120000
12 | 317.897003 3.230000
13 | 326.263000 3.340000
14 | 335.081024 3.450000
15 | 344.389008 3.580000
16 | 354.229004 3.710000
17 | 364.647003 3.840000
18 | 375.696991 3.970000
19 | 387.437988 4.090000
20 | 399.935028 4.200000
21 | 413.266998 4.290000
22 | 427.516998 4.360000
23 | 459.185028 4.490000
24 | 476.846008 4.550000
25 | 495.920013 4.650000
26 | 516.583008 4.780000
27 | 539.044006 4.940000
28 | 563.545044 5.110000
29 | 590.381042 5.300000
30 | 619.900024 5.510000
31 | 652.526001 5.760000
32 | 688.778015 6.020000
33 | 729.294006 6.330000
34 | 774.875000 6.640000
35 | 826.533020 6.970000
36 | 885.570984 7.310000
37 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Rh_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Rh
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 0.840000
12 | 309.950012 0.860000
13 | 317.897003 0.880000
14 | 326.263000 0.910000
15 | 335.081024 0.950000
16 | 344.389008 0.990000
17 | 354.229004 1.040000
18 | 364.647003 1.110000
19 | 375.696991 1.200000
20 | 387.437988 1.300000
21 | 399.935028 1.410000
22 | 413.266998 1.530000
23 | 427.516998 1.630000
24 | 459.185028 1.800000
25 | 476.846008 1.850000
26 | 495.920013 1.880000
27 | 516.583008 1.900000
28 | 539.044006 1.940000
29 | 563.545044 2.000000
30 | 590.381042 2.050000
31 | 619.900024 2.120000
32 | 652.526001 2.200000
33 | 688.778015 2.300000
34 | 729.294006 2.420000
35 | 774.875000 2.600000
36 | 826.533020 2.780000
37 | 885.570984 3.010000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Rh_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Rh
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 3.030000
12 | 309.950012 3.120000
13 | 317.897003 3.230000
14 | 326.263000 3.340000
15 | 335.081024 3.450000
16 | 344.389008 3.580000
17 | 354.229004 3.710000
18 | 364.647003 3.840000
19 | 375.696991 3.970000
20 | 387.437988 4.090000
21 | 399.935028 4.200000
22 | 413.266998 4.290000
23 | 427.516998 4.360000
24 | 459.185028 4.490000
25 | 476.846008 4.550000
26 | 495.920013 4.650000
27 | 516.583008 4.780000
28 | 539.044006 4.940000
29 | 563.545044 5.110000
30 | 590.381042 5.300000
31 | 619.900024 5.510000
32 | 652.526001 5.760000
33 | 688.778015 6.020000
34 | 729.294006 6.330000
35 | 774.875000 6.640000
36 | 826.533020 6.970000
37 | 885.570984 7.310000
38 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se-e.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 344.389008 3.390000
12 | 364.647003 3.690000
13 | 387.437988 3.920000
14 | 413.266998 4.440000
15 | 442.785980 4.590000
16 | 476.846008 4.400000
17 | 516.583008 4.280000
18 | 563.545044 4.490000
19 | 619.900024 4.790000
20 | 688.778015 4.460000
21 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se-e.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 344.389008 3.010000
12 | 364.647003 2.760000
13 | 387.437988 2.590000
14 | 413.266998 2.290000
15 | 442.785980 1.700000
16 | 476.846008 1.320000
17 | 516.583008 1.210000
18 | 563.545044 1.190000
19 | 619.900024 0.760000
20 | 688.778015 0.022000
21 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se-e_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 344.389008 3.390000
12 | 364.647003 3.690000
13 | 387.437988 3.920000
14 | 413.266998 4.440000
15 | 442.785980 4.590000
16 | 476.846008 4.400000
17 | 516.583008 4.280000
18 | 563.545044 4.490000
19 | 619.900024 4.790000
20 | 688.778015 4.460000
21 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se-e_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 344.389008 3.010000
12 | 364.647003 2.760000
13 | 387.437988 2.590000
14 | 413.266998 2.290000
15 | 442.785980 1.700000
16 | 476.846008 1.320000
17 | 516.583008 1.210000
18 | 563.545044 1.190000
19 | 619.900024 0.760000
20 | 688.778015 0.022000
21 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.670000
12 | 309.950012 2.510000
13 | 326.263000 2.840000
14 | 344.389008 3.060000
15 | 364.647003 3.220000
16 | 387.437988 3.350000
17 | 413.266998 3.300000
18 | 442.785980 3.120000
19 | 476.846008 3.000000
20 | 516.583008 2.930000
21 | 563.545044 3.070000
22 | 619.900024 3.380000
23 | 688.778015 3.320000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.990000
12 | 309.950012 1.810000
13 | 326.263000 1.660000
14 | 344.389008 1.470000
15 | 364.647003 1.240000
16 | 387.437988 1.010000
17 | 413.266998 0.700000
18 | 442.785980 0.580000
19 | 476.846008 0.530000
20 | 516.583008 0.610000
21 | 563.545044 0.730000
22 | 619.900024 0.650000
23 | 688.778015 0.110000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.670000
12 | 309.950012 2.510000
13 | 326.263000 2.840000
14 | 344.389008 3.060000
15 | 364.647003 3.220000
16 | 387.437988 3.350000
17 | 413.266998 3.300000
18 | 442.785980 3.120000
19 | 476.846008 3.000000
20 | 516.583008 2.930000
21 | 563.545044 3.070000
22 | 619.900024 3.380000
23 | 688.778015 3.320000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Se_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Se, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.990000
12 | 309.950012 1.810000
13 | 326.263000 1.660000
14 | 344.389008 1.470000
15 | 364.647003 1.240000
16 | 387.437988 1.010000
17 | 413.266998 0.700000
18 | 442.785980 0.580000
19 | 476.846008 0.530000
20 | 516.583008 0.610000
21 | 563.545044 0.730000
22 | 619.900024 0.650000
23 | 688.778015 0.110000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SiC.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for crystalline SiC
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  SiC_llnl_cxro + SiC_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.850000
11 | 317.897003 2.923000
12 | 326.263000 2.899000
13 | 335.081024 2.877000
14 | 344.389008 2.856000
15 | 354.229004 2.836000
16 | 364.647003 2.817000
17 | 375.696991 2.799000
18 | 387.437988 2.781000
19 | 399.935028 2.765000
20 | 413.266998 2.750000
21 | 435.781982 2.730500
22 | 466.968018 2.707400
23 | 495.920013 2.684000
24 | 497.912018 2.687000
25 | 515.080994 2.678900
26 | 546.166992 2.663100
27 | 567.934021 2.655700
28 | 577.995056 2.651100
29 | 588.979004 2.648800
30 | 589.539001 2.647500
31 | 615.897034 2.641100
32 | 619.900024 2.634000
33 | 656.325989 2.629600
34 | 691.080994 2.624300
35 | 826.533020 2.598000
36 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SiC.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for crystalline SiC
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  SiC_llnl_cxro + SiC_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 0.174000
11 | 317.897003 0.007650
12 | 326.263000 0.005980
13 | 335.081024 0.004930
14 | 344.389008 0.003750
15 | 354.229004 0.002890
16 | 364.647003 0.002040
17 | 375.696991 0.001380
18 | 387.437988 0.000839
19 | 399.935028 0.000191
20 | 413.266998 0.000044
21 | 435.781982 0.000000
22 | 466.968018 0.000000
23 | 495.920013 0.000012
24 | 497.912018 0.000000
25 | 515.080994 0.000000
26 | 546.166992 0.000000
27 | 567.934021 0.000000
28 | 577.995056 0.000000
29 | 588.979004 0.000000
30 | 589.539001 0.000000
31 | 615.897034 0.000000
32 | 619.900024 0.000000
33 | 656.325989 0.000000
34 | 691.080994 0.000000
35 | 826.533020 0.000000
36 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SiC_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for hexagonal SiC, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.850000
12 | 317.897003 2.923000
13 | 326.263000 2.899000
14 | 335.081024 2.877000
15 | 344.389008 2.856000
16 | 354.229004 2.836000
17 | 364.647003 2.817000
18 | 375.696991 2.799000
19 | 387.437988 2.781000
20 | 399.935028 2.765000
21 | 413.266998 2.750000
22 | 435.781982 2.730500
23 | 466.968018 2.707400
24 | 495.920013 2.684000
25 | 497.912018 2.687000
26 | 515.080994 2.678900
27 | 546.166992 2.663100
28 | 567.934021 2.655700
29 | 577.995056 2.651100
30 | 588.979004 2.648800
31 | 589.539001 2.647500
32 | 615.897034 2.641100
33 | 619.900024 2.634000
34 | 656.325989 2.629600
35 | 691.080994 2.624300
36 | 826.533020 2.598000
37 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SiC_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for hexagonal SiC, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.174000
12 | 317.897003 0.007650
13 | 326.263000 0.005980
14 | 335.081024 0.004930
15 | 344.389008 0.003750
16 | 354.229004 0.002890
17 | 364.647003 0.002040
18 | 375.696991 0.001380
19 | 387.437988 0.000839
20 | 399.935028 0.000191
21 | 413.266998 0.000044
22 | 435.781982 0.000000
23 | 466.968018 0.000000
24 | 495.920013 0.000012
25 | 497.912018 0.000000
26 | 515.080994 0.000000
27 | 546.166992 0.000000
28 | 567.934021 0.000000
29 | 577.995056 0.000000
30 | 588.979004 0.000000
31 | 589.539001 0.000000
32 | 615.897034 0.000000
33 | 619.900024 0.000000
34 | 656.325989 0.000000
35 | 691.080994 0.000000
36 | 826.533020 0.000000
37 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SiO.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for SiO
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  SiO_llnl_cxro + SiO_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.141000
11 | 326.263000 2.157000
12 | 344.389008 2.162000
13 | 364.647003 2.160000
14 | 387.437988 2.144000
15 | 413.266998 2.116000
16 | 442.785980 2.085000
17 | 476.846008 2.053000
18 | 516.583008 2.021000
19 | 563.545044 1.994000
20 | 619.900024 1.969000
21 | 688.778015 1.948000
22 | 774.875000 1.929000
23 | 885.570984 1.913000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SiO.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for SiO
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  SiO_llnl_cxro + SiO_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 0.400600
11 | 326.263000 0.345300
12 | 344.389008 0.287200
13 | 364.647003 0.228700
14 | 387.437988 0.170600
15 | 413.266998 0.121100
16 | 442.785980 0.083740
17 | 476.846008 0.055440
18 | 516.583008 0.035330
19 | 563.545044 0.021530
20 | 619.900024 0.011750
21 | 688.778015 0.005230
22 | 774.875000 0.001510
23 | 885.570984 0.000000
24 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SnTe.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for SnTe
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 311.586029 0.967000
12 | 332.118988 1.007000
13 | 361.037018 1.103000
14 | 390.242004 1.228000
15 | 414.372040 1.364000
16 | 453.308990 1.551000
17 | 498.312012 1.702000
18 | 533.476990 1.813000
19 | 548.099060 1.878000
20 | 550.533020 1.989000
21 | 552.987976 2.135000
22 | 558.216980 2.442000
23 | 566.119019 2.719000
24 | 582.339050 2.991000
25 | 605.963013 3.273000
26 | 621.454041 3.479000
27 | 648.091980 3.701000
28 | 681.208984 3.912000
29 | 748.671021 4.285000
30 | 804.020996 4.541000
31 | 867.478027 4.803000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SnTe.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for SnTe
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 311.586029 0.000000
12 | 332.118988 0.000000
13 | 361.037018 0.000000
14 | 390.242004 0.000000
15 | 414.372040 0.000000
16 | 453.308990 0.000000
17 | 498.312012 0.000000
18 | 533.476990 0.000000
19 | 548.099060 0.000000
20 | 550.533020 0.000000
21 | 552.987976 0.000000
22 | 558.216980 0.000000
23 | 566.119019 0.000000
24 | 582.339050 0.000000
25 | 605.963013 0.000000
26 | 621.454041 0.000000
27 | 648.091980 0.000000
28 | 681.208984 0.000000
29 | 748.671021 0.000000
30 | 804.020996 0.000000
31 | 867.478027 0.000000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SnTe_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for SnTe
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 311.586029 0.967000
12 | 332.118988 1.007000
13 | 361.037018 1.103000
14 | 390.242004 1.228000
15 | 414.372040 1.364000
16 | 453.308990 1.551000
17 | 498.312012 1.702000
18 | 533.476990 1.813000
19 | 548.099060 1.878000
20 | 550.533020 1.989000
21 | 552.987976 2.135000
22 | 558.216980 2.442000
23 | 566.119019 2.719000
24 | 582.339050 2.991000
25 | 605.963013 3.273000
26 | 621.454041 3.479000
27 | 648.091980 3.701000
28 | 681.208984 3.912000
29 | 748.671021 4.285000
30 | 804.020996 4.541000
31 | 867.478027 4.803000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/SnTe_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for SnTe
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 311.586029 0.000000
12 | 332.118988 0.000000
13 | 361.037018 0.000000
14 | 390.242004 0.000000
15 | 414.372040 0.000000
16 | 453.308990 0.000000
17 | 498.312012 0.000000
18 | 533.476990 0.000000
19 | 548.099060 0.000000
20 | 550.533020 0.000000
21 | 552.987976 0.000000
22 | 558.216980 0.000000
23 | 566.119019 0.000000
24 | 582.339050 0.000000
25 | 605.963013 0.000000
26 | 621.454041 0.000000
27 | 648.091980 0.000000
28 | 681.208984 0.000000
29 | 748.671021 0.000000
30 | 804.020996 0.000000
31 | 867.478027 0.000000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ta.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ta
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Ta_llnl_cxro + Ta_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.360000
11 | 326.263000 2.400000
12 | 344.389008 2.490000
13 | 364.647003 2.610000
14 | 387.437988 2.730000
15 | 413.266998 2.810000
16 | 427.516998 2.840000
17 | 442.785980 2.850000
18 | 459.185028 2.840000
19 | 476.846008 2.800000
20 | 495.920013 2.750000
21 | 516.583008 2.680000
22 | 539.044006 2.560000
23 | 563.545044 2.360000
24 | 590.381042 2.100000
25 | 619.900024 1.830000
26 | 652.526001 1.570000
27 | 688.778015 1.350000
28 | 729.294006 1.240000
29 | 774.875000 1.150000
30 | 826.533020 1.090000
31 | 885.570984 1.040000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ta.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ta
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  Ta_llnl_cxro + Ta_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.140000
11 | 326.263000 2.220000
12 | 344.389008 2.300000
13 | 364.647003 2.330000
14 | 387.437988 2.310000
15 | 413.266998 2.240000
16 | 427.516998 2.200000
17 | 442.785980 2.140000
18 | 459.185028 2.080000
19 | 476.846008 2.020000
20 | 495.920013 1.980000
21 | 516.583008 1.920000
22 | 539.044006 1.860000
23 | 563.545044 1.810000
24 | 590.381042 1.840000
25 | 619.900024 1.990000
26 | 652.526001 2.240000
27 | 688.778015 2.600000
28 | 729.294006 2.950000
29 | 774.875000 3.330000
30 | 826.533020 3.730000
31 | 885.570984 4.150000
32 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ta_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ta
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.360000
12 | 326.263000 2.400000
13 | 344.389008 2.490000
14 | 364.647003 2.610000
15 | 387.437988 2.730000
16 | 413.266998 2.810000
17 | 427.516998 2.840000
18 | 442.785980 2.850000
19 | 459.185028 2.840000
20 | 476.846008 2.800000
21 | 495.920013 2.750000
22 | 516.583008 2.680000
23 | 539.044006 2.560000
24 | 563.545044 2.360000
25 | 590.381042 2.100000
26 | 619.900024 1.830000
27 | 652.526001 1.570000
28 | 688.778015 1.350000
29 | 729.294006 1.240000
30 | 774.875000 1.150000
31 | 826.533020 1.090000
32 | 885.570984 1.040000
33 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Ta_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for Ta
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.140000
12 | 326.263000 2.220000
13 | 344.389008 2.300000
14 | 364.647003 2.330000
15 | 387.437988 2.310000
16 | 413.266998 2.240000
17 | 427.516998 2.200000
18 | 442.785980 2.140000
19 | 459.185028 2.080000
20 | 476.846008 2.020000
21 | 495.920013 1.980000
22 | 516.583008 1.920000
23 | 539.044006 1.860000
24 | 563.545044 1.810000
25 | 590.381042 1.840000
26 | 619.900024 1.990000
27 | 652.526001 2.240000
28 | 688.778015 2.600000
29 | 729.294006 2.950000
30 | 774.875000 3.330000
31 | 826.533020 3.730000
32 | 885.570984 4.150000
33 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te-e.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.330000
12 | 330.613007 1.440000
13 | 354.229004 1.690000
14 | 381.477020 1.920000
15 | 403.975006 2.220000
16 | 413.266998 2.300000
17 | 416.599030 2.350000
18 | 430.037994 2.540000
19 | 442.785980 2.730000
20 | 444.373016 2.760000
21 | 459.696014 2.980000
22 | 476.114014 3.210000
23 | 476.846008 3.250000
24 | 489.266022 3.460000
25 | 498.512024 3.630000
26 | 507.906982 3.810000
27 | 516.583008 3.940000
28 | 517.877991 3.990000
29 | 528.024048 4.200000
30 | 538.809021 4.390000
31 | 549.799988 4.650000
32 | 561.249023 4.910000
33 | 563.545044 4.940000
34 | 573.450989 5.170000
35 | 599.226990 5.760000
36 | 612.851990 6.000000
37 | 619.900024 4.670000
38 | 627.429016 6.210000
39 | 642.382996 6.400000
40 | 658.416992 6.580000
41 | 674.904968 6.770000
42 | 688.778015 6.890000
43 | 692.625977 6.850000
44 | 710.895020 6.860000
45 | 730.583008 6.800000
46 | 750.939026 6.780000
47 | 772.943054 6.740000
48 | 774.875000 6.750000
49 | 796.275024 6.730000
50 | 820.516052 6.810000
51 | 846.858032 6.950000
52 | 874.330017 7.140000
53 | 885.570984 7.110000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te-e.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.640000
12 | 330.613007 3.060000
13 | 354.229004 3.440000
14 | 381.477020 3.780000
15 | 403.975006 3.960000
16 | 413.266998 4.160000
17 | 416.599030 4.150000
18 | 430.037994 4.270000
19 | 442.785980 4.420000
20 | 444.373016 4.390000
21 | 459.696014 4.520000
22 | 476.114014 4.710000
23 | 476.846008 4.770000
24 | 489.266022 4.850000
25 | 498.512024 4.930000
26 | 507.906982 5.010000
27 | 516.583008 5.080000
28 | 517.877991 5.080000
29 | 528.024048 5.160000
30 | 538.809021 5.200000
31 | 549.799988 5.210000
32 | 561.249023 5.200000
33 | 563.545044 5.160000
34 | 573.450989 5.160000
35 | 599.226990 4.920000
36 | 612.851990 4.770000
37 | 619.900024 4.670000
38 | 627.429016 4.600000
39 | 642.382996 4.360000
40 | 658.416992 4.100000
41 | 674.904968 3.860000
42 | 688.778015 3.700000
43 | 692.625977 3.650000
44 | 710.895020 3.470000
45 | 730.583008 3.180000
46 | 750.939026 3.030000
47 | 772.943054 2.930000
48 | 774.875000 2.910000
49 | 796.275024 2.890000
50 | 820.516052 2.860000
51 | 846.858032 2.800000
52 | 874.330017 2.560000
53 | 885.570984 2.460000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te-e_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.330000
12 | 330.613007 1.440000
13 | 354.229004 1.690000
14 | 381.477020 1.920000
15 | 403.975006 2.220000
16 | 413.266998 2.300000
17 | 416.599030 2.350000
18 | 430.037994 2.540000
19 | 442.785980 2.730000
20 | 444.373016 2.760000
21 | 459.696014 2.980000
22 | 476.114014 3.210000
23 | 476.846008 3.250000
24 | 489.266022 3.460000
25 | 498.512024 3.630000
26 | 507.906982 3.810000
27 | 516.583008 3.940000
28 | 517.877991 3.990000
29 | 528.024048 4.200000
30 | 538.809021 4.390000
31 | 549.799988 4.650000
32 | 561.249023 4.910000
33 | 563.545044 4.940000
34 | 573.450989 5.170000
35 | 599.226990 5.760000
36 | 612.851990 6.000000
37 | 619.900024 4.670000
38 | 627.429016 6.210000
39 | 642.382996 6.400000
40 | 658.416992 6.580000
41 | 674.904968 6.770000
42 | 688.778015 6.890000
43 | 692.625977 6.850000
44 | 710.895020 6.860000
45 | 730.583008 6.800000
46 | 750.939026 6.780000
47 | 772.943054 6.740000
48 | 774.875000 6.750000
49 | 796.275024 6.730000
50 | 820.516052 6.810000
51 | 846.858032 6.950000
52 | 874.330017 7.140000
53 | 885.570984 7.110000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te-e_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.640000
12 | 330.613007 3.060000
13 | 354.229004 3.440000
14 | 381.477020 3.780000
15 | 403.975006 3.960000
16 | 413.266998 4.160000
17 | 416.599030 4.150000
18 | 430.037994 4.270000
19 | 442.785980 4.420000
20 | 444.373016 4.390000
21 | 459.696014 4.520000
22 | 476.114014 4.710000
23 | 476.846008 4.770000
24 | 489.266022 4.850000
25 | 498.512024 4.930000
26 | 507.906982 5.010000
27 | 516.583008 5.080000
28 | 517.877991 5.080000
29 | 528.024048 5.160000
30 | 538.809021 5.200000
31 | 549.799988 5.210000
32 | 561.249023 5.200000
33 | 563.545044 5.160000
34 | 573.450989 5.160000
35 | 599.226990 4.920000
36 | 612.851990 4.770000
37 | 619.900024 4.670000
38 | 627.429016 4.600000
39 | 642.382996 4.360000
40 | 658.416992 4.100000
41 | 674.904968 3.860000
42 | 688.778015 3.700000
43 | 692.625977 3.650000
44 | 710.895020 3.470000
45 | 730.583008 3.180000
46 | 750.939026 3.030000
47 | 772.943054 2.930000
48 | 774.875000 2.910000
49 | 796.275024 2.890000
50 | 820.516052 2.860000
51 | 846.858032 2.800000
52 | 874.330017 2.560000
53 | 885.570984 2.460000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te,ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.320000
12 | 330.613007 1.500000
13 | 354.229004 1.720000
14 | 381.477020 2.020000
15 | 403.975006 2.370000
16 | 413.266998 2.510000
17 | 416.599030 2.560000
18 | 430.037994 2.770000
19 | 442.785980 3.030000
20 | 444.373016 3.010000
21 | 459.696014 3.270000
22 | 476.114014 3.550000
23 | 476.846008 3.570000
24 | 489.266022 3.760000
25 | 498.512024 3.910000
26 | 507.906982 4.070000
27 | 516.583008 4.240000
28 | 517.877991 4.250000
29 | 528.024048 4.430000
30 | 538.809021 4.620000
31 | 549.799988 4.810000
32 | 561.249023 5.010000
33 | 563.545044 5.100000
34 | 573.450989 5.260000
35 | 599.226990 5.670000
36 | 612.851990 5.820000
37 | 619.900024 5.940000
38 | 627.429016 5.970000
39 | 642.382996 6.070000
40 | 658.416992 6.110000
41 | 674.904968 6.120000
42 | 688.778015 6.100000
43 | 692.625977 6.090000
44 | 710.895020 6.040000
45 | 730.583008 5.950000
46 | 750.939026 5.870000
47 | 772.943054 5.860000
48 | 774.875000 5.880000
49 | 796.275024 5.840000
50 | 820.516052 5.780000
51 | 846.858032 5.680000
52 | 874.330017 5.590000
53 | 885.570984 5.560000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te,ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.010000
12 | 330.613007 2.370000
13 | 354.229004 2.700000
14 | 381.477020 3.030000
15 | 403.975006 3.290000
16 | 413.266998 3.390000
17 | 416.599030 3.390000
18 | 430.037994 3.470000
19 | 442.785980 3.630000
20 | 444.373016 3.570000
21 | 459.696014 3.660000
22 | 476.114014 3.720000
23 | 476.846008 3.750000
24 | 489.266022 3.760000
25 | 498.512024 3.770000
26 | 507.906982 3.770000
27 | 516.583008 3.770000
28 | 517.877991 3.780000
29 | 528.024048 3.760000
30 | 538.809021 3.690000
31 | 549.799988 3.630000
32 | 561.249023 3.570000
33 | 563.545044 3.610000
34 | 573.450989 3.520000
35 | 599.226990 3.160000
36 | 612.851990 2.940000
37 | 619.900024 2.690000
38 | 627.429016 2.700000
39 | 642.382996 2.450000
40 | 658.416992 2.250000
41 | 674.904968 2.020000
42 | 688.778015 1.800000
43 | 692.625977 1.720000
44 | 710.895020 1.520000
45 | 730.583008 1.360000
46 | 750.939026 1.260000
47 | 772.943054 1.170000
48 | 774.875000 1.150000
49 | 796.275024 1.060000
50 | 820.516052 0.895000
51 | 846.858032 0.760000
52 | 874.330017 0.659000
53 | 885.570984 0.630000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te,ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.320000
12 | 330.613007 1.500000
13 | 354.229004 1.720000
14 | 381.477020 2.020000
15 | 403.975006 2.370000
16 | 413.266998 2.510000
17 | 416.599030 2.560000
18 | 430.037994 2.770000
19 | 442.785980 3.030000
20 | 444.373016 3.010000
21 | 459.696014 3.270000
22 | 476.114014 3.550000
23 | 476.846008 3.570000
24 | 489.266022 3.760000
25 | 498.512024 3.910000
26 | 507.906982 4.070000
27 | 516.583008 4.240000
28 | 517.877991 4.250000
29 | 528.024048 4.430000
30 | 538.809021 4.620000
31 | 549.799988 4.810000
32 | 561.249023 5.010000
33 | 563.545044 5.100000
34 | 573.450989 5.260000
35 | 599.226990 5.670000
36 | 612.851990 5.820000
37 | 619.900024 5.940000
38 | 627.429016 5.970000
39 | 642.382996 6.070000
40 | 658.416992 6.110000
41 | 674.904968 6.120000
42 | 688.778015 6.100000
43 | 692.625977 6.090000
44 | 710.895020 6.040000
45 | 730.583008 5.950000
46 | 750.939026 5.870000
47 | 772.943054 5.860000
48 | 774.875000 5.880000
49 | 796.275024 5.840000
50 | 820.516052 5.780000
51 | 846.858032 5.680000
52 | 874.330017 5.590000
53 | 885.570984 5.560000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/Te_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for trigonal Te,ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.010000
12 | 330.613007 2.370000
13 | 354.229004 2.700000
14 | 381.477020 3.030000
15 | 403.975006 3.290000
16 | 413.266998 3.390000
17 | 416.599030 3.390000
18 | 430.037994 3.470000
19 | 442.785980 3.630000
20 | 444.373016 3.570000
21 | 459.696014 3.660000
22 | 476.114014 3.720000
23 | 476.846008 3.750000
24 | 489.266022 3.760000
25 | 498.512024 3.770000
26 | 507.906982 3.770000
27 | 516.583008 3.770000
28 | 517.877991 3.780000
29 | 528.024048 3.760000
30 | 538.809021 3.690000
31 | 549.799988 3.630000
32 | 561.249023 3.570000
33 | 563.545044 3.610000
34 | 573.450989 3.520000
35 | 599.226990 3.160000
36 | 612.851990 2.940000
37 | 619.900024 2.690000
38 | 627.429016 2.700000
39 | 642.382996 2.450000
40 | 658.416992 2.250000
41 | 674.904968 2.020000
42 | 688.778015 1.800000
43 | 692.625977 1.720000
44 | 710.895020 1.520000
45 | 730.583008 1.360000
46 | 750.939026 1.260000
47 | 772.943054 1.170000
48 | 774.875000 1.150000
49 | 796.275024 1.060000
50 | 820.516052 0.895000
51 | 846.858032 0.760000
52 | 874.330017 0.659000
53 | 885.570984 0.630000
54 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/ThF4.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline ThF4
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.545000
12 | 319.947998 1.542000
13 | 329.997009 1.540000
14 | 340.044006 1.538000
15 | 349.929016 1.536000
16 | 359.988007 1.534000
17 | 369.979004 1.532000
18 | 379.957001 1.531000
19 | 389.997009 1.530000
20 | 399.935028 1.529000
21 | 409.987030 1.528000
22 | 419.985992 1.527000
23 | 430.037994 1.526000
24 | 435.781982 1.533000
25 | 439.957001 1.526000
26 | 450.018036 1.525000
27 | 460.037018 1.524000
28 | 469.977020 1.524000
29 | 479.985016 1.523000
30 | 490.040009 1.523000
31 | 499.919006 1.523000
32 | 509.996002 1.522000
33 | 520.049988 1.522000
34 | 539.983032 1.521000
35 | 545.927002 1.521000
36 | 559.981995 1.521000
37 | 579.888000 1.520000
38 | 600.097046 1.520000
39 | 619.900024 1.520000
40 | 640.062012 1.519000
41 | 659.819031 1.519000
42 | 700.056030 1.519000
43 | 739.737000 1.518000
44 | 779.747986 1.518000
45 | 799.871033 1.518000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/ThF4.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline ThF4
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.000000
12 | 319.947998 0.000000
13 | 329.997009 0.000000
14 | 340.044006 0.000000
15 | 349.929016 0.000000
16 | 359.988007 0.000000
17 | 369.979004 0.000000
18 | 379.957001 0.000000
19 | 389.997009 0.000000
20 | 399.935028 0.000000
21 | 409.987030 0.000000
22 | 419.985992 0.000000
23 | 430.037994 0.000000
24 | 435.781982 0.000000
25 | 439.957001 0.000000
26 | 450.018036 0.000000
27 | 460.037018 0.000000
28 | 469.977020 0.000000
29 | 479.985016 0.000000
30 | 490.040009 0.000000
31 | 499.919006 0.000000
32 | 509.996002 0.000000
33 | 520.049988 0.000000
34 | 539.983032 0.000000
35 | 545.927002 0.000000
36 | 559.981995 0.000000
37 | 579.888000 0.000000
38 | 600.097046 0.000000
39 | 619.900024 0.000000
40 | 640.062012 0.000000
41 | 659.819031 0.000000
42 | 700.056030 0.000000
43 | 739.737000 0.000000
44 | 779.747986 0.000000
45 | 799.871033 0.000000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/ThF4_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline ThF4
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.545000
12 | 319.947998 1.542000
13 | 329.997009 1.540000
14 | 340.044006 1.538000
15 | 349.929016 1.536000
16 | 359.988007 1.534000
17 | 369.979004 1.532000
18 | 379.957001 1.531000
19 | 389.997009 1.530000
20 | 399.935028 1.529000
21 | 409.987030 1.528000
22 | 419.985992 1.527000
23 | 430.037994 1.526000
24 | 435.781982 1.533000
25 | 439.957001 1.526000
26 | 450.018036 1.525000
27 | 460.037018 1.524000
28 | 469.977020 1.524000
29 | 479.985016 1.523000
30 | 490.040009 1.523000
31 | 499.919006 1.523000
32 | 509.996002 1.522000
33 | 520.049988 1.522000
34 | 539.983032 1.521000
35 | 545.927002 1.521000
36 | 559.981995 1.521000
37 | 579.888000 1.520000
38 | 600.097046 1.520000
39 | 619.900024 1.520000
40 | 640.062012 1.519000
41 | 659.819031 1.519000
42 | 700.056030 1.519000
43 | 739.737000 1.518000
44 | 779.747986 1.518000
45 | 799.871033 1.518000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/ThF4_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline ThF4
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.000000
12 | 319.947998 0.000000
13 | 329.997009 0.000000
14 | 340.044006 0.000000
15 | 349.929016 0.000000
16 | 359.988007 0.000000
17 | 369.979004 0.000000
18 | 379.957001 0.000000
19 | 389.997009 0.000000
20 | 399.935028 0.000000
21 | 409.987030 0.000000
22 | 419.985992 0.000000
23 | 430.037994 0.000000
24 | 435.781982 0.000000
25 | 439.957001 0.000000
26 | 450.018036 0.000000
27 | 460.037018 0.000000
28 | 469.977020 0.000000
29 | 479.985016 0.000000
30 | 490.040009 0.000000
31 | 499.919006 0.000000
32 | 509.996002 0.000000
33 | 520.049988 0.000000
34 | 539.983032 0.000000
35 | 545.927002 0.000000
36 | 559.981995 0.000000
37 | 579.888000 0.000000
38 | 600.097046 0.000000
39 | 619.900024 0.000000
40 | 640.062012 0.000000
41 | 659.819031 0.000000
42 | 700.056030 0.000000
43 | 739.737000 0.000000
44 | 779.747986 0.000000
45 | 799.871033 0.000000
46 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiC.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for TiC
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  TiC_llnl_cxro + TiC_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.300000
11 | 354.229004 2.570000
12 | 413.266998 2.780000
13 | 495.920013 2.950000
14 | 619.900024 3.050000
15 | 826.533020 3.510000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiC.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for TiC
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  TiC_llnl_cxro + TiC_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.330000
11 | 354.229004 2.340000
12 | 413.266998 2.430000
13 | 495.920013 2.380000
14 | 619.900024 2.670000
15 | 826.533020 3.070000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiC_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline TiC
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.300000
12 | 354.229004 2.570000
13 | 413.266998 2.780000
14 | 495.920013 2.950000
15 | 619.900024 3.050000
16 | 826.533020 3.510000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiC_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for polycrystalline TiC
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.330000
12 | 354.229004 2.340000
13 | 413.266998 2.430000
14 | 495.920013 2.380000
15 | 619.900024 2.670000
16 | 826.533020 3.070000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiN.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for TiN
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  TiN_llnl_cxro + TiN_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.270000
11 | 354.229004 2.140000
12 | 413.266998 1.740000
13 | 495.920013 1.200000
14 | 619.900024 1.320000
15 | 826.533020 1.820000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiN.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for TiN
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  TiN_llnl_cxro + TiN_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 1.230000
11 | 354.229004 1.060000
12 | 413.266998 1.040000
13 | 495.920013 1.650000
14 | 619.900024 2.690000
15 | 826.533020 3.810000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiN_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for TiN
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.270000
12 | 354.229004 2.140000
13 | 413.266998 1.740000
14 | 495.920013 1.200000
15 | 619.900024 1.320000
16 | 826.533020 1.820000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiN_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for TiN
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.230000
12 | 354.229004 1.060000
13 | 413.266998 1.040000
14 | 495.920013 1.650000
15 | 619.900024 2.690000
16 | 826.533020 3.810000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2-e.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 307.033020 3.420000
12 | 317.979004 4.000000
13 | 327.037994 3.870000
14 | 344.007019 4.300000
15 | 358.013000 3.380000
16 | 388.044006 2.880000
17 | 399.935028 3.000000
18 | 402.010010 3.000000
19 | 419.985992 2.910000
20 | 439.957001 2.840000
21 | 460.037018 2.790000
22 | 479.985016 2.750000
23 | 499.919006 2.710000
24 | 520.049988 2.680000
25 | 539.983032 2.660000
26 | 559.981995 2.640000
27 | 579.888000 2.620000
28 | 600.097046 2.600000
29 | 619.900024 2.590000
30 | 640.062012 2.580000
31 | 659.819031 2.570000
32 | 680.088013 2.560000
33 | 700.056030 2.550000
34 | 719.976990 2.540000
35 | 740.179016 2.540000
36 | 760.147034 2.530000
37 | 779.747986 2.520000
38 | 799.871033 2.520000
39 | 819.974060 2.520000
40 | 839.973083 2.510000
41 | 859.778015 2.510000
42 | 879.915039 2.500000
43 | 899.709961 2.500000
44 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2-e.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 307.033020 1.610000
12 | 317.979004 1.790000
13 | 327.037994 0.810000
14 | 344.007019 0.000000
15 | 358.013000 0.117000
16 | 388.044006 0.000000
17 | 399.935028 0.000000
18 | 402.010010 0.008000
19 | 419.985992 0.000000
20 | 439.957001 0.000000
21 | 460.037018 0.000000
22 | 479.985016 0.000000
23 | 499.919006 0.000000
24 | 520.049988 0.000000
25 | 539.983032 0.000000
26 | 559.981995 0.000000
27 | 579.888000 0.000000
28 | 600.097046 0.000000
29 | 619.900024 0.000000
30 | 640.062012 0.000000
31 | 659.819031 0.000000
32 | 680.088013 0.000000
33 | 700.056030 0.000000
34 | 719.976990 0.000000
35 | 740.179016 0.000000
36 | 760.147034 0.000000
37 | 779.747986 0.000000
38 | 799.871033 0.000000
39 | 819.974060 0.000000
40 | 839.973083 0.000000
41 | 859.778015 0.000000
42 | 879.915039 0.000000
43 | 899.709961 0.000000
44 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2-e_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 307.033020 3.420000
12 | 317.979004 4.000000
13 | 327.037994 3.870000
14 | 344.007019 4.300000
15 | 358.013000 3.380000
16 | 388.044006 2.880000
17 | 399.935028 3.000000
18 | 402.010010 3.000000
19 | 419.985992 2.910000
20 | 439.957001 2.840000
21 | 460.037018 2.790000
22 | 479.985016 2.750000
23 | 499.919006 2.710000
24 | 520.049988 2.680000
25 | 539.983032 2.660000
26 | 559.981995 2.640000
27 | 579.888000 2.620000
28 | 600.097046 2.600000
29 | 619.900024 2.590000
30 | 640.062012 2.580000
31 | 659.819031 2.570000
32 | 680.088013 2.560000
33 | 700.056030 2.550000
34 | 719.976990 2.540000
35 | 740.179016 2.540000
36 | 760.147034 2.530000
37 | 779.747986 2.520000
38 | 799.871033 2.520000
39 | 819.974060 2.520000
40 | 839.973083 2.510000
41 | 859.778015 2.510000
42 | 879.915039 2.500000
43 | 899.709961 2.500000
44 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2-e_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, extraordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 307.033020 1.610000
12 | 317.979004 1.790000
13 | 327.037994 0.810000
14 | 344.007019 0.000000
15 | 358.013000 0.117000
16 | 388.044006 0.000000
17 | 399.935028 0.000000
18 | 402.010010 0.008000
19 | 419.985992 0.000000
20 | 439.957001 0.000000
21 | 460.037018 0.000000
22 | 479.985016 0.000000
23 | 499.919006 0.000000
24 | 520.049988 0.000000
25 | 539.983032 0.000000
26 | 559.981995 0.000000
27 | 579.888000 0.000000
28 | 600.097046 0.000000
29 | 619.900024 0.000000
30 | 640.062012 0.000000
31 | 659.819031 0.000000
32 | 680.088013 0.000000
33 | 700.056030 0.000000
34 | 719.976990 0.000000
35 | 740.179016 0.000000
36 | 760.147034 0.000000
37 | 779.747986 0.000000
38 | 799.871033 0.000000
39 | 819.974060 0.000000
40 | 839.973083 0.000000
41 | 859.778015 0.000000
42 | 879.915039 0.000000
43 | 899.709961 0.000000
44 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, ordinary ray
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  TiO2_llnl_cxro + TiO2_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 305.972015 3.840000
11 | 317.979004 5.380000
12 | 334.990997 4.220000
13 | 344.007019 4.360000
14 | 359.988007 3.870000
15 | 388.044006 3.490000
16 | 399.935028 3.400000
17 | 412.031006 3.240000
18 | 419.985992 3.290000
19 | 439.957001 3.200000
20 | 460.037018 3.130000
21 | 479.985016 3.080000
22 | 499.919006 3.030000
23 | 520.049988 3.000000
24 | 539.044006 2.950000
25 | 539.983032 2.970000
26 | 559.981995 2.940000
27 | 579.888000 2.920000
28 | 600.097046 2.900000
29 | 619.900024 2.880000
30 | 640.062012 2.870000
31 | 659.819031 2.850000
32 | 680.088013 2.840000
33 | 700.056030 2.830000
34 | 719.976990 2.820000
35 | 740.179016 2.810000
36 | 760.147034 2.810000
37 | 779.747986 2.800000
38 | 799.871033 2.790000
39 | 819.974060 2.790000
40 | 839.973083 2.780000
41 | 859.778015 2.780000
42 | 879.915039 2.770000
43 | 899.709961 2.770000
44 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, ordinary ray
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  TiO2_llnl_cxro + TiO2_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 305.972015 1.950000
11 | 317.979004 2.180000
12 | 334.990997 0.788000
13 | 344.007019 0.000000
14 | 359.988007 0.251000
15 | 388.044006 0.000000
16 | 399.935028 0.000000
17 | 412.031006 0.022000
18 | 419.985992 0.000000
19 | 439.957001 0.000000
20 | 460.037018 0.000000
21 | 479.985016 0.000000
22 | 499.919006 0.000000
23 | 520.049988 0.000000
24 | 539.044006 0.000000
25 | 539.983032 0.000000
26 | 559.981995 0.000000
27 | 579.888000 0.000000
28 | 600.097046 0.000000
29 | 619.900024 0.000000
30 | 640.062012 0.000000
31 | 659.819031 0.000000
32 | 680.088013 0.000000
33 | 700.056030 0.000000
34 | 719.976990 0.000000
35 | 740.179016 0.000000
36 | 760.147034 0.000000
37 | 779.747986 0.000000
38 | 799.871033 0.000000
39 | 819.974060 0.000000
40 | 839.973083 0.000000
41 | 859.778015 0.000000
42 | 879.915039 0.000000
43 | 899.709961 0.000000
44 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 305.972015 3.840000
12 | 317.979004 5.380000
13 | 334.990997 4.220000
14 | 344.007019 4.360000
15 | 359.988007 3.870000
16 | 388.044006 3.490000
17 | 399.935028 3.400000
18 | 412.031006 3.240000
19 | 419.985992 3.290000
20 | 439.957001 3.200000
21 | 460.037018 3.130000
22 | 479.985016 3.080000
23 | 499.919006 3.030000
24 | 520.049988 3.000000
25 | 539.044006 2.950000
26 | 539.983032 2.970000
27 | 559.981995 2.940000
28 | 579.888000 2.920000
29 | 600.097046 2.900000
30 | 619.900024 2.880000
31 | 640.062012 2.870000
32 | 659.819031 2.850000
33 | 680.088013 2.840000
34 | 700.056030 2.830000
35 | 719.976990 2.820000
36 | 740.179016 2.810000
37 | 760.147034 2.810000
38 | 779.747986 2.800000
39 | 799.871033 2.790000
40 | 819.974060 2.790000
41 | 839.973083 2.780000
42 | 859.778015 2.780000
43 | 879.915039 2.770000
44 | 899.709961 2.770000
45 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/TiO2_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for tetragonal TiO2, ordinary ray
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 305.972015 1.950000
12 | 317.979004 2.180000
13 | 334.990997 0.788000
14 | 344.007019 0.000000
15 | 359.988007 0.251000
16 | 388.044006 0.000000
17 | 399.935028 0.000000
18 | 412.031006 0.022000
19 | 419.985992 0.000000
20 | 439.957001 0.000000
21 | 460.037018 0.000000
22 | 479.985016 0.000000
23 | 499.919006 0.000000
24 | 520.049988 0.000000
25 | 539.044006 0.000000
26 | 539.983032 0.000000
27 | 559.981995 0.000000
28 | 579.888000 0.000000
29 | 600.097046 0.000000
30 | 619.900024 0.000000
31 | 640.062012 0.000000
32 | 659.819031 0.000000
33 | 680.088013 0.000000
34 | 700.056030 0.000000
35 | 719.976990 0.000000
36 | 740.179016 0.000000
37 | 760.147034 0.000000
38 | 779.747986 0.000000
39 | 799.871033 0.000000
40 | 819.974060 0.000000
41 | 839.973083 0.000000
42 | 859.778015 0.000000
43 | 879.915039 0.000000
44 | 899.709961 0.000000
45 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VC.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VC
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  VC_llnl_cxro + VC_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.470000
11 | 354.229004 2.590000
12 | 413.266998 2.770000
13 | 495.920013 2.840000
14 | 619.900024 3.010000
15 | 826.533020 3.370000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VC.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VC
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  VC_llnl_cxro + VC_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.150000
11 | 354.229004 2.120000
12 | 413.266998 2.160000
13 | 495.920013 2.210000
14 | 619.900024 2.510000
15 | 826.533020 2.880000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VC_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VC
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.470000
12 | 354.229004 2.590000
13 | 413.266998 2.770000
14 | 495.920013 2.840000
15 | 619.900024 3.010000
16 | 826.533020 3.370000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VC_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VC
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.150000
12 | 354.229004 2.120000
13 | 413.266998 2.160000
14 | 495.920013 2.210000
15 | 619.900024 2.510000
16 | 826.533020 2.880000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VN.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VN
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  VN_llnl_cxro + VN_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 2.200000
11 | 354.229004 2.180000
12 | 413.266998 2.130000
13 | 495.920013 2.170000
14 | 619.900024 2.350000
15 | 826.533020 2.730000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VN.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VN
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  VN_llnl_cxro + VN_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 309.950012 1.540000
11 | 354.229004 1.580000
12 | 413.266998 1.700000
13 | 495.920013 1.980000
14 | 619.900024 2.470000
15 | 826.533020 2.920000
16 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VN_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VN
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 2.200000
12 | 354.229004 2.180000
13 | 413.266998 2.130000
14 | 495.920013 2.170000
15 | 619.900024 2.350000
16 | 826.533020 2.730000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/VN_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for VN
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.540000
12 | 354.229004 1.580000
13 | 413.266998 1.700000
14 | 495.920013 1.980000
15 | 619.900024 2.470000
16 | 826.533020 2.920000
17 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/V_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for V
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 1.510000
12 | 309.950012 1.560000
13 | 317.897003 1.640000
14 | 326.263000 1.730000
15 | 335.081024 1.840000
16 | 344.389008 1.960000
17 | 354.229004 2.070000
18 | 364.647003 2.180000
19 | 375.696991 2.300000
20 | 387.437988 2.420000
21 | 399.935028 2.550000
22 | 413.266998 2.710000
23 | 427.516998 2.840000
24 | 442.785980 3.030000
25 | 459.185028 3.190000
26 | 476.846008 3.360000
27 | 495.920013 3.530000
28 | 516.583008 3.630000
29 | 539.044006 3.680000
30 | 563.545044 3.680000
31 | 590.381042 3.650000
32 | 619.900024 3.550000
33 | 652.526001 3.500000
34 | 688.778015 3.430000
35 | 729.294006 3.410000
36 | 774.875000 3.420000
37 | 826.533020 3.470000
38 | 885.570984 3.430000
39 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/V_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for V
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 302.389984 2.730000
12 | 309.950012 2.810000
13 | 317.897003 2.890000
14 | 326.263000 2.970000
15 | 335.081024 3.060000
16 | 344.389008 3.140000
17 | 354.229004 3.220000
18 | 364.647003 3.260000
19 | 375.696991 3.310000
20 | 387.437988 3.330000
21 | 399.935028 3.380000
22 | 413.266998 3.380000
23 | 427.516998 3.420000
24 | 442.785980 3.400000
25 | 459.185028 3.380000
26 | 476.846008 3.330000
27 | 495.920013 3.260000
28 | 516.583008 3.150000
29 | 539.044006 3.050000
30 | 563.545044 2.980000
31 | 590.381042 2.940000
32 | 619.900024 2.930000
33 | 652.526001 2.990000
34 | 688.778015 3.050000
35 | 729.294006 3.080000
36 | 774.875000 3.140000
37 | 826.533020 3.180000
38 | 885.570984 3.220000
39 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/W.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for W
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  W_llnl_cxro + W_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 2.970000
11 | 309.950012 2.950000
12 | 313.873016 2.950000
13 | 317.897003 2.960000
14 | 322.026001 2.980000
15 | 326.263000 2.990000
16 | 330.613007 3.020000
17 | 335.081024 3.050000
18 | 339.670990 3.090000
19 | 344.389008 3.130000
20 | 349.238983 3.180000
21 | 354.229004 3.240000
22 | 359.362030 3.320000
23 | 364.647003 3.390000
24 | 370.089996 3.430000
25 | 375.696991 3.450000
26 | 381.477020 3.450000
27 | 387.437988 3.430000
28 | 393.587006 3.410000
29 | 399.935028 3.390000
30 | 406.492004 3.370000
31 | 413.266998 3.350000
32 | 420.270996 3.330000
33 | 427.516998 3.320000
34 | 435.018036 3.310000
35 | 442.785980 3.300000
36 | 450.835999 3.310000
37 | 459.185028 3.310000
38 | 467.849030 3.320000
39 | 476.846008 3.340000
40 | 486.196014 3.350000
41 | 495.920013 3.380000
42 | 506.041016 3.420000
43 | 516.583008 3.450000
44 | 527.575012 3.480000
45 | 539.044006 3.500000
46 | 551.022034 3.500000
47 | 563.545044 3.490000
48 | 576.651001 3.510000
49 | 590.381042 3.540000
50 | 604.781006 3.570000
51 | 619.900024 3.600000
52 | 635.795044 3.650000
53 | 652.526001 3.700000
54 | 670.162048 3.760000
55 | 688.778015 3.820000
56 | 708.456970 3.850000
57 | 729.294006 3.840000
58 | 751.393982 3.780000
59 | 774.875000 3.670000
60 | 799.871033 3.560000
61 | 826.533020 3.480000
62 | 855.033997 3.380000
63 | 885.570984 3.290000
64 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/W.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for W
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  W_llnl_cxro + W_palik
 7 | # ;
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 302.389984 2.370000
11 | 309.950012 2.430000
12 | 313.873016 2.460000
13 | 317.897003 2.500000
14 | 322.026001 2.530000
15 | 326.263000 2.560000
16 | 330.613007 2.600000
17 | 335.081024 2.620000
18 | 339.670990 2.650000
19 | 344.389008 2.670000
20 | 349.238983 2.690000
21 | 354.229004 2.700000
22 | 359.362030 2.700000
23 | 364.647003 2.660000
24 | 370.089996 2.600000
25 | 375.696991 2.550000
26 | 381.477020 2.490000
27 | 387.437988 2.450000
28 | 393.587006 2.430000
29 | 399.935028 2.410000
30 | 406.492004 2.420000
31 | 413.266998 2.420000
32 | 420.270996 2.430000
33 | 427.516998 2.450000
34 | 435.018036 2.470000
35 | 442.785980 2.490000
36 | 450.835999 2.530000
37 | 459.185028 2.550000
38 | 467.849030 2.590000
39 | 476.846008 2.620000
40 | 486.196014 2.640000
41 | 495.920013 2.680000
42 | 506.041016 2.710000
43 | 516.583008 2.720000
44 | 527.575012 2.720000
45 | 539.044006 2.720000
46 | 551.022034 2.730000
47 | 563.545044 2.750000
48 | 576.651001 2.810000
49 | 590.381042 2.840000
50 | 604.781006 2.860000
51 | 619.900024 2.890000
52 | 635.795044 2.920000
53 | 652.526001 2.940000
54 | 670.162048 2.950000
55 | 688.778015 2.910000
56 | 708.456970 2.860000
57 | 729.294006 2.780000
58 | 751.393982 2.720000
59 | 774.875000 2.680000
60 | 799.871033 2.730000
61 | 826.533020 2.790000
62 | 855.033997 2.850000
63 | 885.570984 2.960000
64 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-C.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for amorphous carbon
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  a-C_llnl_cxro + a-C_windt88 + a-C_palik
 7 | # ;  
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.840000
12 | 326.263000 1.900000
13 | 344.389008 1.940000
14 | 364.647003 2.000000
15 | 387.437988 2.060000
16 | 413.266998 2.110000
17 | 442.785980 2.170000
18 | 476.846008 2.240000
19 | 516.583008 2.300000
20 | 563.545044 2.380000
21 | 619.900024 2.430000
22 | 688.778015 2.430000
23 | 774.875000 2.330000
24 | 885.570984 2.240000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-C.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for amorphous carbon
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  a-C_llnl_cxro + a-C_windt88 + a-C_palik
 7 | # ;  
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.808000
12 | 326.263000 0.910000
13 | 344.389008 0.920000
14 | 364.647003 0.920000
15 | 387.437988 0.910000
16 | 413.266998 0.900000
17 | 442.785980 0.890000
18 | 476.846008 0.880000
19 | 516.583008 0.870000
20 | 563.545044 0.820000
21 | 619.900024 0.750000
22 | 688.778015 0.700000
23 | 774.875000 0.710000
24 | 885.570984 0.800000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-C_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for arc-evaporated carbon
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 1.840000
12 | 326.263000 1.900000
13 | 344.389008 1.940000
14 | 364.647003 2.000000
15 | 387.437988 2.060000
16 | 413.266998 2.110000
17 | 442.785980 2.170000
18 | 476.846008 2.240000
19 | 516.583008 2.300000
20 | 563.545044 2.380000
21 | 619.900024 2.430000
22 | 688.778015 2.430000
23 | 774.875000 2.330000
24 | 885.570984 2.240000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-C_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for arc-evaporated carbon
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids II', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1991.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 309.950012 0.808000
12 | 326.263000 0.910000
13 | 344.389008 0.920000
14 | 364.647003 0.920000
15 | 387.437988 0.910000
16 | 413.266998 0.900000
17 | 442.785980 0.890000
18 | 476.846008 0.880000
19 | 516.583008 0.870000
20 | 563.545044 0.820000
21 | 619.900024 0.750000
22 | 688.778015 0.700000
23 | 774.875000 0.710000
24 | 885.570984 0.800000
25 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-SiH.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for a-Si:H, amorphous glow-discharge Si onto
 3 | # ;  400 C substrates, ~4 at.% H
 4 | # ; 
 5 | # ;   taken from:
 6 | # ;
 7 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 8 | # ;   Academic Press, Inc., 1985.
 9 | # ;   
10 | # ;    Lambda (A)            n            k
11 | # ;-----------------------------------------
12 | 309.950012 3.360000
13 | 354.229004 4.590000
14 | 413.266998 5.430000
15 | 495.920013 5.250000
16 | 619.900024 4.710000
17 | 826.533020 4.130000
18 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-SiH.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for a-Si:H, amorphous glow-discharge Si onto
 3 | # ;  400 C substrates, ~4 at.% H
 4 | # ; 
 5 | # ;   taken from:
 6 | # ;
 7 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 8 | # ;   Academic Press, Inc., 1985.
 9 | # ;   
10 | # ;    Lambda (A)            n            k
11 | # ;-----------------------------------------
12 | 309.950012 3.920000
13 | 354.229004 3.380000
14 | 413.266998 2.190000
15 | 495.920013 0.992000
16 | 619.900024 0.217000
17 | 826.533020 0.000000
18 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-SiH_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for a-Si:H, amorphous glow-discharge Si onto
 3 | # ;  400 C substrates, ~4 at.% H
 4 | # ; 
 5 | # ;   taken from:
 6 | # ;
 7 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 8 | # ;   Academic Press, Inc., 1985.
 9 | # ;   
10 | # ;    Lambda (A)            n            k
11 | # ;-----------------------------------------
12 | 309.950012 3.360000
13 | 354.229004 4.590000
14 | 413.266998 5.430000
15 | 495.920013 5.250000
16 | 619.900024 4.710000
17 | 826.533020 4.130000
18 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/a-SiH_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for a-Si:H, amorphous glow-discharge Si onto
 3 | # ;  400 C substrates, ~4 at.% H
 4 | # ; 
 5 | # ;   taken from:
 6 | # ;
 7 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 8 | # ;   Academic Press, Inc., 1985.
 9 | # ;   
10 | # ;    Lambda (A)            n            k
11 | # ;-----------------------------------------
12 | 309.950012 3.920000
13 | 354.229004 3.380000
14 | 413.266998 2.190000
15 | 495.920013 0.992000
16 | 619.900024 0.217000
17 | 826.533020 0.000000
18 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/d-C.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for diamond
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  d-C_llnl_cxro + d-C_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 346.700012 2.495400
11 | 361.037018 2.485400
12 | 404.634003 2.462600
13 | 467.795990 2.440800
14 | 486.120026 2.435400
15 | 508.552002 2.430600
16 | 546.047058 2.423500
17 | 588.979004 2.417500
18 | 643.818054 2.411100
19 | 656.257019 2.410400
20 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/d-C.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for diamond
 3 | # ;  
 4 | # ;  Concatenation of:
 5 | # ;
 6 | # ;  d-C_llnl_cxro + d-C_palik
 7 | # ;   
 8 | # ;    Lambda (A)            n            k
 9 | # ;-----------------------------------------
10 | 346.700012 0.000000
11 | 361.037018 0.000000
12 | 404.634003 0.000000
13 | 467.795990 0.000000
14 | 486.120026 0.000000
15 | 508.552002 0.000000
16 | 546.047058 0.000000
17 | 588.979004 0.000000
18 | 643.818054 0.000000
19 | 656.257019 0.000000
20 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/d-C_palik.eta.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic diamond
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 346.700012 2.495400
12 | 361.037018 2.485400
13 | 404.634003 2.462600
14 | 467.795990 2.440800
15 | 486.120026 2.435400
16 | 508.552002 2.430600
17 | 546.047058 2.423500
18 | 588.979004 2.417500
19 | 643.818054 2.411100
20 | 656.257019 2.410400
21 | 


--------------------------------------------------------------------------------
/web/scenes/spds/metals/d-C_palik.k.spd:
--------------------------------------------------------------------------------
 1 | # data from www.luxpop.com database
 2 | # ;  Optical constants for cubic diamond
 3 | # ; 
 4 | # ;   taken from:
 5 | # ;
 6 | # ;   'Handbook of Optical Constants of Solids', Ed. by Edward D. Palik,
 7 | # ;   Academic Press, Inc., 1985.
 8 | # ;   
 9 | # ;    Lambda (A)            n            k
10 | # ;-----------------------------------------
11 | 346.700012 0.000000
12 | 361.037018 0.000000
13 | 404.634003 0.000000
14 | 467.795990 0.000000
15 | 486.120026 0.000000
16 | 508.552002 0.000000
17 | 546.047058 0.000000
18 | 588.979004 0.000000
19 | 643.818054 0.000000
20 | 656.257019 0.000000
21 | 


--------------------------------------------------------------------------------
/web/scenes/spotfog.pbrt:
--------------------------------------------------------------------------------
 1 | Film "image"
 2 |  "integer xresolution" [400] "integer yresolution" [250]
 3 |   "string filename" "spotfog.exr" 
 4 | 
 5 | #Sampler "bestcandidate" "integer pixelsamples" [32]
 6 | #PixelFilter "gaussian"
 7 | 
 8 | Rotate 5 1 0 0 
 9 | Camera "perspective" "float fov" [70]
10 | VolumeIntegrator "single" "float stepsize" [.5]
11 | 
12 | WorldBegin
13 | Translate -1 -1 3
14 | 
15 | Volume "homogeneous"
16 | 	"color sigma_a" [.05 .05 .05 ]
17 | 	"color sigma_s" [.1 .1 .1]
18 | 	"point p0" [ -10 0 -5 ] "point p1" [ 5 5 5]
19 | 
20 | AttributeBegin
21 | LightSource "spot" "point from" [-3 6 -2 ] "point to" [0 2 0 ]
22 | 	"color I" [2500 2500 2500 ] "float coneangle" [16]
23 | AttributeEnd
24 | 
25 | AttributeBegin
26 | Material "matte" "color Kd" [.07 .07 .07]
27 | Translate 0 2 -.3
28 | Shape "sphere" "float radius" [.5]
29 | AttributeEnd
30 | 
31 | Material "matte" "color Kd" [.6 .6 .9 ]
32 | Shape "trianglemesh" "integer indices" [0 1 2 2 3 0]
33 | 	"point P" [ -5 0 -5  5 0 -5  5 0 5  -5 0 5]
34 | Shape "trianglemesh" "integer indices" [0 1 2 2 3 0]
35 | 	"point P" [ -5 0 3  5 0 3   5 10 3  -5 10 3 ]
36 | Shape "trianglemesh" "integer indices" [0 1 2 2 3 0]
37 | 	"point P" [ 5 0 3   5 0 -3  5 10 -3  5 10 3]
38 | 
39 | WorldEnd
40 | 


--------------------------------------------------------------------------------
/web/scenes/teapot-metal.pbrt:
--------------------------------------------------------------------------------
 1 | 
 2 | LookAt 18 5.5 2    15.5 .9 10   0 1 0
 3 | Camera "perspective" "float fov" [40]
 4 | 
 5 | Sampler "lowdiscrepancy" "integer pixelsamples" [4]
 6 | PixelFilter "box"
 7 | 
 8 | Film "image" "integer xresolution" [400] "integer yresolution" [400]
 9 |     "string filename" "teapot-metal.exr"
10 | 
11 | Renderer "metropolis" "integer samplesperpixel" [32] 
12 |     "bool dodirectseparately" ["true"] "integer directsamples" [16]
13 | 
14 | WorldBegin
15 | 
16 | # lights
17 | AttributeBegin
18 | #Rotate -90 1 0 0 
19 |     LightSource "infinite" "integer nsamples" [16] "color L" [1 1 1]
20 |         "string mapname" ["textures/glacier_latlong.exr"]
21 |         #"string mapname" ["textures/uffizi_latlong.exr"]
22 |         #"string mapname" ["textures/skylight-sunset.exr"]
23 | AttributeEnd
24 | 
25 | #floor
26 | Texture "tmap" "color" "imagemap" "string filename" "textures/buildingblock.exr"
27 | 	"float uscale" 60 "float vscale" 60
28 | Texture "tbump-tex" "float" "imagemap" "string filename" "textures/buildingblock.exr"
29 | 	"float uscale" 60 "float vscale" 60
30 | Texture "sbump" "float" "scale" "texture tex1" "tbump-tex"
31 | 	"float  tex2" [-.25]
32 | Material "substrate" "texture Kd" "tmap" 
33 | 	 "color Ks" [.5 .5 .5] "float uroughness" [.05]
34 | 	"float vroughness" [.05]
35 | 	"texture bumpmap" "sbump" 
36 | Shape "trianglemesh" "integer indices" [0 1 2 0 3 2 ]
37 |     "point P" [ -100 0 -100  100 0 -100   100 0 100   -100 0 100 ]
38 | 
39 | AttributeBegin
40 | Material "metal"  "float roughness" [.001]
41 |     "spectrum eta" "spds/metals/Au.eta.spd"
42 |     "spectrum k" "spds/metals/Au.k.spd"
43 | 
44 | Translate 15 0 10
45 | Scale 1.25 1.25 1.25
46 | Include "geometry/room-teapot.pbrt.gz"
47 | AttributeEnd
48 | 
49 | WorldEnd
50 | 


--------------------------------------------------------------------------------
/web/scenes/textures/buildingblock.exr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/textures/buildingblock.exr


--------------------------------------------------------------------------------
/web/scenes/textures/glacier_latlong.exr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/textures/glacier_latlong.exr


--------------------------------------------------------------------------------
/web/scenes/textures/grid.exr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/textures/grid.exr


--------------------------------------------------------------------------------
/web/scenes/textures/lines.exr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/textures/lines.exr


--------------------------------------------------------------------------------
/web/scenes/textures/skylight-day.exr:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/brendan-duncan/dartray/81de3aa042a395abff17b518a1650f77b07dc528/web/scenes/textures/skylight-day.exr


--------------------------------------------------------------------------------