sample_models
    
            categories
    
            atom_sites
    Atom site category.
Defines AtomSite items and AtomSites collection used in sample models. Only documentation was added; behavior remains unchanged.
            AtomSite
    
              Bases: CategoryItem
Single atom site with fractional coordinates and ADP.
Attributes are represented by descriptors to support validation and CIF serialization.
Source code in src/easydiffraction/sample_models/categories/atom_sites.py
                23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288  |  | 
            adp_type
  
      property
      writable
  
    ADP type descriptor (e.g. 'Biso').
            b_iso
  
      property
      writable
  
    Isotropic ADP descriptor in Ų.
            fract_x
  
      property
      writable
  
    Fractional x coordinate descriptor.
            fract_y
  
      property
      writable
  
    Fractional y coordinate descriptor.
            fract_z
  
      property
      writable
  
    Fractional z coordinate descriptor.
            label
  
      property
      writable
  
    Label descriptor for the site (unique key).
            occupancy
  
      property
      writable
  
    Occupancy descriptor (0..1).
            type_symbol
  
      property
      writable
  
    Chemical symbol descriptor (e.g. 'Si').
            wyckoff_letter
  
      property
      writable
  
    Wyckoff letter descriptor (space-group position).
            AtomSites
    
              Bases: CategoryCollection
Collection of AtomSite instances.
Source code in src/easydiffraction/sample_models/categories/atom_sites.py
                291 292 293 294 295  |  | 
            cell
    Unit cell parameters category for sample models.
            Cell
    
              Bases: CategoryItem
Unit cell with lengths a, b, c and angles alpha, beta, gamma.
Source code in src/easydiffraction/sample_models/categories/cell.py
                15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157  |  | 
            angle_alpha
  
      property
      writable
  
    Descriptor for angle alpha in degrees.
            angle_beta
  
      property
      writable
  
    Descriptor for angle beta in degrees.
            angle_gamma
  
      property
      writable
  
    Descriptor for angle gamma in degrees.
            length_a
  
      property
      writable
  
    Descriptor for a-axis length in Ã….
            length_b
  
      property
      writable
  
    Descriptor for b-axis length in Ã….
            length_c
  
      property
      writable
  
    Descriptor for c-axis length in Ã….
            space_group
    Space group category for crystallographic sample models.
            SpaceGroup
    
              Bases: CategoryItem
Space group with Hermann–Mauguin symbol and IT code.
Source code in src/easydiffraction/sample_models/categories/space_group.py
                19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107  |  | 
            it_coordinate_system_code
  
      property
      writable
  
    Descriptor for IT coordinate system code.
            name_h_m
  
      property
      writable
  
    Descriptor for Hermann–Mauguin symbol.
            sample_model
    
            base
    
            SampleModelBase
    
              Bases: DatablockItem
Base sample model and container for structural information.
Holds space group, unit cell and atom-site categories. The
factory is responsible for creating rich instances from CIF;
this base accepts just the name and exposes helpers for
applying symmetry.
Source code in src/easydiffraction/sample_models/sample_model/base.py
                13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183  |  | 
            __str__()
    Human-readable representation of this component.
Source code in src/easydiffraction/sample_models/sample_model/base.py
              34 35 36 37 38 39 40 41 42 43 44 45  |  | 
            apply_symmetry_constraints()
    Apply all available symmetry constraints to this model.
Source code in src/easydiffraction/sample_models/sample_model/base.py
              151 152 153 154 155  |  | 
            atom_sites
  
      property
      writable
  
    Atom-sites collection for this model.
            cell
  
      property
      writable
  
    Unit-cell category object.
            name
  
      property
      writable
  
    Model name.
Returns:
| Type | Description | 
|---|---|
                  str
             | 
            
               The user-facing identifier for this model.  | 
          
            show_as_cif()
    Render the CIF text for this model in a terminal-friendly view.
Source code in src/easydiffraction/sample_models/sample_model/base.py
              176 177 178 179 180 181 182 183  |  | 
            show_params()
    Display structural parameters (space group, cell, atom sites).
Source code in src/easydiffraction/sample_models/sample_model/base.py
              166 167 168 169 170 171 172 173 174  |  | 
            show_structure()
    Show an ASCII projection of the structure on a 2D plane.
Source code in src/easydiffraction/sample_models/sample_model/base.py
              161 162 163 164  |  | 
            space_group
  
      property
      writable
  
    Space-group category object.
            factory
    Factory for creating sample models from simple inputs or CIF.
Supports three argument combinations: name, cif_path, or
cif_str. Returns a minimal SampleModelBase populated from CIF
when provided, or an empty model with the given name.
            SampleModelFactory
    
              Bases: FactoryBase
Create SampleModelBase instances from supported inputs.
Source code in src/easydiffraction/sample_models/sample_model/factory.py
                18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170  |  | 
            create(**kwargs)
  
      classmethod
  
    Create a model based on a validated argument combination.
Other Parameters:
| Name | Type | Description | 
|---|---|---|
name | 
            
               Name of the sample model to create.  | 
          |
cif_path | 
            
               Path to a CIF file to parse.  | 
          |
cif_str | 
            
               Raw CIF string to parse.  | 
          |
**kwargs | 
            
               Extra args are ignored if None; only the above three keys are supported.  | 
          
Returns:
| Name | Type | Description | 
|---|---|---|
SampleModelBase |             
                  SampleModelBase
             | 
            
               A populated or empty model instance.  | 
          
Source code in src/easydiffraction/sample_models/sample_model/factory.py
              27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50  |  | 
            sample_models
    
            SampleModels
    
              Bases: DatablockCollection
Collection manager for multiple SampleModel instances.
Source code in src/easydiffraction/sample_models/sample_models.py
                12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74  |  | 
            add_from_cif_path(cif_path)
    Create and add a model from a CIF file path.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                cif_path
             | 
            
                  str
             | 
            
               Path to a CIF file.  | 
            required | 
Source code in src/easydiffraction/sample_models/sample_models.py
              22 23 24 25 26 27 28 29 30  |  | 
            add_from_cif_str(cif_str)
    Create and add a model from CIF content (string).
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                cif_str
             | 
            
                  str
             | 
            
               CIF file content.  | 
            required | 
Source code in src/easydiffraction/sample_models/sample_models.py
              32 33 34 35 36 37 38 39 40  |  | 
            add_minimal(name)
    Create and add a minimal model (defaults, no atoms).
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                name
             | 
            
                  str
             | 
            
               Identifier to assign to the new model.  | 
            required | 
Source code in src/easydiffraction/sample_models/sample_models.py
              42 43 44 45 46 47 48 49 50  |  | 
            remove(name)
    Remove a sample model by its ID.
Parameters:
| Name | Type | Description | Default | 
|---|---|---|---|
                name
             | 
            
                  str
             | 
            
               ID of the model to remove.  | 
            required | 
Source code in src/easydiffraction/sample_models/sample_models.py
              52 53 54 55 56 57 58 59 60  |  | 
            show_names()
    List all model names in the collection.
Source code in src/easydiffraction/sample_models/sample_models.py
              66 67 68 69  |  | 
            show_params()
    Show parameters of all sample models in the collection.
Source code in src/easydiffraction/sample_models/sample_models.py
              71 72 73 74  |  |