Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
ccd7f83a
Commit
ccd7f83a
authored
11 years ago
by
Maaijke Mevius
Browse files
Options
Downloads
Patches
Plain Diff
Task #4466: included TEC only fit
parent
561efa8d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
CEP/Calibration/ExpIon/src/fitClockTEC.py
+36
-0
36 additions, 0 deletions
CEP/Calibration/ExpIon/src/fitClockTEC.py
with
36 additions
and
0 deletions
CEP/Calibration/ExpIon/src/fitClockTEC.py
+
36
−
0
View file @
ccd7f83a
...
@@ -314,6 +314,42 @@ def getResidualPhaseWraps2(avgResiduals,freqs):
...
@@ -314,6 +314,42 @@ def getResidualPhaseWraps2(avgResiduals,freqs):
wraps
=
fitting
.
fit
(
data
,
basef
,
wraps
,
flags
).
flatten
()
wraps
=
fitting
.
fit
(
data
,
basef
,
wraps
,
flags
).
flatten
()
return
wraps
,
steps
return
wraps
,
steps
def
getTECBaselineFit
(
ph
,
amp
,
freqs
,
SBselect
,
polIdx
,
stIdx
,
useOffset
=
False
,
stations
=
[],
initSol
=
[],
chi2cut
=
300.
,
timeIdx
=
0
):
global
tecarray
global
offsetarray
global
residualarray
amp
[
np
.
isnan
(
ph
)]
=
1
ph
[
np
.
isnan
(
ph
)]
=
0.
ph
=
np
.
unwrap
(
ph
,
axis
=
0
)
#first unwrap data and get initial guess
nT
=
ph
.
shape
[
0
]
nF
=
freqs
.
shape
[
0
]
nSt
=
ph
.
shape
[
2
]
nparms
=
1
+
(
useOffset
>
0
)
sol
=
np
.
zeros
((
nSt
,
nparms
),
dtype
=
np
.
float
)
A
=
np
.
zeros
((
nF
,
nparms
),
dtype
=
np
.
float
)
A
[:,
0
]
=
-
8.44797245e9
/
freqs
if
useOffset
:
A
[:,
1
]
=
np
.
ones
((
nF
,))
for
itm
in
range
(
nT
):
if
itm
%
100
==
0
and
itm
>
0
:
sys
.
stdout
.
write
(
str
(
itm
)
+
'
...
'
+
str
(
sol
[
-
1
,
0
]
-
sol
[
0
,
0
])
+
'
'
+
str
(
sol
[
-
1
,
-
1
]
-
sol
[
0
,
-
1
])
+
'
'
)
sys
.
stdout
.
flush
()
flags
=
(
amp
[
itm
,:]
==
1
);
nrFlags
=
np
.
sum
(
flags
,
axis
=
0
)
sol
=
fitting
.
fit
(
ph
[
itm
],
A
,
sol
.
T
,
flags
).
T
tecarray
[
itm
+
timeIdx
,
stIdx
,
polIdx
]
=
sol
[:,
0
]
if
useOffset
:
offsetarray
[
itm
+
timeIdx
,
stIdx
,
polIdx
]
=
sol
[:,
1
]
residual
=
ph
[
itm
]
-
np
.
dot
(
A
,
sol
.
T
)
residual
=
residual
-
residual
[:,
0
][:,
np
.
newaxis
]
residual
=
np
.
remainder
(
residual
+
np
.
pi
,
2
*
np
.
pi
)
-
np
.
pi
residual
[
flags
]
=
0
residualarray
[
np
.
ix_
([
itm
+
timeIdx
],
SBselect
,
stIdx
,[
polIdx
])]
=
residual
.
reshape
((
1
,
nF
,
nSt
,
1
))
def
getClockTECBaselineFit
(
ph
,
amp
,
freqs
,
SBselect
,
polIdx
,
stIdx
,
useOffset
=
False
,
stations
=
[],
initSol
=
[],
chi2cut
=
300.
,
fixedClockforCS
=
False
,
timeIdx
=
0
):
def
getClockTECBaselineFit
(
ph
,
amp
,
freqs
,
SBselect
,
polIdx
,
stIdx
,
useOffset
=
False
,
stations
=
[],
initSol
=
[],
chi2cut
=
300.
,
fixedClockforCS
=
False
,
timeIdx
=
0
):
global
tecarray
global
tecarray
global
clockarray
global
clockarray
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment