Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
ADerrors.jl
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alberto Ramos
ADerrors.jl
Commits
3999094f
Commit
3999094f
authored
Jun 26, 2020
by
Alberto Ramos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleaned fluctuation type. Implemented replica.
parent
7dc28722
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
176 additions
and
15 deletions
+176
-15
src/ADerrorsCF.jl
src/ADerrorsCF.jl
+168
-13
src/ADerrorsTypes.jl
src/ADerrorsTypes.jl
+8
-2
No files found.
src/ADerrorsCF.jl
View file @
3999094f
...
@@ -56,10 +56,10 @@ function bin_data(vin::Array{Float64, 1}, nbin::Int64)
...
@@ -56,10 +56,10 @@ function bin_data(vin::Array{Float64, 1}, nbin::Int64)
return
vout
return
vout
end
end
function
uwcls
(
data
::
Vector
{
Float64
},
id
::
Int64
,
ws
::
wspace
)
function
uwcls
(
data
::
Vector
{
Float64
},
id
::
Int64
,
ws
::
wspace
,
iv
::
Vector
{
Int64
}
)
if
(
length
(
data
)
==
2
)
if
(
length
(
data
)
==
2
)
ws
.
nob
+=
1
ws
.
nob
+=
1
new
=
fbd
(
1
,
1
,
[
data
[
2
]],
[
1
],
[
1
],
[
1
],
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}())
new
=
fbd
(
1
,
1
,
[
data
[
2
]],
[
1
],
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}())
push!
(
ws
.
fluc
,
new
)
push!
(
ws
.
fluc
,
new
)
push!
(
ws
.
map_nob
,
id
)
push!
(
ws
.
map_nob
,
id
)
if
(
!
haskey
(
ws
.
map_ids
,
id
))
if
(
!
haskey
(
ws
.
map_ids
,
id
))
...
@@ -73,6 +73,9 @@ function uwcls(data::Vector{Float64}, id::Int64, ws::wspace)
...
@@ -73,6 +73,9 @@ function uwcls(data::Vector{Float64}, id::Int64, ws::wspace)
return
uwreal
(
data
[
1
],
0.0
,
0.0
,
return
uwreal
(
data
[
1
],
0.0
,
0.0
,
p
,
d
,
Vector
{
Int64
}(),
Vector
{
cfdata
}())
p
,
d
,
Vector
{
Int64
}(),
Vector
{
cfdata
}())
else
else
if
(
sum
(
iv
)
!=
length
(
data
))
ArgumentError
(
"Sum of replica length does not match number of measurements"
)
end
ws
.
nob
+=
1
ws
.
nob
+=
1
avg
=
Statistics
.
mean
(
data
)
avg
=
Statistics
.
mean
(
data
)
push!
(
ws
.
map_nob
,
id
)
push!
(
ws
.
map_nob
,
id
)
...
@@ -81,16 +84,20 @@ function uwcls(data::Vector{Float64}, id::Int64, ws::wspace)
...
@@ -81,16 +84,20 @@ function uwcls(data::Vector{Float64}, id::Int64, ws::wspace)
end
end
fseries
=
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}()
fseries
=
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}()
nbin
=
get_nbin_vec
([
length
(
data
)])
nbin
=
get_nbin_vec
(
iv
)
nbdt
=
div
(
length
(
data
),
nbin
)
is
=
1
datapad
=
[
bin_data
(
data
.-
avg
,
nbin
);
for
i
in
1
:
length
(
iv
)
ie
=
is
+
iv
[
i
]
-
1
nbdt
=
div
(
iv
[
i
],
nbin
)
datapad
=
[
bin_data
(
data
[
is
:
ie
]
.-
avg
,
nbin
);
zeros
(
Float64
,
nextpow
(
2
,
2
*
nbdt
+
1
)
-
nbdt
)
]
zeros
(
Float64
,
nextpow
(
2
,
2
*
nbdt
+
1
)
-
nbdt
)
]
fseries
[
1
]
=
FFTW
.
fft
(
datapad
)
fseries
[
i
]
=
FFTW
.
fft
(
datapad
)
is
=
ie
+
1
end
new
=
fbd
(
length
(
data
),
nbin
,
new
=
fbd
(
length
(
data
),
nbin
,
data
.-
avg
,
data
.-
avg
,
[
length
(
data
)],
iv
,
[
1
],
[
length
(
data
)],
fseries
)
fseries
)
push!
(
ws
.
fluc
,
new
)
push!
(
ws
.
fluc
,
new
)
...
@@ -104,6 +111,53 @@ function uwcls(data::Vector{Float64}, id::Int64, ws::wspace)
...
@@ -104,6 +111,53 @@ function uwcls(data::Vector{Float64}, id::Int64, ws::wspace)
end
end
end
end
function
uwcls_gaps
(
data
::
Vector
{
Float64
},
id
::
Int64
,
ws
::
wspace
,
iv
::
Vector
{
Int64
},
idm
::
Vector
{
Int64
},
nms
::
Int64
)
if
(
nms
<
4
)
ArgumentError
(
"MC data length has to be larger than 4"
)
end
avg
=
Statistics
.
mean
(
data
)
dt
=
fill
(
avg
,
nms
)
for
n
in
1
:
length
(
idm
)
dt
[
idm
[
n
]]
=
data
[
n
]
-
avg
end
dt
.=
(
nms
/
length
(
idm
))
.*
dt
ws
.
nob
+=
1
push!
(
ws
.
map_nob
,
id
)
if
(
!
haskey
(
ws
.
map_ids
,
id
))
ws
.
map_ids
[
id
]
=
ws
.
nob
end
fseries
=
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}()
nbin
=
get_nbin_vec
(
iv
)
is
=
1
for
i
in
1
:
length
(
iv
)
ie
=
is
+
iv
[
i
]
-
1
nbdt
=
div
(
iv
[
i
],
nbin
)
datapad
=
[
bin_data
(
dt
[
is
:
ie
],
nbin
);
zeros
(
Float64
,
nextpow
(
2
,
2
*
nbdt
+
1
)
-
nbdt
)
]
fseries
[
i
]
=
FFTW
.
fft
(
datapad
)
is
=
ie
+
1
end
new
=
fbd
(
nms
,
nbin
,
dt
,
iv
,
fseries
)
push!
(
ws
.
fluc
,
new
)
p
=
[
false
for
n
in
1
:
ws
.
nob
]
p
[
end
]
=
true
d
=
[
0.0
for
n
in
1
:
ws
.
nob
]
d
[
end
]
=
1.0
return
uwreal
(
avg
,
0.0
,
0.0
,
p
,
d
,
Vector
{
Int64
}(),
Vector
{
cfdata
}())
end
function
unique_ids
!
(
a
::
uwreal
,
ws
::
wspace
)
function
unique_ids
!
(
a
::
uwreal
,
ws
::
wspace
)
...
@@ -184,8 +238,8 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
...
@@ -184,8 +238,8 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
ftemp
[
k
]
.=
ftemp
[
k
]
.*
conj
(
ftemp
[
k
])
ftemp
[
k
]
.=
ftemp
[
k
]
.*
conj
(
ftemp
[
k
])
FFTW
.
ifft!
(
ftemp
[
k
])
FFTW
.
ifft!
(
ftemp
[
k
])
for
ig
in
1
:
nt
for
ig
in
1
:
min
(
nt
,
length
(
ftemp
[
k
]))
new
.
gamm
[
ig
]
=
real
(
ftemp
[
k
][
ig
])
new
.
gamm
[
ig
]
=
new
.
gamm
[
ig
]
+
real
(
ftemp
[
k
][
ig
])
end
end
end
end
for
ig
in
1
:
nt
for
ig
in
1
:
nt
...
@@ -237,8 +291,9 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
...
@@ -237,8 +291,9 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
idx
=
ws
.
map_ids
[
a
.
ids
[
j
]]
idx
=
ws
.
map_ids
[
a
.
ids
[
j
]]
if
(
ws
.
fluc
[
idx
]
.
nd
==
1
)
if
(
ws
.
fluc
[
idx
]
.
nd
==
1
)
a
.
cfd
[
j
]
.
taui
=
0.5
a
.
cfd
[
j
]
.
taui
=
0.5
a
.
cfd
[
k
]
.
dtua
i
=
0.0
a
.
cfd
[
j
]
.
dtau
i
=
0.0
vti
=
0.0
vti
=
0.0
iw
=
0
else
else
ibn
=
ws
.
fluc
[
idx
]
.
ibn
ibn
=
ws
.
fluc
[
idx
]
.
ibn
nd_eff
=
div
(
ws
.
fluc
[
idx
]
.
nd
,
ibn
)
nd_eff
=
div
(
ws
.
fluc
[
idx
]
.
nd
,
ibn
)
...
@@ -248,6 +303,7 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
...
@@ -248,6 +303,7 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
a
.
cfd
[
j
]
.
taui
=
0.0
a
.
cfd
[
j
]
.
taui
=
0.0
a
.
cfd
[
j
]
.
dtaui
=
0.0
a
.
cfd
[
j
]
.
dtaui
=
0.0
vti
=
0.0
vti
=
0.0
iw
=
0
else
else
wp
=
zeros
(
4
)
wp
=
zeros
(
4
)
wp
=
get
(
wpm
,
a
.
ids
[
j
],
[
-
1.0
,
-
1.0
,
-
1.0
,
-
1.0
])
wp
=
get
(
wpm
,
a
.
ids
[
j
],
[
-
1.0
,
-
1.0
,
-
1.0
,
-
1.0
])
...
@@ -291,6 +347,102 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
...
@@ -291,6 +347,102 @@ function uwerror(a::uwreal, ws::wspace, wpm::Dict{Int64,Vector{Float64}})
a
.
derr
=
sqrt
(
a
.
derr
)
a
.
derr
=
sqrt
(
a
.
derr
)
end
end
function
unique_ids_multi
(
a
::
Vector
{
uwreal
})
is
=
0
for
i
in
1
:
length
(
a
)
is
=
is
+
unique_ids!
(
a
)
end
n
=
0
ids
=
Vector
{
Int64
}()
for
k
in
1
:
length
(
a
)
for
i
in
1
:
length
(
a
[
k
]
.
prop
)
if
(
a
[
k
]
.
prop
[
i
])
if
(
any
(
a
.
ids
[
1
:
end
]
==
ws
.
map_nob
[
i
]))
continue
end
n
=
n
+
1
push!
(
ids
,
map_nob
[
i
])
end
end
end
return
ids
end
function
cov
(
a
::
Vector
{
uwreal
},
ws
::
wspace
,
wpm
::
Dict
{
Int64
,
Vector
{
Float64
}})
for
i
in
1
:
length
(
a
)
uwerr
(
a
,
wpm
)
end
ids
=
unique_ids_multi
(
a
)
nid
=
length
(
ids
)
iw
=
zeros
(
Int64
,
nid
)
for
k
in
1
:
length
(
a
)
for
j
in
1
:
length
(
a
[
k
]
.
ids
)
for
i
in
1
:
nid
if
(
a
[
k
]
.
ids
[
j
]
==
ids
[
j
])
iw
[
i
]
=
max
(
iw
[
i
],
a
[
k
]
.
cfd
[
j
]
.
iw
)
end
end
end
end
wopt
=
Dict
{
Int64
,
Vector
{
Float64
}}()
for
i
in
1
:
nid
wopt
[
ids
[
i
]]
=
[
convert
(
Float64
,
iw
[
i
]),
-
1.0
,
-
1.0
,
-
1.0
]
end
cov
=
zeros
(
Float64
,
length
(
a
),
length
(
a
))
for
k
in
1
:
length
(
a
)
uwerr
(
a
[
k
],
wopt
)
cov
[
k
,
k
]
=
a
[
k
]
.
err
^
2
end
for
j
in
1
:
nid
idx
=
ws
.
map_ids
[
a
.
ids
[
j
]]
nd
=
ws
.
fluc
[
idx
]
.
nd
nrep
=
length
(
ws
.
fluc
[
idx
]
.
ivrep
)
for
k1
in
1
:
length
(
a
)
-
1
v1
=
0.0
for
i
in
1
:
length
(
a
[
k1
]
.
prop
)
if
(
a
[
k1
]
.
prop
[
i
]
&&
(
ws
.
map_nob
[
i
]
==
ids
[
j
]))
if
(
nd
==
1
)
v1
=
v1
+
a
[
k1
]
.
der
[
i
]
*
ws
.
fluc
[
i
]
.
delta
[
1
]
else
# AQUI
end
end
end
for
k2
in
k1
+
1
:
length
(
a
)
v2
=
0.0
for
i
in
1
:
length
(
a
[
k2
]
.
prop
)
if
(
a
[
k2
]
.
prop
[
i
]
&&
(
ws
.
map_nob
[
i
]
==
ids
[
j
]))
if
(
nd
==
1
)
v2
=
v2
+
a
[
k2
]
.
der
[
i
]
*
ws
.
fluc
[
i
]
.
delta
[
1
]
end
end
end
end
if
(
nd
==
1
)
cov
[
k1
,
k2
]
=
cov
[
k1
,
k2
]
+
v1
*
v2
end
end
end
end
## ##
# Module workspace and function definitions #
## ##
wsg
=
ADerrors
.
wspace
(
similar
(
Vector
{
ADerrors
.
fbd
},
0
),
wsg
=
ADerrors
.
wspace
(
similar
(
Vector
{
ADerrors
.
fbd
},
0
),
0
,
0
,
similar
(
Vector
{
Int64
},
0
),
similar
(
Vector
{
Int64
},
0
),
...
@@ -298,7 +450,10 @@ wsg = ADerrors.wspace(similar(Vector{ADerrors.fbd}, 0),
...
@@ -298,7 +450,10 @@ wsg = ADerrors.wspace(similar(Vector{ADerrors.fbd}, 0),
empt
=
Dict
{
Int64
,
Vector
{
Float64
}}()
empt
=
Dict
{
Int64
,
Vector
{
Float64
}}()
uwreal
(
data
::
Vector
{
Float64
},
id
::
Int64
)
=
ADerrors
.
uwcls
(
data
::
Vector
{
Float64
},
id
::
Int64
,
wsg
)
uwreal
(
data
::
Vector
{
Float64
},
id
::
Int64
)
=
ADerrors
.
uwcls
(
data
::
Vector
{
Float64
},
id
::
Int64
,
wsg
,
[
length
(
data
)])
uwreal
(
data
::
Vector
{
Float64
},
id
::
Int64
,
iv
::
Vector
{
Int64
})
=
ADerrors
.
uwcls
(
data
::
Vector
{
Float64
},
id
::
Int64
,
wsg
,
iv
)
uwerr
(
a
::
uwreal
)
=
ADerrors
.
uwerror
(
a
::
uwreal
,
wsg
,
empt
)
uwerr
(
a
::
uwreal
)
=
ADerrors
.
uwerror
(
a
::
uwreal
,
wsg
,
empt
)
uwerr
(
a
::
uwreal
,
wpm
::
Dict
{
Int64
,
Vector
{
Float64
}})
=
ADerrors
.
uwerror
(
a
::
uwreal
,
wsg
,
wpm
::
Dict
{
Int64
,
Vector
{
Float64
}})
uwerr
(
a
::
uwreal
,
wpm
::
Dict
{
Int64
,
Vector
{
Float64
}})
=
ADerrors
.
uwerror
(
a
::
uwreal
,
wsg
,
wpm
::
Dict
{
Int64
,
Vector
{
Float64
}})
neid
(
a
::
uwreal
)
=
ADerrors
.
unique_ids!
(
a
::
uwreal
,
wsg
)
neid
(
a
::
uwreal
)
=
ADerrors
.
unique_ids!
(
a
::
uwreal
,
wsg
)
src/ADerrorsTypes.jl
View file @
3999094f
...
@@ -40,8 +40,6 @@ mutable struct fbd
...
@@ -40,8 +40,6 @@ mutable struct fbd
delta
::
Array
{
Float64
,
1
}
delta
::
Array
{
Float64
,
1
}
ivrep
::
Array
{
Int64
,
1
}
ivrep
::
Array
{
Int64
,
1
}
is
::
Array
{
Int64
,
1
}
ie
::
Array
{
Int64
,
1
}
fourier
::
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}
fourier
::
Dict
{
Int64
,
Vector
{
Complex
{
Float64
}}}
end
end
...
@@ -60,3 +58,11 @@ uwreal(v::Float64, n::Int) = uwreal(v, 0.0, 0.0,
...
@@ -60,3 +58,11 @@ uwreal(v::Float64, n::Int) = uwreal(v, 0.0, 0.0,
uwreal
(
v
::
Float64
,
prop
::
Vector
{
Bool
},
der
::
Vector
{
Float64
})
=
uwreal
(
v
,
0.0
,
0.0
,
uwreal
(
v
::
Float64
,
prop
::
Vector
{
Bool
},
der
::
Vector
{
Float64
})
=
uwreal
(
v
,
0.0
,
0.0
,
prop
,
der
,
prop
,
der
,
Vector
{
Int64
}(),
Vector
{
cfdata
}())
Vector
{
Int64
}(),
Vector
{
cfdata
}())
function
Base
.
show
(
io
::
IO
,
a
::
uwreal
)
if
(
length
(
a
.
cfd
)
>
0
)
print
(
a
.
mean
,
" +/- "
,
a
.
err
)
else
print
(
a
.
mean
,
" (Error not available... maybe run uwerr)"
)
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment