Jonas231
Jonas231
I did this on Win10: conda create --name mypython38 python=3.8 conda install -c conda-forge numpy Aus https://anaconda.org/conda-forge/numpy conda install -c conda-forge cython Aus https://anaconda.org/conda-forge/cython conda install -c conda-forge mayavi Aus...
Hi Bryan, could you describe a test please how to find out if the performance is like you know it from linux? "I've got it running on a Win10 guest...
Hi Bryan, thank you for this detailed answer. I tried your zernike_distortions_example.py. I had to install chaco first: conda install -c dbanas chaco I have a Intel(R) Core(TM) i5-8265U CPU...
Hi Bryan, somehow I cannot answer in google groups. Could you please allow me in? Regards, Jonas
[raypier_simple.txt](https://github.com/bryancole/raypier_optics/files/8900548/raypier_simple.txt)
Hi Bryan, [OpTaliX_raypier_simple.txt](https://github.com/bryancole/raypier_optics/files/8907931/OpTaliX_raypier_simple.txt) thank you. I did not see that. Okay I converted to radius of curvature and replaced inf by 1e10. I tried the Spherical Face class with radius...
Ah I found this class here https://github.com/bryancole/raypier_optics/blob/79da3d45312f66bf9bf0833f0cdd76f17ba16610/raypier/dispersion.py: class FusedSilica(BaseDispersionCurve): """ A Dispersion curve for fused silica. """ def __init__(self, absorption=0.0): formula_id=1 coefs = numpy.array([0.0, 0.6961663, 0.0684043, 0.4079426, 0.1162414, 0.8974794, 9.896161])...
Could it be done by adding a property "from_formula" to https://github.com/bryancole/raypier_optics/blob/79da3d45312f66bf9bf0833f0cdd76f17ba16610/raypier/materials.py : class OpticalMaterial(HasStrictTraits): name = Str("Part A") from_database = Bool(True) refractive_index = Float(1.0) glass_name=Enum(GlassNames) absorption=Float(0.0) dispersion_curve = Property(depends_on="glass_name, absorption,...