NX Open C++ 参考指南
2406 v1.1
载入中...
搜索中...
未找到
D:
Tan_NX2406C++
UGopenLib
NX2406
UGOPEN
NXOpen
CAE_Acoustics.hxx
1
//--------------------------------------------------------------------------
2
// Copyright 2024 Siemens
3
//--------------------------------------------------------------------------
4
// C++ 接口访问 JA API 的头文件
5
//--------------------------------------------------------------------------
6
//
7
// 源文件:
8
// CAE_Acoustics.ja
9
//
10
// 生成方式:
11
// apiwrap
12
//
13
// 警告:
14
// 此文件为自动生成,请勿手动编辑
15
//
16
#pragma once
17
#include <NXOpen/NXDeprecation.hxx>
18
#include <vector>
19
#include <NXOpen/NXString.hxx>
20
#include <NXOpen/Callback.hxx>
21
#include <NXOpen/TaggedObject.hxx>
22
#include <NXOpen/libnxopencpp_cae_exports.hxx>
23
#ifdef _MSC_VER
24
#pragma warning(push)
25
#pragma warning(disable:4996)
26
#endif
27
#ifdef __GNUC__
28
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
29
#endif
30
namespace
NXOpen
31
{
32
namespace
CAE
33
{
34
class
Acoustics
;
35
}
36
namespace
CAE
37
{
38
class
SimSimulation
;
39
}
40
namespace
CAE
41
{
42
class
AcousticsPanelGenerator
;
43
}
44
namespace
CAE
45
{
46
class
AcousticsVerticalsTools;
47
}
48
namespace
CAE
49
{
50
class
CaeRegion
;
51
}
52
namespace
CAE
53
{
54
class
SimSoundProcessingTools
;
55
}
56
namespace
CAE
57
{
58
class
AcousticsImpl;
62
class
NXOPENCPP_CAEEXPORT
Acoustics
63
{
64
private
:
AcousticsImpl
* m_acoustics_impl;
65
private
:
NXOpen::CAE::SimSimulation
* m_owner;
67
public
:
explicit
Acoustics
(
NXOpen::CAE::SimSimulation
*owner);
69
public
:
71
tag_t
Tag
()
const
;
72
public
:
~Acoustics
();
76
public
:
void
ImportSpecificDuctModes
77
(
78
NXOpen::CAE::CaeRegion
* ductInletRegion ,
79
const
NXString
& csvFileName
80
);
84
void
ImportSpecificDuctModes
85
(
86
NXOpen::CAE::CaeRegion
* ductInletRegion ,
87
const
char
* csvFileName
88
);
90
93
public
:
double
ComputeLoudness
94
(
95
const
std::vector<double> & frequencyValues ,
96
const
std::vector<double> & pressureValues
97
);
99
102
public
:
NXOpen::CAE::AcousticsPanelGenerator
*
PanelGenerator
();
106
public
:
NXOpen::CAE::SimSoundProcessingTools
*
AuralizationTools
();
108
111
public
: NXOpen::CAE::AcousticsVerticalsTools *VerticalsTools();
113
};
//lint !e1712 default constructor not defined for class
114
}
115
}
116
#ifdef _MSC_VER
117
#pragma warning(pop)
118
#endif
119
#ifdef __GNUC__
120
#ifndef NX_NO_GCC_DEPRECATION_WARNINGS
121
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
122
#endif
123
#endif
124
#undef EXPORTLIBRARY