Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

fdsreader Module, DEVC data and meta information

Open
#50 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
1/5
Estimated time
Under an hour
Newbie friendliness
50/100
Issue type
Bug
Clarity
Clearly specified
Activity status
Stale
Tech stack
python
Domain
documentation

Research direction

Open book/content/tools/03_analysis/02_fdsreader.ipynb and inspect the fdsreader Module section. Run the shown DEVC loop with fdsreader 1.2.1 to reproduce the AttributeError, then verify the corrected metadata expression produces the intended quantity information without an error.

Written by the indexing model from the issue text.

Description

In the section fdsreader Module, I get the following error message with fdsreader 1.2.1

---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-43-88618739c2ea> in <module>
      1 for i in devc:
----> 2     print(f"ID: {devc[i].id},\t quantity: {devc[i].quantity.quantity},\t position: {devc[i].position}")

AttributeError: 'Quantity' object has no attribute 'quantity'

for

for i in devc:
    print(f"ID: {devc[i].id},\t quantity: {devc[i].quantity.quantity},\t position: {devc[i].position}")

Shouldn't it be?

for i in devc:
    print(f"ID: {devc[i].id},\t quantity: {devc[i].quantity.name},\t position: {devc[i].position}")
Dominant language
Jupyter Notebook
Stars
33
Forks
9
PR merge metrics
No merged PRs in 30d

Getting set up

We have not checked this project's setup files yet. Start from its README, and see our first-contribution guide for the general steps.

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from FireDynamics/LectureFireSimulation

All issues in FireDynamics/LectureFireSimulation

Similar issues

More Documentation issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.