• 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/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/field_function_interface.h"
5
#include "framework/field_functions/field_function.h"
6
#include "framework/runtime.h"
7
#include "framework/logging/log.h"
8

9
namespace opensn
10
{
11

12
InputParameters
UNCOV
13
FieldFunctionInterface::GetInputParameters()
×
14
{
UNCOV
15
  InputParameters params;
×
16

UNCOV
17
  params.AddRequiredParameter<std::shared_ptr<FieldFunction>>("field_function", "Field function.");
×
UNCOV
18
  params.SetParameterTypeMismatchAllowed("field_function");
×
19

UNCOV
20
  return params;
×
21
}
×
22

UNCOV
23
FieldFunctionInterface::FieldFunctionInterface(const InputParameters& params)
×
UNCOV
24
  : field_function_(params.GetSharedPtrParam<FieldFunction>("field_function"))
×
25
{
UNCOV
26
}
×
27

28
std::shared_ptr<FieldFunction>
UNCOV
29
FieldFunctionInterface::GetFieldFunction() const
×
30
{
UNCOV
31
  return field_function_;
×
32
}
33

34
} // 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