Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/FSIBT/PyMCNP
Browse files Browse the repository at this point in the history
  • Loading branch information
Mauricio Ayllon Unzueta committed Nov 15, 2024
2 parents b499005 + 9c89af9 commit 2c643cd
Show file tree
Hide file tree
Showing 22 changed files with 2,186 additions and 2,329 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed
- refactored code, e.g. datum.py
- added __str__ and __repr__ method to different classes to make it
easier to work on the command line with these objects

### Added
- more tests for parsing input files
- set_seed function
- set_nps function
- code examples
- parsing of more output data

## [0.2.0] - 2024-10-27

### Fixed
Expand Down
5 changes: 4 additions & 1 deletion src/pymcnp/files/inp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .cell import Cell
from .cell import Cell, CellKeyword, CellGeometry, CellOption
from .surface import Surface
from .surface import PlaneGeneralPoint
from .surface import PlaneGeneralEquation
Expand Down Expand Up @@ -99,6 +99,9 @@

__all__ = [
'Cell',
'CellKeyword',
'CellGeometry',
'CellOption',
'Surface',
'PlaneGeneralPoint',
'PlaneGeneralEquation',
Expand Down
Loading

0 comments on commit 2c643cd

Please sign in to comment.