Changeset 4faf4ba in sasview


Ignore:
Timestamp:
Aug 19, 2009 12:13:50 AM (15 years ago)
Author:
Gervaise Alina <gervyh@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
191b369
Parents:
27953d1
Message:

sld calculator implemented using elements package

Location:
sansview
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • sansview/doc/glossaryhelp.html

    r997b620 r4faf4ba  
    1212<li><a href="save_data_help.html">Save data</a></li> 
    1313<li><a href="model_use_help.html">visualize model</a></li> 
     14<li><a href="sld_calculator_help.html">SLD Calculator</a></li> 
    1415<li><a href ="doc/averaging_help.html">Data Averaging</a><br></li> 
    1516</ul> 
  • sansview/perspectives/fitting/fitting.py

    r1b001a7 r4faf4ba  
    2626from sans.fit.AbstractFitEngine import Model 
    2727from sans.fit.AbstractFitEngine import FitAbort 
     28 
    2829 
    2930from fitproblem import FitProblem 
     
    126127             
    127128        self.menu1.AppendSeparator() 
    128          
    129129        id1 = wx.NewId() 
    130130        simul_help = "Allow to edit fit engine with multiple model and data" 
    131131        self.menu1.Append(id1, '&Simultaneous Page',simul_help) 
    132132        wx.EVT_MENU(owner, id1, self.on_add_sim_page) 
     133        #menu for SLD Calculator 
     134        self.menu1.AppendSeparator() 
     135        sld_menu = wx.Menu() 
     136        sld_id = wx.NewId() 
     137        sld_help= "Compute the scattering length density of molecules" 
     138        self.menu1.Append(sld_id, "SLD Calculator",sld_help) 
     139        wx.EVT_MENU(owner,sld_id,  self.onCalculateSld) 
    133140     
    134141        #menu for model 
    135142        menu2 = wx.Menu() 
    136      
    137143        self.menu_mng.populate_menu(menu2, owner) 
    138144        id2 = wx.NewId() 
     
    516522            return  
    517523            
    518             
    519             
     524    def onCalculateSld(self, event): 
     525        """ 
     526            Compute the scattering length density of molecula 
     527        """   
     528        from sldPanel import SldWindow 
     529        frame = SldWindow(base=self.parent) 
     530        frame.Show(True)  
     531       
     532           
    520533    def _onEVT_SLICER_PANEL(self, event): 
    521534        """ 
  • sansview/perspectives/fitting/helpPanel.py

    r6fb01b6 r4faf4ba  
    5959 
    6060class HelpWindow(wx.Frame): 
    61     def __init__(self, parent, id, title): 
     61    def __init__(self, parent, id, title= 'HelpWindow', pageToOpen=None): 
    6262        wx.Frame.__init__(self, parent, id, title, size=(700, 450)) 
    6363        """ 
     
    118118            <li><a href ="doc/model_use_help.html" target ="showframe">Visualize Model</a><br></li> 
    119119            <li><a href ="doc/averaging_help.html" target ="showframe">Data Averaging</a><br></li> 
     120            <li><a href ="doc/sld_calculator_help.html" target ="showframe">SLD Calculator</a><br></li> 
    120121            <li><a href ="doc/model_functions.html" target ="showframe">Model Functions</a><br></li> 
    121122            </ul> 
     
    126127        self.lhelp.Bind(wx.html.EVT_HTML_LINK_CLICKED,self.OnLinkClicked ) 
    127128         
    128         #'HelpWindow' from menu bar, title=model name from 'More Details' button in model penal 
    129         if title != 'HelpWindow': 
    130             self.rhelp.LoadPage("doc/model_functions.html") 
     129        #open the help frame a the current page 
     130        if  pageToOpen!= None: 
     131            self.rhelp.LoadPage(str( pageToOpen)) 
    131132             
    132133        vbox.Add(self.rhelp,1, wx.EXPAND) 
  • sansview/perspectives/fitting/model_thread.py

    rcad821b r4faf4ba  
    122122         
    123123        ######Temp. FIX for Qrange w/ smear. #ToDo: Should not pass all the data to 'run' or 'smear'... 
    124         new_index = (self.qmin > self.x) |(self.x > self.qmax) 
    125         output[new_index] = None 
     124        #new_index = (self.qmin > self.x) |(self.x > self.qmax) 
     125        #output[new_index] = None 
    126126                 
    127127        elapsed = time.time()-self.starttime 
  • sansview/perspectives/fitting/modelpage.py

    r58c6ba6 r4faf4ba  
    433433        else: 
    434434            name = self.model.name 
    435         frame = HelpWindow(None, -1, name)     
     435        frame = HelpWindow(None, -1,  pageToOpen="doc/model_functions.html")     
    436436        frame.Show(True) 
    437437        if frame.rhelp.HasAnchor(name): 
  • sansview/perspectives/fitting/sldPanel.py

    r785c8233 r4faf4ba  
     1""" 
     2    This module intends to compute the neutron scattering length density of molecule 
     3    @author: Gervaise B. Alina 
     4""" 
     5 
    16import wx 
     7import sys 
     8 
     9import periodictable 
     10from periodictable import formula 
     11from periodictable.xsf import xray_energy, xray_sld_from_atoms 
     12from periodictable.constants import avogadro_number 
     13import periodictable.nsf 
     14neutron_sld_from_atoms= periodictable.nsf.neutron_sld_from_atoms  
     15 
     16from sans.guiframe.utils import format_number, check_float 
     17from sans.guicomm.events import StatusEvent   
     18 
     19 
    220_BOX_WIDTH = 76 
    321_STATICBOX_WIDTH = 350 
     22_SCALE = 1e-6 
     23_DEFAULT_WAVELENGTH = 1.798 
     24 
    425 
    526class SldPanel(wx.Panel): 
    6     def __init__(self, parent, id = -1): 
     27    """ 
     28        Provides the SLD calculator GUI. 
     29    """ 
     30    def __init__(self, parent,base=None, id = -1): 
    731        wx.Panel.__init__(self, parent, id = id) 
    8          
     32        # Object that receive status event 
     33        self.base= base 
    934        self._do_layout() 
    1035        self.SetAutoLayout(True) 
     
    96121        self.neutron_inc_ctl.SetEditable(False) 
    97122        self.neutron_inc_ctl.SetToolTipString("Neutron Inc. Xs") 
     123        neutron_inc_units_txt = wx.StaticText(self, -1,  unit_cm1) 
    98124         
    99125        neutron_abs_txt = wx.StaticText(self, -1, 'Neutron Abs. Xs') 
     
    101127        self.neutron_abs_ctl.SetEditable(False) 
    102128        self.neutron_abs_ctl.SetToolTipString("Neutron Abs. Xs") 
     129        neutron_abs_units_txt = wx.StaticText(self, -1,  unit_cm1) 
    103130         
    104131        neutron_length_txt = wx.StaticText(self, -1, 'Neutron 1/e length') 
     
    106133        self.neutron_length_ctl.SetEditable(False) 
    107134        self.neutron_length_ctl.SetToolTipString("Neutron 1/e length") 
     135        neutron_length_units_txt = wx.StaticText(self, -1,  unit_cm) 
    108136        iy = 0 
    109137        ix = 0 
     
    161189        sizer_output.Add(self.neutron_inc_ctl,(iy, ix),(1,1), 
    162190                            wx.EXPAND|wx.ADJUST_MINSIZE, 0)  
     191        ix +=2 
     192        sizer_output.Add(neutron_inc_units_txt,(iy, ix),(1,1), 
     193                            wx.EXPAND|wx.ADJUST_MINSIZE, 0)  
    163194        iy += 1 
    164195        ix = 0 
     
    168199        sizer_output.Add(self.neutron_abs_ctl,(iy, ix),(1,1), 
    169200                            wx.EXPAND|wx.ADJUST_MINSIZE, 0)  
     201        ix +=2 
     202        sizer_output.Add(neutron_abs_units_txt,(iy, ix),(1,1), 
     203                            wx.EXPAND|wx.ADJUST_MINSIZE, 0)  
    170204        iy += 1 
    171205        ix = 0 
     
    174208        ix +=1 
    175209        sizer_output.Add(self.neutron_length_ctl,(iy, ix),(1,1), 
    176                             wx.EXPAND|wx.ADJUST_MINSIZE, 0)  
     210                            wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     211        ix +=2 
     212        sizer_output.Add(neutron_length_units_txt,(iy, ix),(1,1), 
     213                            wx.EXPAND|wx.ADJUST_MINSIZE, 0)   
    177214        boxsizer2.Add( sizer_output ) 
    178215        sizer2.Add(boxsizer2,0, wx.EXPAND | wx.ALL, 10) 
    179216        #-----Button  sizer------------ 
    180217        id = wx.NewId() 
     218        button_help = wx.Button(self, id, "Help") 
     219        button_help.SetToolTipString("Help  SlD calculations and formula.") 
     220        self.Bind(wx.EVT_BUTTON, self.onHelp, id = id)   
     221          
     222        id = wx.NewId() 
    181223        button_calculate = wx.Button(self, id, "Calculate") 
    182224        button_calculate.SetToolTipString("Calculate SlD of neutrons.") 
    183         #self.Bind(wx.EVT_BUTTON, self._calculateSld, id = id)    
    184         sizer_button.Add((20, 20), 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
    185         sizer_button.Add(button_calculate, 0, wx.RIGHT|wx.ADJUST_MINSIZE, 10) 
     225        self.Bind(wx.EVT_BUTTON, self.calculateSld, id = id)    
     226         
     227        sizer_button.Add((200, 20), 1, wx.EXPAND|wx.ADJUST_MINSIZE, 0) 
     228        sizer_button.Add(button_help, 0, wx.RIGHT|wx.ADJUST_MINSIZE,10) 
     229        sizer_button.Add(button_calculate, 0, wx.RIGHT|wx.ADJUST_MINSIZE,20) 
    186230        sizer3.Add(sizer_button) 
    187231        #---------layout---------------- 
     
    194238        self.SetSizer(vbox) 
    195239         
    196          
     240    def check_inputs(self): 
     241        """Check validity user inputs""" 
     242        flag= True 
     243        
     244        if check_float(self.density_ctl): 
     245            self.density = float(self.density_ctl.GetValue()) 
     246        else: 
     247            flag=False 
     248            raise ValueError,"Error for Density value :expect float" 
     249     
     250        self.wavelength= self.wavelength_ctl.GetValue() 
     251        if self.wavelength.lstrip().rstrip()=="": 
     252            self.wavelength = _DEFAULT_WAVELENGTH 
     253        else: 
     254            if check_float(self.wavelength_ctl): 
     255                self.wavelength= float(self.wavelength) 
     256            else: 
     257                flag = False 
     258                raise ValueError,"Error for wavelenth value :expect float" 
     259                 
     260        self.formulata_text= self.compound_ctl.GetValue().lstrip().rstrip() 
     261        if self.formulata_text!="": 
     262            self.compound_ctl.SetBackgroundColour(wx.WHITE) 
     263            self.compound_ctl.Refresh() 
     264        else: 
     265            self.compound_ctl.SetBackgroundColour("pink") 
     266            self.compound_ctl.Refresh() 
     267            flag=False 
     268            raise ValueError, "Enter a formula" 
     269        return flag  
     270         
     271    def onHelp(self, event): 
     272        """ 
     273            provide more hint on the SLD calculator 
     274        """ 
     275        from helpPanel import  HelpWindow 
     276        frame = HelpWindow(None, -1, pageToOpen="doc/sld_calculator_help.html")     
     277        frame.Show(True) 
     278        name = "SLD_calculator" 
     279        if frame.rhelp.HasAnchor(name): 
     280            frame.rhelp.ScrollToAnchor(name) 
     281        else: 
     282           msg= "Cannot find SLD Calculator description " 
     283           msg +="Please.Search in the Help window" 
     284           wx.PostEvent(self.base, StatusEvent(status = msg ))   
     285            
     286            
     287    def calculateSld(self, event): 
     288        """ 
     289            Calculate the neutron scattering density length of a molecule 
     290        """ 
     291        try: 
     292            #Check validity user inputs 
     293            if self.check_inputs(): 
     294                #get ready to compute 
     295                try: 
     296                    self.new_formula = formula(self.formulata_text, density= self.density) 
     297                    atom = self.new_formula.atoms 
     298                except: 
     299                    if self.base !=None: 
     300                        msg= "SLD Calculator: %s" % (sys.exc_value) 
     301                        wx.PostEvent(self.base, StatusEvent(status= msg )) 
     302                    else: 
     303                        raise 
     304                    return 
     305                # Compute the Cu SLD 
     306                Cu_reel, Cu_im = self.calculateXRaySld( "Cu", density= self.density, 
     307                                                        user_formula= self.new_formula) 
     308                self.cu_ka_sld_reel_ctl.SetValue(format_number(Cu_reel*_SCALE)) 
     309                self.cu_ka_sld_im_ctl.SetValue(format_number(Cu_im*_SCALE)) 
     310                # Compute the Mo SLD 
     311                Mo_reel, Mo_im = self.calculateXRaySld( "Mo", density= self.density, 
     312                                                        user_formula= self.new_formula) 
     313                self.mo_ka_sld_reel_ctl.SetValue(format_number(Mo_reel*_SCALE)) 
     314                self.mo_ka_sld_im_ctl.SetValue(format_number(Mo_im*_SCALE)) 
     315                
     316                coh,absorp,inc= self.calculateNSld(self.density, wavelength= self.wavelength, 
     317                                                     user_formula= self.new_formula) 
     318                #Don't know if value is return in cm or  cm^(-1).assume return in cm 
     319                # to match result of neutron inc of Alan calculator 
     320                inc= inc*1/10 
     321                #Doesn't match result of Alan calculator for absorption factor of 2 
     322                #multiplication of 100 is going around 
     323                absorp= absorp *2*100 
     324                volume= (self.new_formula.mass /self.density)/avogadro_number*1.0e24 
     325                #im: imaginary part of neutron SLD 
     326                im=0 
     327                for el, count in atom.iteritems(): 
     328                    if el.neutron.b_c_i !=None: 
     329                        im += el.neutron.b_c_i*count  
     330                im = im/volume 
     331                 
     332                self.neutron_sld_reel_ctl.SetValue(format_number(coh*_SCALE)) 
     333                self.neutron_sld_im_ctl.SetValue(format_number(im*_SCALE)) 
     334                self.neutron_inc_ctl.SetValue(format_number(inc )) 
     335                self.neutron_abs_ctl.SetValue(format_number(absorp)) 
     336                #Don't know if value is return in cm or  cm^(-1).assume return in cm 
     337                # to match result of neutron inc of Alan calculator 
     338                length= (coh+ absorp+ inc)/volume 
     339                self.neutron_length_ctl.SetValue(format_number(length)) 
     340        except: 
     341            if self.base !=None: 
     342                  msg= "SLD Calculator: %s" % (sys.exc_value) 
     343                  wx.PostEvent(self.base, StatusEvent(status= msg )) 
     344            else: 
     345                raise 
     346            return    
     347 
     348    def calculateXRaySld(self, element, density,user_formula): 
     349        """ 
     350            Get an element and compute the corresponding SLD for a given formula 
     351            @param element:  elementis a string of existing atom 
     352            @param formula: molecule enters by the user 
     353        """ 
     354        try: 
     355            myformula = formula(str (element)) 
     356            if len(myformula.atoms)!=1: 
     357                return  
     358            element= myformula.atoms.keys()[0]  
     359            energy = xray_energy(element.K_alpha) 
     360            atom = user_formula.atoms 
     361            atom_reel, atom_im = xray_sld_from_atoms( atom, 
     362                                                  density=density, 
     363                                                  energy= energy ) 
     364            return atom_reel, atom_im 
     365        except: 
     366            if self.base !=None: 
     367                  msg= "SLD Calculator: %s" % (sys.exc_value) 
     368                  wx.PostEvent(self.base, StatusEvent(status= msg )) 
     369            else: 
     370                raise 
     371            return    
     372         
     373    def calculateNSld(self,density,wavelength,user_formula ): 
     374        """ 
     375            Compute the neutron SLD for a given molecule 
     376            @return absorp: absorption 
     377            @return coh: coherence cross section 
     378            @return inc: incoherence cross section 
     379           
     380        """ 
     381        if density ==0: 
     382            raise ZeroDivisionError,"integer division or modulo by zero for density" 
     383            return  
     384        atom = user_formula.atoms 
     385        coh,absorp,inc = neutron_sld_from_atoms(atom,density,wavelength) 
     386 
     387        return coh,absorp,inc 
     388     
     389    
     390  
     391         
     392                
    197393class SldWindow(wx.Frame): 
    198     def __init__(self, parent, id, title): 
     394    def __init__(self, parent=None, id=1, title="SLD Calculator",base=None): 
    199395        wx.Frame.__init__(self, parent, id, title, size=(400, 400)) 
    200396         
    201         self.panel = SldPanel(self) 
     397        self.panel = SldPanel(self, base=base) 
    202398        self.Centre() 
    203399        self.Show(True) 
Note: See TracChangeset for help on using the changeset viewer.