Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

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

143

144

145

146

147

148

149

150

151

152

153

154

155

156

157

158

159

160

161

162

163

164

165

166

167

168

169

170

171

172

173

174

175

176

177

178

179

180

181

182

183

184

185

186

187

188

189

190

191

192

193

194

195

196

197

198

199

200

201

202

203

204

205

206

207

208

209

210

211

212

213

214

215

216

217

218

219

220

221

222

223

224

225

226

227

228

229

230

231

232

233

234

235

236

237

238

239

240

241

242

243

244

245

246

247

248

249

250

251

252

253

254

# This file is part of the pyMOR project (http://www.pymor.org). 

# Copyright Holders: Rene Milk, Stephan Rave, Felix Schindler 

# License: BSD 2-Clause License (http://opensource.org/licenses/BSD-2-Clause) 

 

from __future__ import absolute_import, division, print_function 

 

import numpy as np 

 

from pymor.domaindescriptions.boundarytypes import BoundaryType 

from pymor.domaindescriptions.interfaces import DomainDescriptionInterface 

 

 

class RectDomain(DomainDescriptionInterface): 

    '''Describes a rectangular domain. 

 

    |BoundaryTypes| can be associated edgewise. 

 

    Parameters 

    ---------- 

    domain 

        List of two points defining the lower-left and upper-right corner 

        of the domain. 

    left 

        The |BoundaryType| of the left edge. 

    right 

        The |BoundaryType| of the right edge. 

    top 

        The |BoundaryType| of the top edge. 

    bottom 

        The |BoundaryType| of the bottom edge. 

 

    Attributes 

    ---------- 

    domain 

    left 

    right 

    top 

    bottom 

    ''' 

 

    def __init__(self, domain=[[0, 0], [1, 1]], left=BoundaryType('dirichlet'), right=BoundaryType('dirichlet'), 

                 top=BoundaryType('dirichlet'), bottom=BoundaryType('dirichlet')): 

        assert domain[0][0] <= domain[1][0] 

        assert domain[0][1] <= domain[1][1] 

        self.boundary_types = frozenset({left, right, top, bottom}) 

        self.left = left 

        self.right = right 

        self.top = top 

        self.bottom = bottom 

        self.domain = np.array(domain) 

 

    @property 

    def lower_left(self): 

        return self.domain[0] 

 

    @property 

    def upper_right(self): 

        return self.domain[1] 

 

    @property 

    def width(self): 

        return self.domain[1, 0] - self.domain[0, 0] 

 

    @property 

    def height(self): 

        return self.domain[1, 1] - self.domain[0, 1] 

 

    @property 

    def volume(self): 

        return self.width * self.height 

 

    @property 

    def diameter(self): 

        return np.sqrt(self.width ** 2 + self.height ** 2) 

 

    def __repr__(self): 

        left = ', left=' + repr(self.left) if self.left != BoundaryType('dirichlet') else '' 

        right = ', right=' + repr(self.right) if self.right != BoundaryType('dirichlet') else '' 

        top = ', top=' + repr(self.top) if self.top != BoundaryType('dirichlet') else '' 

        bottom = ', bottom=' + repr(self.bottom) if self.bottom != BoundaryType('dirichlet') else '' 

        return 'RectDomain({}{})'.format(str(self.domain).replace('\n', ','), left + right + top + bottom) 

 

 

class CylindricalDomain(DomainDescriptionInterface): 

    '''Describes a cylindrical domain. 

 

    |BoundaryTypes| can be associated edgewise. 

 

    Parameters 

    ---------- 

    domain 

        List of two points defining the lower-left and upper-right corner 

        of the domain. The left and right edge are identified. 

    top 

        The |BoundaryType| of the top edge. 

    bottom 

        The |BoundaryType| of the bottom edge. 

 

    Attributes 

    ---------- 

    domain 

    top 

    bottom 

    ''' 

 

    def __init__(self, domain=[[0, 0], [1, 1]], top=BoundaryType('dirichlet'), bottom=BoundaryType('dirichlet')): 

        assert domain[0][0] <= domain[1][0] 

        assert domain[0][1] <= domain[1][1] 

        self.boundary_types = frozenset({top, bottom}) 

        self.top = top 

        self.bottom = bottom 

        self.domain = np.array(domain) 

 

    @property 

    def lower_left(self): 

        return self.domain[0] 

 

    @property 

    def upper_right(self): 

        return self.domain[1] 

 

    @property 

    def width(self): 

        return self.domain[1, 0] - self.domain[0, 0] 

 

    @property 

    def height(self): 

        return self.domain[1, 1] - self.domain[0, 1] 

 

    @property 

    def volume(self): 

        return self.width * self.height 

 

    @property 

    def diameter(self): 

        return np.sqrt(self.width ** 2 + self.height ** 2) 

 

    def __repr__(self): 

        top = ', top=' + repr(self.top) if self.top != BoundaryType('dirichlet') else '' 

        bottom = ', bottom=' + repr(self.bottom) if self.bottom != BoundaryType('dirichlet') else '' 

        return 'CylindricalDomain({}{})'.format(str(self.domain).replace('\n', ','), top + bottom) 

 

 

class TorusDomain(DomainDescriptionInterface): 

    '''Describes a domain with the topology of a torus. 

 

    Parameters 

    ---------- 

    domain 

        List of two points defining the lower-left and upper-right corner 

        of the domain. The left and right edge are identified, as well as the 

        bottom and top edge 

 

    Attributes 

    ---------- 

    domain 

    ''' 

 

    def __init__(self, domain=[[0, 0], [1, 1]]): 

        assert domain[0][0] <= domain[1][0] 

        assert domain[0][1] <= domain[1][1] 

        self.boundary_types = frozenset() 

        self.domain = np.array(domain) 

 

    @property 

    def lower_left(self): 

        return self.domain[0] 

 

    @property 

    def upper_right(self): 

        return self.domain[1] 

 

    @property 

    def width(self): 

        return self.domain[1, 0] - self.domain[0, 0] 

 

    @property 

    def height(self): 

        return self.domain[1, 1] - self.domain[0, 1] 

 

    @property 

    def volume(self): 

        return self.width * self.height 

 

    @property 

    def diameter(self): 

        return np.sqrt(self.width ** 2 + self.height ** 2) 

 

    def __repr__(self): 

        return 'TorusDomain({})'.format(str(self.domain).replace('\n', ',')) 

 

 

class LineDomain(DomainDescriptionInterface): 

    '''Describes an interval domain. 

 

    |BoundaryTypes| can be associated edgewise. 

 

    Parameters 

    ---------- 

    domain 

        List [x_l, x_r] providing the left and right endpoint. 

    left 

        The |BoundaryType| of the left endpoint. 

    right 

        The |BoundaryType| of the right endpoint. 

 

    Attributes 

    ---------- 

    domain 

    left 

    right 

    ''' 

 

    def __init__(self, domain=[0, 1], left=BoundaryType('dirichlet'), right=BoundaryType('dirichlet')): 

        assert domain[0] <= domain[1] 

        self.boundary_types = frozenset({left, right}) 

        self.left = left 

        self.right = right 

        self.domain = np.array(domain) 

 

    @property 

    def width(self): 

        return self.domain[1] - self.domain[0] 

 

    def __repr__(self): 

        left = ', left=' + repr(self.top) if self.top != BoundaryType('dirichlet') else '' 

        right = ', right=' + repr(self.bottom) if self.bottom != BoundaryType('dirichlet') else '' 

        return 'LineDomain({}{})'.format(self.domain, left + right) 

 

 

class CircleDomain(DomainDescriptionInterface): 

    '''Describes a domain with the topology of a circle, i.e. a line with 

    identified end points. 

 

    Parameters 

    ---------- 

    domain 

        List [x_l, x_r] providing the left and right endpoint. 

 

    Attributes 

    ---------- 

    domain 

    ''' 

 

    def __init__(self, domain=[0, 1]): 

        assert domain[0] <= domain[1] 

        self.domain = np.array(domain) 

 

    @property 

    def width(self): 

        return self.domain[1] - self.domain[0] 

 

    def __repr__(self): 

        return 'CircleDomain({})'.format(self.domain)