• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

Open-Sn / opensn / 16821314466

07 Aug 2025 04:57PM UTC coverage: 74.527% (+1.0%) from 73.488%
16821314466

push

github

web-flow
Merge pull request #708 from wdhawkins/curvilinear_warning

Adding experimental warning to curvilinear solver

3 of 3 new or added lines in 1 file covered. (100.0%)

250 existing lines in 17 files now uncovered.

17543 of 23539 relevant lines covered (74.53%)

44793362.81 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/framework/field_functions/grid_based_field_function_interface.cc
1
// SPDX-FileCopyrightText: 2024 The OpenSn Authors <https://open-sn.github.io/opensn/>
2
// SPDX-License-Identifier: MIT
3

4
#include "framework/field_functions/grid_based_field_function_interface.h"
5
#include "framework/field_functions/field_function_grid_based.h"
6

7
namespace opensn
8
{
9

10
InputParameters
UNCOV
11
GridBasedFieldFunctionInterface::GetInputParameters()
×
12
{
UNCOV
13
  InputParameters params = FieldFunctionInterface::GetInputParameters();
×
14

UNCOV
15
  return params;
×
16
}
17

UNCOV
18
GridBasedFieldFunctionInterface::GridBasedFieldFunctionInterface(const InputParameters& params)
×
UNCOV
19
  : FieldFunctionInterface(params)
×
20
{
UNCOV
21
}
×
22

23
std::shared_ptr<FieldFunctionGridBased>
UNCOV
24
GridBasedFieldFunctionInterface::GetGridBasedFieldFunction() const
×
25
{
UNCOV
26
  auto ff_ptr = GetFieldFunction();
×
27

UNCOV
28
  auto grid_based_ff_ptr = std::dynamic_pointer_cast<FieldFunctionGridBased>(ff_ptr);
×
29

UNCOV
30
  return grid_based_ff_ptr;
×
UNCOV
31
}
×
32

33
} // namespace opensn
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc