1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% -*- Mode: Latex -*- %%%%%%%%%%%%%%%%%%%%%%%%%%%%
%% Boltzmann.tex --- Networks at 15 and 19 speeds for the simulation of
%% Navier-Stokes equations by the Boltzmann Method on network
%% (description and specification given by Laurent Giraud
%% <lgiraud@mema.ucl.ac.be>)
%%
%% Author : Denis GIROU (CNRS/IDRIS - France) <Denis.Girou@idris.fr>
%% Created the : Fri May 9 18:12:44 1997
%% Last mod. by : Denis GIROU (CNRS/IDRIS - France) <Denis.Girou@idris.fr>
%% Last mod. the : Mon Mar 9 11:57:51 1998
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\documentclass{article}
\usepackage{pstricks} % PSTricks with the `color' extension
\usepackage{pst-node} % PSTricks package for nodes
\usepackage{pst-3d} % PSTricks package for 3d graphics
\usepackage{multido} % `multido' package
\usepackage{lscape} % From CTAN/macros/latex/packages/graphics
% Definition of new colors
\definecolor{LightBlue}{rgb}{0.68,0.85,0.9}
% The node
\newcommand{\MyNode}[1][LightBlue]{{%
\psset{unit=0.15}
\begin{pspicture}(-0.5,-0.5)(0.5,0.5)
\pscircle*[linecolor=#1]{0.5}
\pscircle*[linecolor=white](0.15,0.15){0.2}
\end{pspicture}}}
\newpsobject{MyGrid}{psframe}{linestyle=dotted,dotsep=5pt}
% The cube
\newcommand{\MyCube}[1][LightBlue]{%
\begin{pspicture}(-0.05,-0.35)(2.85,2.45)
\multido{\i=0+1}{3}{%
\ThreeDput[normal=1 0 0](\i,0,0){%
\ifnum\i=1
\else
\MyGrid(2,2)
\fi
% Definitions of all nodes to do connections later
\ifnum\i=0
\pnode(0,0){NodeAAA}
\pnode(1,0){NodeABA}
\pnode(2,0){NodeACA}
\pnode(0,1){NodeBAA}
\pnode(1,1){NodeBBA}
\pnode(2,1){NodeBCA}
\pnode(0,2){NodeCAA}
\pnode(1,2){NodeCBA}
\pnode(2,2){NodeCCA}
\fi
\ifnum\i=1
\pnode(0,0){NodeAAB}
\pnode(1,0){NodeABB}
\pnode(2,0){NodeACB}
\pnode(0,1){NodeBAB}
\pnode(1,1){NodeBBB}
\pnode(2,1){NodeBCB}
\pnode(0,2){NodeCAB}
\pnode(1,2){NodeCBB}
\pnode(2,2){NodeCCB}
\fi
\ifnum\i=2
\pnode(0,0){NodeAAC}
\pnode(1,0){NodeABC}
\pnode(2,0){NodeACC}
\pnode(0,1){NodeBAC}
\pnode(1,1){NodeBBC}
\pnode(2,1){NodeBCC}
\pnode(0,2){NodeCAC}
\pnode(1,2){NodeCBC}
\pnode(2,2){NodeCCC}
\fi}
\ThreeDput[normal=0 -1 0](0,\i,0){
\ifnum\i=1
\else
\MyGrid(2,2)
\fi
% We must draw all the nodes in the same \ThreeDput to have
% the same projection for all nodes...
\multirput(0,0)(0,1){3}{\MyNode[#1]}
\multirput(1,0)(0,1){3}{\MyNode[#1]}
\multirput(2,0)(0,1){3}{\MyNode[#1]}}
\ifnum\i=1
\else
\ThreeDput[normal=0 0 1](0,0,\i){\MyGrid(2,2)}
\fi}
\end{pspicture}}
% Main connections
\newcommand{\MainConnections}{{%
\psset{linewidth=0.8mm}
\ncline{NodeBBA}{NodeBBC}
\ncline{NodeABB}{NodeCBB}
\ncline{NodeBAB}{NodeBCB}}}
% First cube
\newcommand{\MyCubeA}[1][LightBlue]{{%
\MyCube[#1]
% Connections
\psset{arrows=<->,arrowsize=4pt 3,arrowinset=0}
\MainConnections
\psset{linecolor=red}
\ncline{NodeAAA}{NodeCCC}
\ncline{NodeAAC}{NodeCCA}
\ncline{NodeCAA}{NodeACC}
\ncline{NodeACA}{NodeCAC}}}
% Second cube
\newcommand{\MyCubeB}[1][LightBlue]{{%
\MyCube[#1]
% Connections
\psset{arrows=<->,arrowsize=4pt 3,arrowinset=0}
\MainConnections
\psset{linecolor=red}
\ncline{NodeABA}{NodeCBC}
\ncline{NodeAAB}{NodeCCB}
\ncline{NodeABC}{NodeCBA}
\ncline{NodeACB}{NodeCAB}
\ncline{NodeBCA}{NodeBAC}
\ncline{NodeBAA}{NodeBCC}}}
\pagestyle{empty}
\begin{document}
\psset{unit=3,viewpoint=0.8 -1.4 0.4}
\begin{landscape}
\begin{figure}[htbp]
\centering
\MyCubeA \hfill \MyCubeB
\caption{Networks at 15 and 19 speeds for the simulation of
\texttt{Navier-Stokes} equations by the \texttt{Boltzmann} Method on
network.}
\end{figure}
\end{landscape}
\end{document}
|