Skip to content

2 mistakes in cffdrs python code #8

@SDupire

Description

@SDupire

Hello,

I noticed 2 mistakes in the fwi.py scripts :

  1. In DMC function :

line 164 :
temp = -1.1 if (temp < 1.1) else temp

should be :
temp = -1.1 if (temp < -1.1) else temp

  1. In DC function :
    line 257
    temp = -2.8 if (temp < 2.8) else temp

should be:
temp = -2.8 if (temp < -2.8) else temp

With regards

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions