Skip to content

Commit 726c95e

Browse files
authored
chore: 251 Changes (#3643)
1 parent 5ae7a8f commit 726c95e

15 files changed

+224
-85
lines changed

doc/source/cheatsheet/cheat_sheet.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ solver = pyfluent.launch_fluent(
5757
dimension=pyfluent.Dimension.THREE,
5858
precision=pyfluent.Precision.DOUBLE,
5959
processor_count=2,
60-
product_version=pyfluent.FluentVersion.v242
60+
product_version=pyfluent.FluentVersion.v251
6161
)
6262
```
6363

docker/fluent_251/Dockerfile

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# Specify base image
2+
FROM ubuntu:20.04
3+
4+
# User variables
5+
ARG USERNAME=fluent
6+
ARG USER_UID=1000
7+
ARG USER_GID=$USER_UID
8+
9+
# Create the user
10+
RUN groupadd --gid $USER_GID $USERNAME \
11+
&& useradd --uid $USER_UID --gid $USER_GID -m $USERNAME
12+
13+
# Copy ``ansys_inc`` directory
14+
COPY ansys_inc /ansys_inc
15+
16+
# Add metadata
17+
LABEL description="Ansys Fluent 2025 R1"
18+
LABEL email="[email protected]"
19+
20+
# OCI label
21+
LABEL org.opencontainers.image.documentation="https://fluent.docs.pyansys.com"
22+
23+
# Install dependencies
24+
RUN apt-get -y update && apt-get -y install \
25+
csh \
26+
fontconfig \
27+
libxi-dev \
28+
libsm6 \
29+
libice-dev \
30+
libxrandr-dev \
31+
libxinerama-dev \
32+
libxcursor-dev \
33+
libglu1-mesa \
34+
libglvnd-dev && apt-get clean all
35+
36+
# Specify working directory
37+
ENV WORKING_DIRECTORY=/home/$USERNAME/$WORKING_DIRECTORY
38+
39+
# Specify home directory
40+
ENV HOME=/home/$USERNAME
41+
42+
# Add a working directory and make it accessible to any user
43+
RUN mkdir -p $WORKING_DIRECTORY \
44+
&& \
45+
chown -R $USERNAME:$USERNAME $WORKING_DIRECTORY \
46+
&& \
47+
chmod a+rwx $WORKING_DIRECTORY
48+
49+
# Set the user
50+
USER $USERNAME
51+
52+
# Set working directory
53+
WORKDIR /home/$USERNAME/$WORKING_DIRECTORY
54+
55+
# Specify default Fluent executable
56+
ENTRYPOINT ["/ansys_inc/v251/fluent/bin/fluent"]

docker/fluent_251/cadList.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
v251/commonfiles/CAD
2+
v251/aisol
3+
v251/commonfiles/MainWin
4+
v251/Framework
5+
v251/commonfiles/registry
6+
v251/tp/stdc++
7+
v251/tp/openssl

docker/fluent_251/ceiList.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
v251/CEI/BUILDINFO.txt
2+
v251/CEI/apex242
3+
v251/CEI/bin
4+
v251/CEI/ensight242lang
5+
v251/CEI/nexus242

docker/fluent_251/cfdpostList.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v251/CFD-Post
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
v251/CEI/nexus242/docs
2+
v251/CEI/nexus242/examples
3+
v251/CEI/apex242/media/docs
4+
v251/CEI/apex242/machines/linux_2.6_64/Intel2016
5+
v251/CEI/apex242/machines/linux_2.6_64/multiport
6+
v251/CEI/apex242/machines/linux_2.6_64/Mesa-13.0.5
7+
v251/CEI/apex242/machines/linux_2.6_64/intel_embree-3.10.0
8+
v251/CEI/apex242/machines/linux_2.6_64/intel_ospray-2.1.1
9+
v251/CEI/apex242/machines/linux_2.6_64/intel_odin-1.2.1
10+
v251/CEI/apex242/machines/linux_2.6_64/ifort-14.0
11+
v251/CEI/apex242/machines/linux_2.6_64/licensingclient
12+
v251/CEI/apex242/machines/linux_2.6_64/CEI/enve_common/libudil-avi.so
13+
v251/CEI/apex242/machines/linux_2.6_64/CEI/enve_common/libudil-qtime.so
14+
v251/CEI/apex242/machines/linux_2.6_64/CEI/enve_common/libudil-sm.so
15+
v251/CEI/apex242/machines/linux_2.6_64/runtime_libs/libembree3.so.3
16+
v251/CEI/apex242/machines/linux_2.6_64/runtime_libs/libembree3.so
17+
v251/CEI/apex242/machines/linux_2.6_64/Python-3.7.4/lib/python3.7/site-packages/grpc
18+
v251/CEI/apex242/machines/linux_2.6_64/Python-3.7.4/lib/python3.7/site-packages/grpc_tools
19+
v251/CEI/apex242/machines/linux_2.6_64/Python-3.7.4/lib/python3.7/site-packages/grpcio-1.17.1.dist-info
20+
v251/CEI/apex242/machines/linux_2.6_64/Python-3.7.4/lib/python3.7/site-packages/grpcio-1.22.0.dist-info
21+
v251/CEI/apex242/machines/linux_2.6_64/Python-3.7.4/lib/python3.7/site-packages/grpcio_tools-1.17.1.dist-info
22+
v251/CEI/apex242/machines/linux_2.6_64/Python-3.7.4/lib/python3.7/site-packages/grpcio_tools-1.22.0.dist-info
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v251/fluent/fluent25.1.0/addons/gpuapp

docker/fluent_251/fluentList.txt

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
v251/licensingclient/linx64/ansyscl
2+
v251/licensingclient/linx64/ansysli_util
3+
shared_files/licensing/language/en-us/ansysli_msgs.xml
4+
v251/commonfiles/APIP/bin/linx64/apip-standalone-service
5+
v251/commonfiles/etc/ApipRC.xml
6+
v251/commonfiles/images/splash.png
7+
v251/commonfiles/images/ANSYS_blk_lrg.png
8+
v251/commonfiles/images/ANSYS_wht_lrg.png
9+
v251/commonfiles/images/academic_large_black.png
10+
v251/commonfiles/images/academic_large_white.png
11+
v251/commonfiles/images/splash.bmp
12+
v251/commonfiles/globalsettings/ANSYSProductImprovementProgram.txt
13+
v251/commonfiles/help/en-us/fluent_gui_help/
14+
v251/commonfiles/CPython/3_10/linx64/Release
15+
v251/commonfiles/fluids
16+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libifcoremt.so.5
17+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libifcoremt.so
18+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libifcore.so
19+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libifcore.so.5
20+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libifport.so
21+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libifport.so.5
22+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libiomp5.so
23+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libiomp5.dbg
24+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libimf.so
25+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libintlc.so.5
26+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libintlc.so
27+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libirc.so
28+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libirng.so
29+
v251/tp/IntelCompiler/2023.1.0/linx64/lib/intel64/libsvml.so
30+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_core.so
31+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_core.so.2
32+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_def.so
33+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_def.so.2
34+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_intel_lp64.so
35+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_intel_lp64.so.2
36+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_intel_thread.so
37+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_intel_thread.so.2
38+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_sequential.so
39+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_sequential.so.2
40+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_intel_ilp64.so
41+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_intel_ilp64.so.2
42+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_avx2.so.2
43+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_avx512.so.2
44+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_rt.so
45+
v251/tp/IntelMKL/2023.1.0/linx64/lib/intel64/libmkl_rt.so.2
46+
v251/tp/7zip
47+
v251/fluent

docker/fluent_dev/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN groupadd --gid $USER_GID $USERNAME \
1414
COPY ansys_inc /ansys_inc
1515

1616
# Add metadata
17-
LABEL description="Ansys Fluent 2025 R1"
17+
LABEL description="Ansys Fluent 2025 R2"
1818
LABEL email="[email protected]"
1919

2020
# OCI label
@@ -53,4 +53,4 @@ USER $USERNAME
5353
WORKDIR /home/$USERNAME/$WORKING_DIRECTORY
5454

5555
# Specify default Fluent executable
56-
ENTRYPOINT ["/ansys_inc/v251/fluent/bin/fluent"]
56+
ENTRYPOINT ["/ansys_inc/v252/fluent/bin/fluent"]

docker/fluent_dev/cadList.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
v251/commonfiles/CAD
2-
v251/aisol
3-
v251/commonfiles/MainWin
4-
v251/Framework
5-
v251/commonfiles/registry
6-
v251/tp/stdc++
7-
v251/tp/openssl
1+
v252/commonfiles/CAD
2+
v252/aisol
3+
v252/commonfiles/MainWin
4+
v252/Framework
5+
v252/commonfiles/registry
6+
v252/tp/stdc++
7+
v252/tp/openssl

0 commit comments

Comments
 (0)