Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion Cell2Fire/FuelModelKitral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -797,7 +797,6 @@ checkActive(inputs* data, main_outs* at, int FMC) // En KITRAL SE USA PL04
float ros_critical, cbd, H, wa, i0, cbh;
bool active;
cbh = data->cbh;

i0 = pow((0.01 * cbh * (460 + 25.9 * FMC)), 1.5);
H = hs[data->nftype][0];
wa = fls_david[data->nftype][0];
Expand Down
3 changes: 3 additions & 0 deletions Cell2Fire/FuelModelKitral.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@
// Initialize coefficients
void setup_const();

// Initialized raster data
void setup_crown_const(inputs* data);

// Calculate flank fire
float flankfire_ros_k(float ros, float bros, float lb);

Expand Down
2 changes: 1 addition & 1 deletion Cell2Fire/ReadCSV.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CSVReader::CSVReader(std::string filename, std::string delm)

/**
* @brief Reads and parses data from a CSV, ASCII or TIFF file into a 2D vector.
*
*
* Checks for the existence of the input file with either a `.tif` or `.asc` extension
* and processes it accordingly.
* If the file is in CSV format, it is read line by line and split using
Expand Down
Loading