Replies: 8 comments 4 replies
-
All of those parameters are optional - you can either pass them when calling |
Beta Was this translation helpful? Give feedback.
-
hello sir ,sir <ParameterSet: 42 parameters | contexts: compute,
figure, dataset, constraint> sir whatis mean of parameter set? and
,sir what is mean of 'lc01'?
…On Sat, Oct 16, 2021 at 5:04 PM Kyle Conroy ***@***.***> wrote:
All of those parameters are optional - you can either pass them when
calling add_dataset or change the default values later. If you want to
attach an observational light curve (for fitting or plotting, rather than
just creating a synthetic light curve), then you'll want to set times,
fluxes, and sigmas (all with arrays of the same length).
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#541 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AWANX4ARMXCAFPUNF7CDQULUHGA7DANCNFSM5GC4QWEQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
-
Thanks very much sir for your help
…On Mon, Oct 18, 2021 at 11:50 PM Kyle Conroy ***@***.***> wrote:
ParameterSet is a python object containing a filtered list of parameters.
Its introduced in the first tutorial on general concepts
<http://phoebe-project.org/docs/latest/tutorials/general_concepts>.
'lc01' is the *default* label given to the light curve dataset when
calling b.add_dataset but not providing a string for dataset. If you pass
dataset='mylc' for example, then it would get that label instead. You
then refer to these various labels when filtering and setting parameters.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#541 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AWANX4FAMAQHQXIQLTI4I2TUHSCCRANCNFSM5GC4QWEQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
-
hellow sir ,sir are this numbers in run compute are constant?or changed if
changed how can i change it?
b.run_compute(irrad_method='none')
100%|██████████| 205/205 [00:00<00:00, 256.51it/s]
On Tue, Oct 19, 2021 at 12:21 AM helen helen.hamadameen
***@***.***> wrote:
… Thanks very much sir for your help
On Mon, Oct 18, 2021 at 11:50 PM Kyle Conroy ***@***.***>
wrote:
> ParameterSet is a python object containing a filtered list of parameters.
> Its introduced in the first tutorial on general concepts
> <http://phoebe-project.org/docs/latest/tutorials/general_concepts>.
>
> 'lc01' is the *default* label given to the light curve dataset when
> calling b.add_dataset but not providing a string for dataset. If you
> pass dataset='mylc' for example, then it would get that label instead.
> You then refer to these various labels when filtering and setting
> parameters.
>
> —
> You are receiving this because you authored the thread.
> Reply to this email directly, view it on GitHub
> <#541 (reply in thread)>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/AWANX4FAMAQHQXIQLTI4I2TUHSCCRANCNFSM5GC4QWEQ>
> .
> Triage notifications on the go with GitHub Mobile for iOS
> <https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
> or Android
> <https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
>
>
|
Beta Was this translation helpful? Give feedback.
-
hello sir for estimating new value of parameters should i write all of below codes: set parameter valuesb.set_value('q', value = 0.6) add an lc datasetb.add_dataset('lc', compute_phases=phoebe.linspace(0,1,101)) #compute the model extract the arrays from the model that we'll use as observables in the next steptimes = b.get_value('times', context='model', dataset='lc01') here we're adding noise to the fluxes as well to make the fake data more "realistic"np.random.seed(0) # to ensure reproducibility with added noise |
Beta Was this translation helpful? Give feedback.
-
thanks very much sir kecnry butsir for esimating new value of parameters can i use just this below part : We'll use blackbody atmospheres with manual limb-darkening just to avoid any out-of-bounds errors if the estimates aren't perfectly physical. Normally we would check these values to make sure they're reasonable before adopting and would definitely want to revert to physical atmospheres and appropriate limb-darkening when optimizing. b = phoebe.default_binary() set parameter valuesb.set_value('q', value = 0.6) add an lc datasetb.add_dataset('lc', compute_phases=phoebe.linspace(0,1,101)) #compute the model |
Beta Was this translation helpful? Give feedback.
-
hello sir how are you sir to plot spots of my stars which are W UM a contact binary stars in spot tutorials i saw this numbers below of time=[0,0.25,0.5,0.75,1.0] is this numbers constant for all contact binary stars ? can i use same steps of this below codes for my contact W UMa binary stars To see the spot, add a mesh dataset and plot it. Thank you very much for your suggestion To see the spot, add a mesh dataset and plot it. b.add_dataset('mesh', times=[0,0.25,0.5,0.75,1.0], columns=['teffs']) |
Beta Was this translation helpful? Give feedback.
-
Thanks in advance for your reply
…On Mon, Nov 22, 2021 at 8:48 PM Kyle Conroy ***@***.***> wrote:
The times list/array are the times at which you want the mesh computed and
exposed (and then available for plotting). Optionally, you can pass
compute_phases
<http://phoebe-project.org/docs/latest/tutorials/compute_times_phases>
instead if that is more convenient.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#541 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AWANX4DSPJGS3H3VIZZEMM3UNJ67NANCNFSM5GC4QWEQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Beta Was this translation helpful? Give feedback.
-
hello for entering data to python3 should i write parameters of flux,and phase parameter ? or all parameters in b.add_dataset('lc')
print(b.get_dataset(kind='lc', check_visible=False)) and writing Parameter Set: 30 parameters
times@lc01@dataset: [] d
fluxes@lc01@dataset: [] W / m2
passband@lc01@dataset: Johnson:V
intens_weighting@lc01@dataset: energy
compute_times@lc01@dataset: [] d
C compute_phases@lc01@dataset: []
phases_t0@lc01@dataset: t0_supconj
mask_enabled@lc01@dataset: True
mask_phases@lc01@dataset: []
solver_times@lc01@dataset: auto
sigmas@lc01@dataset: [] W / m2
sigmas_lnf@lc01@dataset: -inf
pblum_mode@lc01@dataset: component-coupled
pblum_component@lc01@dataset: primary
pblum_dataset@lc01@dataset:
pbflux@lc01@dataset: 1.0 W / m2
l3_mode@lc01@dataset: flux
l3@lc01@dataset: 0.0 W / m2
l3_frac@lc01@dataset: 0.0
exptime@lc01@dataset: 0.0 s
ld_mode@primary@lc01@dataset: interp
ld_mode@secondary@lc01@dataset: interp
ld_func@primary@lc01@dataset: logarithmic
ld_func@secondary@lc01@dataset: logarithmic
ld_coeffs_source@primary@lc...: auto
ld_coeffs_source@secondary@...: auto
ld_coeffs@primary@lc01@dataset: [0.5 0.5]
ld_coeffs@secondary@lc01@da...: [0.5 0.5]
pblum@primary@lc01@dataset: 12.566370614359172 W
pblum@secondary@lc01@dataset: 12.566370614359172 W
Beta Was this translation helpful? Give feedback.
All reactions