mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
fixing temperatures setting for mgxs (#3712)
This commit is contained in:
parent
830f075b5c
commit
dfc80c7069
1 changed files with 2 additions and 1 deletions
|
|
@ -484,7 +484,8 @@ class XSdata:
|
|||
|
||||
check_type('temperature', temperature, Real)
|
||||
|
||||
temp_store = self.temperatures.tolist().append(temperature)
|
||||
temp_store = self.temperatures.tolist()
|
||||
temp_store.append(temperature)
|
||||
self.temperatures = temp_store
|
||||
|
||||
self._total.append(None)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue