test_ok_5.yaml (1129B)
1 - sun: { dni: 1, spectrum: [{wavelength: 1, data: 1}] } 2 3 - material: &thin_dielectric 4 thin_dielectric: 5 thickness: 1 6 medium_i: { extinction: 0, refractive_index: 1.00027 } 7 medium_t: { extinction: 0.1, refractive_index: 1.5 } 8 9 - entity: 10 name: "entity" 11 primary: 0 12 geometry: 13 - material: *thin_dielectric 14 cylinder: { height: 1, radius: 1 } 15 --- 16 - sun: { dni: 1, spectrum: [{wavelength: 1, data: 1}] } 17 18 - material: &thin_dielectric 19 thin_dielectric: 20 thickness: 0 21 medium_i: { extinction: 0, refractive_index: 0.00027 } 22 medium_t: { extinction: 0.1, refractive_index: 1.5 } 23 24 - entity: 25 name: "entity" 26 primary: 0 27 geometry: 28 - material: *thin_dielectric 29 cylinder: { height: 1, radius: 1 } 30 31 --- 32 - sun: { dni: 1, spectrum: [{wavelength: 1, data: 1}] } 33 - entity: 34 name: "entity" 35 primary: 0 36 geometry: 37 - cylinder: { height: 1, radius: 1 } 38 material: 39 thin_dielectric: 40 thickness: 10 41 medium_i: { extinction: 0, refractive_index: 1 } 42 medium_t: { extinction: 20, refractive_index: 1.5 } 43