File: itensor2.dem

package info (click to toggle)
maxima 5.47.0-9
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 193,104 kB
  • sloc: lisp: 434,678; fortran: 14,665; tcl: 10,990; sh: 4,577; makefile: 2,763; ansic: 447; java: 328; python: 262; perl: 201; xml: 60; awk: 28; sed: 15; javascript: 2
file content (43 lines) | stat: -rw-r--r-- 1,345 bytes parent folder | download | duplicates (16)
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
/* 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be
 * useful, but WITHOUT ANY WARRANTY; without even the implied
 * warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
 * PURPOSE.  See the GNU General Public License for more details.
 *
 * Tensor index contraction
 */

if get('itensor,'version)=false then load(itensor);

("defcon() assigns contraction properties to tensors")$
defcon(e,f,g)$
ishow(e([a],[b])*f([b],[c]))$
ishow(contract(%))$

("kdelta is the Kronecker delta with special contraction properties")$

dim:3;
ishow(contract(kdelta([a],[b])*kdelta([b],[a])))$
ishow(ev(%,kdelta))$

("The imetric() function sets up contraction properties for the metric")$
remcomps(g);
imetric(g)$
ishow(g([i,j],[]))$
ishow(g([],[j,k]))$
ishow(%th(1)*%th(2))$
ishow(contract(rename(expand(%))))$

("The contract() function can also raise and lower indices")$
defcon(Ti);
ishow(Te([i,j],[k,l])*Ti([k,m])*Ti([l,n]))$
ishow(contract(%))$
ishow(Te([i,j],[k,l])*Ti([],[i,n])*Ti([],[j,m]))$
ishow(contract(%))$

/* End of demo -- comment line needed by MAXIMA to resume demo menu */