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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Directory C:/azp/agent/_work/3/s/DPF/Ans.Dpf.Hgp
# Directory C:/azp/agent/_work/6/s/DPF/Ans.Dpf.Hgp

<a id="dir-dd83be0cfbcc27aa9f"></a>

Expand All @@ -8,7 +8,7 @@

## Subdirectories

* [C:/azp/agent/_work/3/s/DPF/Ans.Dpf.Hgp/helpers](dir-fca9ddd4acaabdc476476.md#dir-fca9ddd4acaabdc476476)
* [C:/azp/agent/_work/6/s/DPF/Ans.Dpf.Hgp/helpers](dir-fca9ddd4acaabdc476476.md#dir-fca9ddd4acaabdc476476)

## Files

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Directory C:/azp/agent/_work/3/s/DPF/Ans.Dpf.Hgp/helpers
# Directory C:/azp/agent/_work/6/s/DPF/Ans.Dpf.Hgp/helpers

<a id="dir-fca9ddd4acaabdc476476"></a>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ TEST(AveragingPerBody, Nodal)
scoping_op.connect(13, std::string("mat")); // split per body with mat attribute
ansys::dpf::ScopingsContainer scopings_per_body = scoping_op.getOutputScopingsContainer(0);

EXPECT_EQ(scopings_per_body.size(), 4);
EXPECT_EQ(scopings_per_body.size(), 5);

// Get split result
// ----------------
Expand All @@ -127,7 +127,7 @@ TEST(AveragingPerBody, Nodal)
// Compute output FieldsContainer
ansys::dpf::FieldsContainer result_fc = stress_op.getOutputFieldsContainer(0);

EXPECT_EQ(result_fc.size(), 4);
EXPECT_EQ(result_fc.size(), 5);
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ TEST(Model, readMetaData)
ansys::dpf::MeshedRegion mesh = model.getMesh();

auto numEle = mesh.numberOfElements();
EXPECT_TRUE(numEle == 165);
EXPECT_TRUE(numEle == 169);
auto numNodes = mesh.numberOfNodes();
EXPECT_TRUE(numNodes == 344);

ansys::dpf::Field fieldCoord = mesh.nodesCoordinates();
EXPECT_EQ(fieldCoord.dataSize(), 344 * 3);
ansys::dpf::PropertyField elementsConnectivity = mesh.connectivity();
EXPECT_EQ(elementsConnectivity.dataSize(), 1562);
EXPECT_EQ(elementsConnectivity.dataSize(), 1594);


ansys::dpf::TimeFreqSupport timeSupport = model.getTimeFreqSupport();
Expand Down Expand Up @@ -198,7 +198,7 @@ TEST(Model, ReleaseHandles)
ansys::dpf::MeshedRegion mesh = model.getMesh();

auto numEle = mesh.numberOfElements();
EXPECT_TRUE(numEle == 165);
EXPECT_TRUE(numEle == 169);
auto numNodes = mesh.numberOfNodes();
EXPECT_TRUE(numNodes == 344);

Expand Down