sample_number
int64 8
203k
| abstract
stringlengths 21
17.4k
| article
stringlengths 0
18.9k
| compressed_article
stringlengths 0
10.9k
| compression_time
float64 0
0.78
| original_tokens
int64 0
3.79k
| compressed_tokens
int64 0
2.29k
| token_saving
stringclasses 2
values |
|---|---|---|---|---|---|---|---|
18,343
|
state - of - the - art algorithms for semantic visual tasks such as image classification and semantic segmentation are based on the use of convolutional neural networks .
these networks are commonly trained , and evaluated , on large annotated datasets of high - quality images that are free of artifacts . in this paper , we investigate the effect of one such artifact that is quite common in natural capture settings blur .
we show that standard pre - trained network models suffer a significant degradation in performance when applied to blurred images .
we investigate the extent to which this degradation is due to the mismatch between training and input image statistics .
specifically , we find that fine - tuning a pre - trained model with blurred images added to the training set allows it to regain much of the lost accuracy . by considering different combinations of sharp and blurred images in the training set ,
we characterize how much degradation is caused by loss of information , and how much by the uncertainty of not knowing the nature and magnitude of blur .
we find that by fine - tuning on a diverse mix of blurred images , convolutional neural networks can in fact learn to generate a blur invariant representation in their hidden layers .
broadly , our results provide practitioners with useful insights for developing vision systems that perform reliably on real world images affected by blur .
|
recent years have seen tremendous progress in the development of computer vision algorithms for semantic tasks such as image classification @xcite , object detection @xcite , and semantic segmentation @xcite , with most modern state - of - the - art methods based on convolutional neural networks .
these methods owe much of their success to the availability of large image datasets @xcite with ground truth data collected through human annotation . to build datasets at such scales ,
researchers have had to rely on images freely shared by regular users .
but the statistics of photographs people upload to a photo - sharing website could be different from those a vision system encounters while operating .
this is a concern since modern methods are not only trained , _ but also evaluated _
, on these datasets .
in particular , there is significant potential for a disparity between the low - level statistics of images a vision algorithm receives as training input , and publicly shared photographs .
this is because users tend to upload photographs , often selected from among multiple trials of capturing the same object , that are high - quality and free of artifacts saturation , distortions , and motion and defocus blur . in this paper , we concentrate on blur , since it is quite easy to end up with a blurred image even with a high - quality camera , especially in a setting where the user is not concerned about image quality ( , when the image is being taken for a vision application , rather than for photography ) , or when the image is being captured automatically by a device or robot .
we are also motivated by the recent findings of dodge and karam @xcite , who show that existing image classification networks exhibit significant lower accuracies when evaluated on images with gaussian blur .
we conduct a systematic survey of the effect of blur on the performance of convolutional neural networks for image recognition .
we begin by evaluating pre - trained network models on images degraded with a range of different blurs , and reach a similar conclusion as @xcite : state - of - the - art networks trained on sharp image datasets make unreliable predictions when evaluated on blurry images .
moreover , we find that these unreliable predictions are accompanied by underlying high - entropy class distributions ( , see fig .
[ fig : teaser ] ) .
this is encouraging since it can allow vision systems using these networks to account for the low - confidence of their predictions ( and , say , ask the user to take another image ) .
we also examine the interaction between blur and multi - scale processing : applying the trained network at multiple resized versions of the input image is commonly used as a way to build robustness to variations to the relative scale of objects in the image .
however , we find that the inclusion of larger sized versions is detrimental when blur may be present , since it exaggerates the effect of such blur .
next , we demonstrate that much of this performance degradation is an artifact of these models being trained only on sharp images , rather than due to an intrinsic absence of information in blurry images , or a deficiency in the networks architectures . by fine - tuning with a mix of blurry and sharp images for only three epochs , we find that a network trained only on sharp images is able to recover most of its lost accuracy on blurry images . in these experiments , we also investigate the role of uncertainty about the nature of blur in the input , by fine - tuning over different distributions of blur .
we find that a model fine - tuned with a fairly diverse range of blurs performs reasonably well , and is only slightly less accurate than a network that is trained and evaluated on a single blur level ( which in - turn performs worse on other blur levels ) .
this demonstrates the ability of the network to learn a level of blur _ invariance _ , which we further examine by comparing the activations for a sharp and blurred image pair , at different layers in the network .
finally , in addition to image classification , we find that these observations also largely carry over to the task of semantic segmentation , where fine - tuning with blurry images is able to improve accuracy in both identifying and localizing objects in blurred images . broadly , our findings reinforce the fact that convolutional neural networks are resilient when presented with an out - of - distribution input , they are able to signal a low - confidence in their predictions , and are quickly able to adapt when provided with additional training data , without any modification in architecture .
moreover , our experiments provide useful insight for designing vision systems that need to reason with potentially blurred images in a practical , non - idealized , setting .
blur is a degradation in image quality caused by camera sensor pixels averaging light from overlapping regions in the scene , typically due to defocus or motion in the capture interval . often , an observed blurry image can be well - modeled as a convolution of a _ latent _ sharp image ( , the image that would have been captured in the absence of blur ) , and a blur kernel or point - spread - function . in the case of defocus blur , this kernel is an image of the lens aperture ( typically a disk ) scaled by a factor proportional to the distance of the imaged object from the focal plane . for motion blur , it is the projection of the moving object or camera s trajectory during the exposure interval
. both kinds of blur kernels are `` low - pass '' filters , , they lead to a loss or attenuation of high - frequency image detail . reversing the effect of blur to obtain a sharp image from a blurred observation is an ill - posed inverse problem , especially when the blur is unknown .
graphics and vision researchers have made significant progress on this problem across the last decade @xcite including with recent neural network - based methods @xcite .
nevertheless , image deblurring remains a challenging and computationally expensive task .
however , our goal in this paper is different . instead of processing blurred images to recover sharp photographs for human consumption , we seek to understand , and ameliorate , the effect of using these images as input to algorithms for recognition .
nearly all state - of - the - art computer vision algorithms for semantic visual tasks rely on the use of convolutional neural networks @xcite .
critical to their success is the ability to train on large annotated datasets , like imagenet @xcite and pascal voc @xcite both of which contain photographs downloaded from the photo sharing website flickr.com .
therefore , these datasets contain images that users amateurs and professional photographers alike have _ chosen _ to upload , and are consequently of high - quality with few artifacts .
since standard recognition benchmarks perform their evaluation on held - out portions of the same dataset , the reported performance of state - of - the - art algorithms can at best be interpreted to accurately characterize their expected accuracy on similar high - quality image data . to address this ,
dodge and karam @xcite recently carried out an evaluation of standard neural network - based methods for image classification on images degraded by gaussian blur , and reported a significant drop in classification accuracy .
karahan @xcite perform a similar evaluation for face - recognition , while ullman @xcite contrasted the drop in the accuracy of computational recognition to that of humans .
we too study the classification accuracy of pre - trained networks on blurry images for a larger family of realistic blur kernels and find a similar drop in performance . however , we find that while networks trained on sharp images make erroneous predictions on blurred input , they do so with low - confidence .
moreover , we show that this drop is mainly caused by the high - quality bias in the images used for training these networks , and that performance on blurred images can be significantly improved with adding such images to the training set without requiring a change in their architecture .
we also examine the ability of the networks to learn to perform consistently across a diversity of possible blurs , and find that these networks are able to do so by learning feature representations that are invariant to blur .
finally , we investigate the impact of blur on a different task semantic segmentation .
we find that blur affects the ability of pre - trained networks to both identify and localize objects , but that like for classification , this ability can be recovered to a considerable extent by training with blurred images .
therefore , we find that convolutional neural networks can succeed despite degradations in image quality from blur .
this is consistent with such networks having been used quite successfully for the classification of very low - quality images , albeit on smaller benchmarks , cifar-100 @xcite that contains extremely low - resolution images of size @xmath0 . in this context , recently peng @xcite explored the potential of jointly training with high - resolution images to boost performance on low - resolution inputs .
our work also demonstrates the success of neural networks in the face of lower image quality , with joint training with images of varying quality , to deal with degradation due to optical blur for large - scale visual recognition .
finally , it is worth noting here the work of szegedy @xcite , who found that specific small - magnitude perturbations could cause network models to produce erroneous estimates .
however , these perturbations were not random , and determined through an optimization process .
in contrast , our focus is on errors due to a naturally prevalent form of image degradation blur .
we begin by evaluating the performance of state - of - the - art convolutional neural network models
vgg-16 @xcite and resnet @xcite on blurred versions of the imagenet @xcite standard 2012 validation set .
these models were trained on the imagenet training set that comprised of largely sharp , high - quality images .
we generate the blurred versions of the validation set by convolving the original sharp images with a range of different blur kernels .
note that both @xcite and @xcite resize their input to one or more pre - determined scales ( to match their smaller side to the scale value ) , and then compute class probability distributions by feeding this resized image to their network model .
however , images in the imagenet dataset are of various sizes
. therefore , rather than blur the original images directly , we first resize the image to a fixed scale ( 384 in our experiments ) and then convolve the result with the blur kernel .
this ensures that the effective blur for a chosen kernel is consistent across images , irrespective of their original size .
we then quantize the blurred intensities to form 8-bit images , which are then further rescaled and fed into the classification networks .
we begin by reporting the performance vgg-16 network @xcite for a diverse set of blur kernels in table [ tab : origall ] .
we consider disk kernels of different radii @xmath1 ( that have a constant value within their radius , and zero outside ) to simulate defocus blur , and with horizontal and vertical box kernels of single pixel width and different lengths that correspond to motion blur ( for uniform linear motion ) . like @xcite
, we also report results on blurring with gaussian kernels of different standard deviations @xmath2 .
all kernels are normalized to be unit sum , , they have a `` dc value '' of one .
.top-5 accuracy on sharp and blurred versions of imagenet val images , using the original * vgg-16 * network that was trained on sharp images .
we report performance for applying the network at different scales , where the input images were resized to make their smaller side fit the indicated scale value . [ cols="^,^,^,^,^ " , ]
state - of - the - art network models trained on high - quality image datasets make unreliable , albeit low - confidence , predictions when they encounter blur in their inputs . in this work
, we found that much of this unreliability is due to an inability to generalize from their sharp training sets , and that fine - tuning these models for a relatively small number of epochs with blurred training examples significantly improves their performance on blurry inputs .
moreover , we showed that standard architectures are able to deal with a diverse range of blurs , by learning to produce internal representations that are invariant to blur .
our analysis provides insights for building and deploying vision systems in real - world settings where blur may be present .
more broadly , we expect our findings to be relevant for other forms of imaging non - idealities beyond blur . in future work
, we plan to explore un - supervised ways of achieving robustness to image artifacts , when we have access to examples of distorted natural images , but not to a precise model for the distortion .
|
recent years seen progress in development computer vision algorithms for semantic tasks image classification object detection semantic segmentation with modern methods based on convolutional neural networks methods success to large image datasets with ground data through human annotation to build datasets researchers rely on images shared by users statistics of photographs sharing website could be different from vision system concern since modern methods trained evaluated on these datasets significant potential for disparity between low - level statistics of images and publicly shared photographs users upload photographs high - quality free of artifacts saturation distortions motion defocus blur in paper concentrate on blur easy to blurred image even with high - quality camera especially user not concerned about image quality for vision application or captured automatically by motivated by recent findings of dodge and karam existing image classification networks exhibit lower accuracies on images with gaussian blur conduct systematic survey of effect of blur on performance of convolutional neural networks for image recognitionevaluating pre - trained network models on images degraded with blurs similar conclusion as @xcite : networks trained on sharp image datasets make unreliable predictions on blurry images unreliable predictions accompanied by high - entropy class distributions fig vision systems to account for low - confidence predictions ask user take another image examine interaction between blur multi - scale processing applying trained network at multiple resized versions input image robustness to variations scale inclusion of larger sized versions detrimental when blur present exaggerates effect performance degradation artifact of models trained only on sharp images absence information blurry images deficiency in fine - tuning with mix of blurry and sharp images for three epochs network trained only on sharp images most lost accuracy on blurry investigate role of uncertainty about nature of blur in input fine - tuning over different distributions blur model fine - tuned with diverse range of blurs performs well slightly less accurate than network trained on single blur level performs worse on otherdemonstrates network to learn blur invariance examine comparing activations for sharp and blurred image pair at different layers network observations carry over to semantic segmentation fine - tuning with blurry images accuracy identifying localizing objects findings reinforce convolutional neural networks resilient out - of - distribution input signal low - confidence in predictions quickly adapt when additional training data without modification architecture experiments provide insight for designing vision systems with blurred images blur degradation image quality by camera sensor pixels averaging light from overlapping regions due to defocus or motion capture interval observed blurry image modeled as convolution of latent _ sharp image blur kernel function defocus blur kernel is image of lens aperture scaled by factor proportional to distance imaged object from focal plane motion blur projection of moving object camera s trajectory during exposure interval both blur kernels are low - pass filters lead to loss of high - frequency image detail reversing effect blur to obtain sharp image from blurred observation is ill - posed inverse problem especially when blur unknowngraphics vision researchers progress on problem including recent neural network - methods image deblurring remains challenging expensive task our goal paper different instead of processing blurred images sharp seek to understand ameliorate effect of using images as input to algorithms for recognition computer vision algorithms for visual rely on convolutional neural networks critical success train on large annotated datasets like imagenet pascal voc @xcite contain photographs downloaded from flickr.com datasets contain images high - quality few artifacts standard recognition benchmarks on portions same dataset performance of state algorithms can characterize expected accuracy on high - quality image data dodge karam @xcite standard neural network - methods for image classification on images degraded by gaussian blur reported significant drop in classification accuracy karahan similar evaluation for face - recognition ullman @xcite contrasted drop accuracy recognition classification accuracy of pre - trained networks on blurry images similar drop in performance networks trained on sharp images make erroneous predictions on blurred input with low - confidenceshow drop caused by high - quality bias in images for training networks performance on blurred images improved adding images training set without change architecture examine networks to learn across blurs learning feature representations invariant to blur impact blur on task semantic segmentation blur affects pre - trained networks to identify localize objects recovered by training with blurred images convolutional neural networks succeed despite degradations image quality from blur consistent with networks used for classification of low - quality images @xcite - explored training with high - resolution images boost performance on low - resolution inputs work demonstrates success of neural networks lower image quality joint training with images varying quality deal with degradation due to optical blur for large - scale visual recognition work of szegedy @xcite found small - magnitude perturbations cause network models produce erroneous estimates perturbations not random determined through optimization process focus on errors due to image degradation blur performance of convolutional neural network models vgg-16 @xcite resnet @xcite on blurred versions of imagenet @xcite standard 2012 validation setmodels trained on imagenet training set sharp high - quality images generate blurred versions convolving original sharp images with different blur kernels @xcite and resize input to pre - determined scales compute class probability distributions resized image to network model images in imagenet dataset various sizes resize image to fixed scale ( 384 convolve result with blur kernel ensures effective blur consistent across images quantize blurred intensities form 8-bit images rescaled fed into classification networks performance vgg-16 network @xcite for diverse blur kernels table consider disk kernels of different radii @xmath1 constant value zero outside simulate defocus blur horizontal and vertical box kernels of single pixel width different lengths motion blur for report results on blurring with gaussian kernels of different standard deviations @xmath2 all kernels normalized unit sum dc value of one .top-5 accuracy on sharp and blurred versions imagenet val images using original vgg-16 * network sharp images report performance for network at different scales input images resized to fit scale valuecols="^ state network models high - quality image datasets make unreliable low - confidence predictions blur unreliability due to inability to generalize from sharp training sets fine - tuning models for small epochs with blurred training improves performance on blurry inputs standard architectures deal with blurs internal representations invariant to blur analysis provides insights for building deploying vision systems in real - world settings blur expect findings relevant for imaging non - idealities beyond blur future work plan to explore un - supervised achieving robustness to image artifacts access distorted natural images precise model distortion
| 0.433716
| 2,569
| 1,212
|
, Saving $0.1 in GPT-4.
|
18,347
|
results on soft and hard diffraction are briefly reviewed with emphasis on the interplay among factorization properties , universality of rapidity gap formation and unitarity .
|
the signature of a diffractive event in @xmath0 collisions is a leading proton or antiproton and/or a rapidity gap defined as a region of pseudorapidity , @xmath1 , devoid of particles .
hard diffraction is a term used to refer to a diffractive process containing a hard partonic scattering ( fig . 1 ) .
in deep inelastic scattering ( dis ) , diffraction is identified by a leading proton in the final state adjacent to a rapidity gap ( fig . 2 ) .
the rapidity gap is presumed to be due to the exchange of a pomeron , whose generic qcd definition is a color - singlet combination of quarks and/or gluons carrying the quantum numbers of the vacuum . 0.65 in -10.5 cm -3,5 cm sddddpe + 2.65 cm fig . 1 : dijet production in @xmath0 single ( a ) and double ( b ) diffraction , and in double pomeron exchange ( c )
. -0.6 in -2.9 in fig .
2 : diagram for diffractive deep inelastic scattering at hera .
1em in addition to its dependence on @xmath2-bjorken and @xmath3 , the _ diffractive _ structure function ( dsf ) of the leading nucleon could also depend on the nucleon s fractional momentum loss @xmath4 and its 4-momentum transfer squared @xmath5 .
the central question in diffraction is the validity of qcd factorization , i.e. whether hard diffraction processes can be described in terms of parton level cross sections convoluted with a universal dsf .
the question about qcd factorization in diffraction was addressed
head on " by a comparison @xcite between the dsf measured by cdf in dijet production at the tevatron and the prediction based on parton densities extracted from diffractive dis at hera .
the dsf at the tevatron was found to be suppressed relative to the prediction from hera by a factor of @xmath6 .
this result confirmed previous cdf results from diffractive @xmath7 @xcite , dijet @xcite and @xmath8-quark @xcite production at @xmath9=1800 gev , and was corroborated by more recent cdf results on diffractive @xmath10 @xcite production at 1800 gev and dijet production at 630 gev @xcite .
although factorization breaks down severely between hera and the tevatron , it nevertheless holds within the hera data and within the single - diffractive data at the tevatron at the same center of mass collision energy .
this is demonstrated by the fact that the gluon parton distribution function ( pdf ) derived from dis adequately describes diffractive dijet production at hera @xcite , while at the tevatron a consistent gluon pdf is obtained from the measured rates of diffractive @xmath7 , dijet , @xmath8-quark and @xmath10 production @xcite .
however , factorization was found to break down at the tevatron between the structure functions measured in single - diffraction and in double - pomeron exchange ( dpe ) at @xmath111800 gev @xcite .
the breakdown of qcd factorization observed in hard diffraction is related to the breakdown of regge factorization responsible for the suppression of soft diffraction cross sections at high energies @xcite .
this may seem paradoxical , but since the rapidity gap formation is a non - perturbative effect it should not come as a surprise .
thus , the nuts and bolts of diffraction " are contained in soft diffraction processes .
soft diffraction has been traditionally treated theoretically in the framework of regge theory . for large rapidity gaps ( @xmath12 ) , the cross sections for single and double ( central ) diffraction can be written as @xcite @xmath13\delta \eta}\right ] \left[\kappa\beta^{2}(0 ) { \left(\frac{s'}{\textstyle s_{\circ}}\right)}^{\alpha(0)-1}\right ] & \;\;\;&{d^{3}\sigma_{dd}\over dtd\delta \eta d\eta_c}= \left[{\kappa\beta^{2}(0)\over 16\pi } e^{2[\alpha(t)-1]\delta \eta}\right ] \left[\kappa\beta^{2}(0){{\left(\frac{s'}{\textstyle s_{\circ}}\right)}}^ { \alpha(0)-1 } \right]\\\end{aligned}\ ] ] where @xmath14 is the pomeron trajectory , @xmath15 the coupling of the pomeron to the ( anti)proton , and @xmath16 the ratio of the triple - pomeron to the pomeron - proton couplings .
the above two equations are remarkably similar . in each case , there are two terms : * the first term , which is @xmath17\}^2 $ ] and thus depends on the rapidity gap , * and the second term , which is @xmath18exp@xmath19 $ ] and depends on the pseudorapidity interval @xmath20 within which there is particle production . in the parton model ,
the second term is interpreted as the sub - energy total cross section , while the first term is the square of the elastic scattering amplitude between the diffractively excited state and the nucleon in sd , or between the two diffractive states in dd .
the factor @xmath21 in the second term may then be interpreted as being due to the color matching required for a diffractive rapidity gap to occur . since the sub - energy cross section is properly normalized , the first factor in the equations may be thought of as the rapidity gap probability and _ renormalized _ to unity .
a model based on such a renormalization procedure @xcite has yielded predictions in excellent agreement with measured sd and dd cross sections , as seen in figs . 3 and 4 .
the renormalized rapidity gap probability is by definition energy independent and thus represents a scaling behaviour .
this procedure has the added advantage of preserving unitarity , which otherwise would be violated . convoluting the gap probability with partonic level cross sections yields hard diffractive cross sections in general agreement with observations , explaining the factorization properties discussed in the previous section @xcite .
-2.9 cm fig .
3 : the @xmath0 total sd cross section exhibits an @xmath22-dependence consistent with the renormalization procedure of ref .
@xcite , contrary to the @xmath23 behaviour expected from regge theory ( figure from ref .
@xcite ) . 0.05 cm fig .
4 : the @xmath0 total dd ( central gap ) cross section agrees with the prediction of the _ renormalized rapidity gap _ model @xcite , contrary to the @xmath23 expectation from regge theory ( figure from ref .
the renormalization method used to calculate the sd and dd cross sections can be extended to multi - gap diffractive events .
below , we outline the procedure for calculating the differential cross section for a 4-gap event ( we use rapidity , @xmath24 , and pseudorapidity , @xmath25 , interchangeably ) . -1 in ( 6,1)(1,0 ) ( 1,0)(2,0)6 ( 2,0)(2,0)3(0.8,0.5)[t ] ( 1.9,-0.25)@xmath26 ( 2.9,-0.25)@xmath27 ( 3.9,-0.25)@xmath28 ( 4.9,-0.25)@xmath29 ( 5.9,-0.25)@xmath30 ( 2.8,0.5)@xmath31 ( 3.35,-0.65)@xmath32 ( 4.8,0.5)@xmath33 ( 1.25,-0.9)@xmath34 ( 2.9,-0.9)@xmath35 ( 4.9,-0.9)@xmath36 ( 6.7,-0.9)@xmath37 ( 1.15,0.5)@xmath38 ( 1.85,0.5)@xmath39 ( 3.85,0.5)@xmath40 ( 5.85,0.5)@xmath41 ( 6.6,0.5)@xmath42 1em the calculation of the differential cross section is based on the parton - model scattering amplitude : @xmath43 for the rapidity regions @xmath44 , where there is particle production , the @xmath45 parton model amplitude is used and the _ sub - energy cross section _ is @xmath46 . for rapidity gaps , @xmath47 , which can be considered as resulting from elastic scattering between diffractively excited states , the square of the full parton - model amplitude is used ,
@xmath48 , and the form factor @xmath49 is included for a surviving nucleon .
the _ gap probability _ ( product of all rapidity gap terms ) is then normalized to unity , and a _ color matching factor _
@xmath21 is included for each gap . *
@xmath51 * @xmath52 $ ] ( @xmath53 ) * @xmath54 ^ 2\times [ \beta(t_1)\beta(t_4)]^2=n_{gap } \cdot e^{2\textstyle{\epsilon}\delta y}\cdot f(v_i)|_{i=1}^{10}$ ] ( @xmath55 ) + where @xmath56 is the factor that normalizes @xmath57 over all phase space to unity .
the last equation shows that the renormalization factor of the gap probability depends only on @xmath22 ( since @xmath58 ) and not on the number of diffractive gaps .
thus , the ratio of dpe to sd cross sections is expected to be @xmath59 , with no additional energy dependent suppression .
this can be tested at the tevatron , where one may also study events with a central rapidity gap within single - diffractive clusters .
the study of events with more than two gaps will have to await the commissioning of the lhc .
# 1 # 2 # 3 mod .
. lett . * # 1 * , # 2 ( # 3 ) # 1 # 2 # 3 nucl . phys . *
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 phys . lett . * # 1 * , # 2 ( # 3 ) # 1 # 2 # 3 phys . rep . *
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 phys . rev . *
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 phys .
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 rev .
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 nuc .
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 z. phys . *
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 e. phys .
j. * # 1 * , # 2 ( # 3 ) # 1 # 2 # 3 int . j. mod . phys . *
# 1 * , # 2 ( # 3 ) # 1 # 2 # 3 j. high en . phys . * # 1 * , # 2 ( # 3 ) 99 t. affolder _ et al .
_ , cdf collaboration , 84 5083 2000 f. abe _
et al . _ ,
cdf collaboration , 78 2698 1997 f. abe _
et al . _ ,
cdf collaboration , 79 2636 1997 t. affolder _
et al . _ , cdf collaboration , 84 232 2000 t. affolder _
et al . _ , cdf collaboration , submitted to phys .
letters ; arxiv : hep - ex/0107071 t. affolder _
_ , cdf collaboration , submitted to phys .
letters ; arxiv : hep - ex/0109025 c. adloff _
et al . _ ,
h1 collaboration , arxiv : hep - ex/0012151 t. affolder _
et al . _ ,
cdf collaboration , 85 4217 2000 k. goulianos , b358 379 1995 t. affolder _
et al . _ , cdf collaboration , 87 141802 2001 k. goulianos , arxiv : hep - ph/9806384
|
signature diffractive event in @xmath0 collisions is leading proton antiproton rapidity gap pseudorapidity devoid particles hard diffraction process hard partonic scattering deep inelastic scattering diffraction identified by leading proton final state adjacent rapidity gap 2 rapidity gap due to exchange pomeron color - singlet combination quarks gluons carrying quantum numbers vacuum 0.65 in -10.5 cm -3,5 cm + 2.65 cm fig . 1 dijet production in @xmath0 single double diffraction double pomeron exchange -0.6 in -2.9 in fig 2 diagram diffractive deep inelastic scattering at hera @xmath2-bjorken @xmath3 diffractive structure function leading nucleon on fractional momentum loss @xmath4 4-momentum transfer squared @xmath5 central question validity of qcd factorization diffraction parton level cross sections universal dsf addressed comparison between dsf measured dijet production at tevatron prediction parton densities from diffractive dis at hera dsf tevatron suppressed by factor of @xmath6 .result confirmed cdf results from diffractive @xmath7 dijet-quark at=1800 gev corroborated by recent results on @xmath10 1800 dijet 630 gev factorization breaks down between hera tevatron holds hera single - diffractive data at tevatron same center of mass collision energy gluon parton distribution function describes diffractive dijet production at hera @xcite tevatron consistent gluon pdf obtained from diffractive @xmath7 dijet-quark production factorization down at tevatron between structure functions in single - diffraction double - pomeron exchange at @xmath111800 gev @xcite breakdown of qcd factorization in hard diffraction related to breakdown regge factorization suppression soft diffraction cross sections at high energies @xcite rapidity gap formation non - perturbative diffraction contained in soft diffraction processes treated in regge theorylarge rapidity gaps @xmath12 ) cross sections single double diffraction written as @xcite @xmath13\delta \eta}\right\left[\kappa\beta^{2}(0 )\alpha(0)-1}\right{d^{3}\sigma_{dd}\over dtd\delta \eta\eta_c}=\kappa\beta^{2}(0) 16\pi{2[\alpha(t)-1]\delta \eta}\right\kappa\beta^{2}(0){{\alpha(0)-1 }{aligned @xmath14 pomeron trajectory @xmath15 coupling pomeron to anti)proton @xmath16 ratio triple - pomeron to pomeron - proton couplings two equations similar two terms first term @xmath17 depends on rapidity gap second @xmath18exp@xmath19 depends on pseudorapidity interval @xmath20 particle production parton model second term sub - energy total cross section first square of elastic scattering amplitude between diffractively excited state nucleon factor @xmath21 second term due to color matching diffractive rapidity gapsub - energy cross section normalized first factor rapidity gap probability renormalized to unity model renormalization @xcite predictions with sd dd cross sections figs 3 4 renormalized rapidity gap probability energy independent represents scaling behaviour unitarity convoluting gap probability with partonic level cross sections yields hard diffractive cross sections observations factorization properties -2.9 cm fig 3 @xmath0 total sd cross section @xmath22-dependence with renormalization procedure contrary to @xmath23 0.05 cm 4 @xmath0 total dd central gap cross section agrees with prediction renormalized rapidity gap model @xcite contrary renormalization method extended to multi - gap diffractive events procedure calculating differential cross section for 4-gap event rapidity @xmath24 pseudorapidity @xmath25 -1 in ( 6,1)(1,0 ) 1,0)(2,0)6 ( 2,0)(2,0)3(0.8,0.5) 1.9,-0.25)@xmath26 2.9,-0.25)@xmath27 3.9,-0.25) 4.9,-0.25) 5.9,-0.25) 2.8,0 3.35,-0.@xmath32 ( 4.8,0.5) ( 1.25,-0.9) ( 2.9,-0.9) ( 4.9,-0.9) ( 6.7,-0.9) ( 1.15,0.5) ( 1.85,0.5) ( 3.85,0.5) ( 5.85,0.5) ( 6.6,0.5)@xmath42 calculation differential cross section based on parton - model scattering amplitude rapidity regions @xmath45 parton model amplitude sub - energy cross section @xmath46 rapidity gaps @xmath47 full parton - model amplitude @xmath48 form factor @xmath49 for surviving nucleon gap probability rapidity normalized to unity color matching factor @xmath21 included for each gap @xmath51 @xmath52 @xmath53 @xmath54 @xmath55 @xmath56 normalizes @xmath57 phase space to unity renormalization factor gap probability depends on @xmath22 not number diffractive gaps ratio of dpe to sd cross sections @xmath59 no additional energy dependent suppressiontested at tevatron study events central rapidity gap single - diffractive clusters study events more than two gaps await commissioning lhc . # 1 # 2 # 3 mod . lett . 2 3 1 2 # 3 nucl . phys . 2 3 2 # 3 phys . lett 2 3 phys . rep. 3 1 2 # 3 . rev . 2 3 1 2 # 3 phys . 1 2 3 rev . 1 2 # 3 nuc . 3 1 # 2 # 3 z. phys . 2 3 1 # 2 # 3 e. phys . j. 2 3 1 # 2 # 3 int . j. mod . phys . 2 3 1 # 2 # 3 j. high en . phys . # 2 ( # 3 ) 99 affolder _ et al . cdf collaboration , 84 5083 2000 f cdf collaboration 78 2698 1997 cdf collaboration 79 2636 1997 affolder cdf collaboration 84 232 2000 affolder cdf collaboration submitted phys . letters arxiv hep - ex/0107071 affolder cdf collaboration submitted phys .hep - ex/0109025 adloff h1 collaboration hep - ex/0012151 affolder cdf 85 4217 2000 goulianos b358 379 1995 affolder cdf 87 141802 2001 goulianos hep - ph/9806384
| 0.426135
| 2,896
| 1,539
|
, Saving $0.1 in GPT-4.
|
18,355
|
we establish a new algorithm that generates a new solution to the einstein field equations , with an anisotropic matter distribution , from a seed isotropic solution .
the new solution is expressed in terms of integrals of an isotropic gravitational potential ; and the integration can be completed exactly for particular isotropic seed metrics .
a good feature of our approach is that the anisotropic solutions necessarily have an isotropic limit .
we find two examples of anisotropic solutions which generalise the isothermal sphere and the schwarzschild interior sphere .
both examples are expressed in closed form involving elementary functions only .
|
numerous models of static perfect fluid spheres , in the context of general relativity , have been constructed in the past because these are first approximations in building a realistic model for a star .
lists of exact solutions to the einstein field equations modelling relativistic perfect fluid spheres are given in several treatments @xcite .
in these works it is assumed that the matter distribution is isotropic so that the radial pressure is the same as the transverse pressure .
a strong case can be made to study matter distributions which are anisotropic in which the radial component of the pressure is not the same as the transverse component .
anisotropy should not be neglected when analysing the critical mass and the redshift of highly compact bodies , and it is important in modelling boson stars and strange stars .
consequently anisotropy has been studied extensively in recent years by a number of researchers within the framework of general relativity @xcite .
most solutions of the einstein field equations with isotropic matter have been obtained in an ad hoc approach .
recent investigations have attempted to generate isotropic models using a systematic and algorithmic approach@xcite .
however there exist very few analogous results for generating anisotropic models . in this regard maharaj and chaisi@xcite
have established an algorithm that produces a new anisotropic solution from a given seed isotropic line element . here
we present a different algorithm that generates a new anisotropic solution .
the present algorithm has a simpler form and involves fewer integrations , and it is consequently easier to apply .
a desirable physical feature of our approach is that these solutions have an isotropic limit ; we expect that gravity acts to eventually isotropize matter in the absence of other external forces .
note that many of the exact solutions found previously remain anisotropic with no possibility of regaining an isotropic matter distribution in a suitable limit@xcite .
the main objective of this paper is to demonstrate that it is possible to generate anisotropic solutions from a given isotropic solution . to achieve this we need to complete an integration which we show is possible for particular metrics . in
2 we provide the fundamental field equations for isotropic and anisotropic matter .
the field equations are presented as a first order system of differential equations .
the algorithm that produces a new anisotropic solution is described in 3 . as a first example we use the isothermal model to produce a new anisotropic solution in 4 . as a second example we use the schwarzschild interior model to produce a new anisotropic solution in 5 . in both examples
the solution can be given explicitly in terms of elementary functions which makes it possible to study the physical features .
we briefly study the behaviour of the anisotropy factor in both examples .
we utilise a form of the einstein field equations in which only first order derivatives appear .
this representation assists in simplifying the integration process as pointed out by chaisi and maharaj@xcite whose notation and conventions we follow .
the line element for static spherically symmetric spacetimes is given by @xmath0 where @xmath1 and @xmath2 are arbitrary functions .
the energy - momentum tensor , for nonradiating matter , for isotropic distributions has the form @xmath3 where @xmath4 is the energy density and @xmath5 is the isotropic pressure .
these are measured relative to the comoving four - velocity @xmath6 .
we define the mass function as @xmath7 consequently @xmath8 is the total mass of a sphere of radius @xmath9 .
the einstein field equations are equivalent to the system @xmath10 where we have used ( [ metric2])-([massfun ] ) .
the energy - momentum tensor for anisotropic matter which is not radiating has the form @xmath11 the quantity @xmath12 is the anisotropic stress tensor ; the spacelike vector @xmath13 is orthogonal to the fluid four - velocity @xmath6 and @xmath14 is the magnitude of the stress tensor .
the einstein field equations , with the metric ( [ metric2 ] ) and the matter content ( [ taniso ] ) , can be written in the form @xmath15 for anisotropic matter distributions .
the radial pressure @xmath16 is distinct from the tangential pressure @xmath17 .
it is convenient to write @xmath16 and @xmath17 in the form @xmath18 where @xmath19 provides a measure of anisotropy .
note that for isotropic matter @xmath20 and we regain ( [ efes:1])-([efes:3 ] ) .
in this section we establish a procedure for generating a new anisotropic solution of the einstein field equations from a specified isotropic solution .
we start by considering the einstein field equations ( [ efes:1])-([efes:3 ] ) with isotropic matter distribution .
we assume that an explicit solution to ( [ efes:1])-([efes:3 ] ) is known where @xmath21 and functions @xmath22 are explicitly given .
then the equations in ( [ efes:1])-([efes:3 ] ) are satisfied and we can write @xmath23 we next consider the einstein field equations ( [ efes2:1])-([efes2:3 ] ) with anisotropic matter distribution and seek an explicit solution . to this end
we propose the possible solution @xmath24 where @xmath25 are given by ( [ eq : isosol ] ) and @xmath26 are arbitrary functions , and we have set @xmath27 for convenience .
then the system ( [ efes2:1])-([efes2:3 ] ) becomes @xmath28[eq : aniso2 ] the systems ( [ eq : iso1])-([eq : iso3 ] ) and ( [ eq : aniso2:1])-([eq : aniso2:3 ] ) lead to @xmath29 we need to integrate ( [ eq : alphayprime ] ) to find the function @xmath30 .
the remaining functions @xmath31 and @xmath32 are defined in terms of @xmath30 .
two cases arise : @xmath33 and @xmath34 .
if @xmath33 then ( [ eq : x])-([eq : alphayprime ] ) has the solution @xmath35 the trivial solution ( [ eq : alphaxy0soln ] ) corresponds to the isotropic case .
thus this algorithm regains the isotropic solution in the appropriate limit .
if @xmath34 then we can eliminate @xmath32 from ( [ eq : alphayprime ] ) to get @xmath36 this differential equation can be written as @xmath37 after some simplification .
on integration ( [ eq : alphaprime ] ) leads to @xmath38 where @xmath39 is a constant of integration , @xmath40 , and we have set @xmath41 we can write ( [ eq : jint ] ) in the compact form @xmath42 equations ( [ eq : x ] ) , ( [ eq : y ] ) and ( [ eq : alphaj ] ) correspond to anisotropic matter . thus if given a known isotropic solution ( [ eq : isosol ] ) we can generate a new anisotropic solution ( [ eq : anisosol ] ) where @xmath43 and the integral @xmath44 is given by @xmath41 the integration in @xmath44 can be explicitly performed as @xmath45 is specified in the isotropic solution ( [ eq : isosol ] ) . note that ( [ eq : alphaxy:1])-([eq : alphaxy:3 ] ) applies to both cases @xmath46 and @xmath34 . if @xmath46 we can set @xmath47 and regain the isotropic result ( [ eq : alphaxy0soln ] ) .
when @xmath34 then @xmath40 and we regain the anisotropic equations ( [ eq : x ] ) , ( [ eq : y ] ) and ( [ eq : alphaj ] ) . it is remarkable that our simple ansatz leads to a new anisotropic solution of the einstein field equations .
this is subject to completing the integration in @xmath44 ; clearly this is possible for particular choices of the isotropic function @xmath45 .
we demonstrate two examples of anisotropic solutions for familiar choices of @xmath45 in the next two sections .
the algorithm that we have generated in this paper is easy to apply as there is only a single integration to be performed unlike the earlier algorithm of maharaj and chaisi@xcite which is more complicated and involves further integrations .
we believe that new anisotropic solutions that arise from our procedure are likely to produce realistic anisotropic stellar models .
we emphasise that a desirable feature of our approach is that our models contain an isotropic limit which is often not the case in other approaches .
as a first example we demonstrate the applicability of the algorithm in 3 by generating anisotropic isothermal spheres . the line element for the isothermal model@xcite has the form @xmath48 where @xmath49 is a constant .
the corresponding isotropic functions for ( [ eq : isothermalle ] ) are given by @xmath50 the energy density function has the form @xmath51 hence ( [ eq : isothermalisosol ] ) and ( [ eq : mu0iso ] ) imply that @xmath52 which is a linear barotropic equation of state .
isothermal spheres with the density profile @xmath53 and the equation of state ( [ eq : p0mu0 ] ) appear in a variety of models for both newtonian and relativistic stars@xcite .
they have been studied extensively in astrophysics as an equilibrium approximation to more complicated systems which are close to a dynamically relaxed state@xcite . with the isotropic functions ( [ eq : isothermalisosol ] ) we can evaluate the integral @xmath44 in ( [ eq : alphaxy:1 ] ) and we find @xmath54 which leads to the expressions @xmath55 consequently we obtain the new line element in the form @xmath56 and the matter variables have the analytic representation @xmath57 the isotropic isothermal sphere model ( [ eq : isothermalle ] ) produces the anisotropic isothermal sphere model ( [ eq : lelement ] ) utilizing our algorithm . with the parameter values
@xmath47 , we regain the conventional isothermal sphere .
the degree of anisotropy is @xmath58 mathematica@xcite was used to graph the anisotropy factor ( [ eq : isothermalsa ] ) .
the plots are as shown in figures [ fig : sisob ] and [ fig : sisobup ] for particular values of the parameters shown .
the anisotropy factor @xmath19 is plotted against the radial distance on the interval @xmath59 .
there is a singularity at @xmath60 that has been carried over from the other dynamical and metric functions .
however because constants @xmath61 and @xmath49 can be picked arbitrarily , the pair can be chosen such that @xmath62 is monotonically decreasing or increasing .
the physical considerations of a problem may lead to the choice of one profile as opposed to the other ; for example the @xmath62 profile in figure [ fig : sisob ] may be preferable where a stellar body with vanishing anisotropy as one moves from the center of the body to the boundary is considered . the @xmath62 profile in figure [ fig : sisobup ]
could be chosen over the one in figure [ fig : sisob ] for boson star models as proposed by dev and gleiser@xcite .
the fairly simple behaviour of the @xmath62 in these plots shows that a more extensive physical analysis of the solutions is possible , which will be carried out in future work .
as a second example we demonstrate the applicability of the algorithm in [ sec : algorithm ] by generating anisotropic schwarzschild spheres .
the line element for the interior schwarzschild model@xcite is @xmath63 where @xmath64 , @xmath65 and @xmath66 are constants .
the corresponding isotropic functions for ( [ eq : schwarzsle ] ) are given by @xmath67\right ) \label{eq : schwarzsisosols}\end{aligned}\ ] ] the energy density function has the form @xmath68 .
we therefore have @xmath69 for incompressible matter .
this is a reasonable approximation in particular situations as the interior of dense neutron stars and superdense relativistic stars are of near uniform density@xcite .
consequently the assumption ( [ eq : schwarzsmu0 ] ) of uniform energy density is often used to build prototypes of realistic stars in the modelling process@xcite .
the integral @xmath44 in ( [ eq : alphaxy:1 ] ) takes the form @xmath70 \nonumber\\ & & \times \left [ r^2\delta\left(a+b\delta\right ) \left(1+\frac{2br^2}{r^2\delta\left(a+b\delta\right)}\right)\left(2 + \frac{2br^2}{r^2\delta\left(a+b\delta\right ) } \right ) \right]^{-1 } \label{eq : jalphaschw}\\ & & \left.- \left(\frac{6}{r } + \frac{2br}{r^2\delta\left(a - b\delta\right)}\right)\left(1+\frac{2br^2}{r^2 \delta\left(a - b\delta\right)}\right)\left(2+\frac{2br^2}{r^2\delta\left(a -b\delta\right)}\right)^{-1 } \right\}\mbox{d}r\nonumber\end{aligned}\ ] ] with
the substitution @xmath71 , ( [ eq : jalphaschw ] ) becomes @xmath72 the above integral can be simplified with the help of partial fractions .
we obtain @xmath73 we have completed the integration and obtained @xmath44 in terms of the intermediate variable @xmath74 . in terms of the original variable @xmath75 ( in @xmath76 )
we can write @xmath44 as @xmath77 then the function @xmath30 in ( [ eq : alphaxy:1 ] ) becomes @xmath78 and ( [ eq : alphaxy:2 ] ) and ( [ eq : alphaxy:3 ] ) respectively lead to @xmath79 @xmath80 hence the new line element has the form @xmath81^{-1 } \mbox{d}r^2 + r^2\left(\mbox{d}\theta^2+\sin^2\theta\mbox{d}\phi^2\right)\label{eq : schwarzsle2}\end{aligned}\ ] ] and the matter variables have the form @xmath82 @xmath83 @xmath84 the isotropic schwarzschild sphere model ( [ eq : schwarzsle ] ) generates the anisotropic schwarzschild sphere model ( [ eq : schwarzsle2])-([last ] ) . with the parameter value
@xmath47 we regain the original interior schwarzschild sphere .
the degree of anisotropy has the form @xmath85 mathematica@xcite was once again used to plot the anisotropic factor ( [ eq : schwarzsb ] ) .
the resulting plot is shown in figure [ fig : schwrzisobup ] for chosen particular values of the parameters @xmath65 , @xmath66 , @xmath61 and @xmath9 .
other choices of these parameters may produce a different behaviour for @xmath19 .
the plot of @xmath19 against @xmath75 is in the interval @xmath86 .
the fact that the anisotropic factor is in closed form and the profile as shown in figure [ fig : schwrzisobup ] shows that physical analysis of this model can be investigated , which will be pursued at a later stage .
sdm and mc thank the national research foundation of south africa for financial support .
mc is grateful to the university of kwazulu - natal for a scholarship .
|
models of static perfect fluid spheres general relativity constructed first approximations realistic model for star exact solutions to einstein field equations modelling fluid spheres given in treatments @xcite assumed matter distribution isotropic radial pressure same as transverse pressure strong case to study matter distributions anisotropic radial pressure not same as transverse anisotropy critical mass redshift of compact bodies important in modelling boson stars strange stars anisotropy studied extensively by researchers general relativity solutions of einstein field equations with isotropic matter obtained ad hoc approach recent investigations attempted generate isotropic models systematic algorithmic approach few analogous results for generating anisotropic models maharaj and chaisi established algorithm new anisotropic solution from seed isotropic line element present different algorithm new anisotropic solution algorithm simpler form fewer integrations easier to apply solutions have isotropic limit gravity isotropize matter forces many exact solutions found previously remain anisotropic no possibility regaining isotropic matter distribution objective paper to demonstrate possible to generate anisotropic solutions from isotropic solution need to complete integration possible for particular metrics2 fundamental field equations for isotropic anisotropic matter first order system differential equations algorithm new anisotropic solution described in 3 first isothermal model new anisotropic solution 4 second schwarzschild interior model solution 5 solution elementary functions study physical features study behaviour anisotropy factor einstein field equations first order derivatives appear integration process chaisi maharaj line element for static spherically symmetric spacetimes by @xmath0 @xmath1 arbitrary functions energy - momentum tensor for nonradiating matter isotropic distributions @xmath3 @xmath4 energy density isotropic pressure measured relative to four - velocity @xmath6 mass function as @xmath7 @xmath8 total mass of sphere radius @xmath9 einstein field equations equivalent to system @xmath10 ( [ metric2])-([massfun ] ) energy - momentum tensor for anisotropic matter form @xmath11 quantity @xmath12 anisotropic stress tensor spacelike vector @xmath13 orthogonal to fluid four - velocity magnitude stress tensoreinstein field equations metric metric2 matter content taniso form @xmath15 for anisotropic matter distributions radial pressure @xmath16 distinct from tangential pressure @xmath17 write @xmath16 @xmath17 @xmath18 @xmath19 measure anisotropy isotropic matter @xmath20 regain efes:1])-([efes:3 ] procedure generating new anisotropic solution from isotropic solution considering equations efes:1])-([efes:3 isotropic matter distribution explicit solution to efes:1]-([efes:3 known @xmath21 functions @xmath22 given equations-:3 satisfied write @xmath23 consider equations efes2:1]-([efes2:3 anisotropic matter distribution seek explicit solution propose solution @xmath24 @xmath25 given eq : isosol @xmath26 arbitrary functions set @xmath27 for convenience system efes2:1])-([efes2:3 ] becomes @xmath28[eq : aniso2 ] systems eq : iso1]-[eq iso3:3 lead to @xmath29 integrate [ eq : alphayprime ] find function @xmath30functions @xmath31 defined @xmath30 two cases @xmath33 @xmath33 eq : x])-([eq : alphayprime ] solution @xmath35 trivial solution eq : alphaxy0soln corresponds isotropic case algorithm regains isotropic solution limit @xmath34 eliminate @xmath32 alphayprime @xmath36 differential equation written as @xmath37 integration eq : alphaprime leads to @xmath38 @xmath39 constant integration @xmath40 set @xmath41 write eq : jint ] compact form @xmath42 equations : x y alphaj correspond to anisotropic matter isotropic solution generate new anisotropic solution anisosol @xmath43 integral @xmath44 given by @xmath41 integration in @xmath44 performed @xmath45 specified in isotropic solution isosol ( [ eq : alphaxy:1])-([eq : alphaxy:3 ] ) applies to cases @xmath46 @xmath34 if @xmath46 set @xmath47 regain isotropic result eq : alphaxy0soln @xmath34 @xmath40 regain anisotropic equations x y alphaj ]ansatz leads to new anisotropic solution of einstein field equations subject to integration in @xmath44 possible for particular choices isotropic function @xmath45 demonstrate two examples anisotropic solutions for choices @xmath45 next sections algorithm generated easy single integration unlike earlier algorithm complicated further integrations new anisotropic solutions likely produce realistic anisotropic stellar models models contain isotropic limit demonstrate applicability algorithm 3 by generating anisotropic isothermal spheres line element for isothermal model@xcite form @xmath48 @xmath49 constant isotropic functions for ( : isothermalle ] given by @xmath50 energy density function form @xmath51 isothermalisosol mu0iso imply @xmath52 linear barotropic equation of state isothermal spheres with density profile @xmath53 equation of state : p0mu0 ] appear in models for newtonian relativistic stars studied in astrophysics as equilibrium approximation to complicated systems close to dynamically relaxed stateisotropic functions isothermalisosol evaluate integral @xmath44 alphaxy:1 ] find @xmath54 leads to expressions @xmath55 obtain new line element form @xmath56 matter variables analytic representation @xmath57 isotropic isothermal sphere model isothermalle ] produces anisotropic isothermal sphere model lelement ] algorithm parameter values @xmath47 regain conventional isothermal sphere degree anisotropy @xmath58 mathematica@xcite graph anisotropy factor isothermalsa ] plots figures [ fig : sisob ] sisobup ] particular values parameters anisotropy factor @xmath19 plotted against radial distance interval @xmath59 singularity at @xmath60 carried over from other dynamical metric functions constants @xmath61 @xmath49 picked arbitrarily pair chosen @xmath62 monotonically decreasing or increasing physical considerations lead choice one profile @xmath62 profile figure sisob preferable stellar body vanishing anisotropy center boundary @xmath62 profile figure sisobup chosen over sisob for boson star models dev gleiser@xcite simple behaviour @xmath62 plots shows extensive physical analysis solutions possible future worksecond example demonstrate applicability algorithm generating anisotropic schwarzschild spheres line element interior schwarzschild model is @xmath63 @xmath64 @xmath65 @xmath66 constants isotropic functions for eq schwarzsle given by @xmath67\right schwarzsisosols}{aligned energy density function form @xmath68 @xmath69 for incompressible matter reasonable approximation interior dense neutron stars superdense relativistic stars near uniform density assumption eq schwarzsmu0 of uniform energy density used to build prototypes realistic stars modelling process integral @xmath44 eq alphaxy:1 takes form @xmath70 \left r^2\delta\left(a+b\delta\right )+{2br^2\delta\right\left(2\right^{-1{eq : jalphaschw}\\\left(\frac{6}{r +{2br}{r^2\delta\left(a - b\delta\right)+\frac{2br^2}{r -+\frac{2br^2}{r{-1 }\mbox{d}r\nonumber\end{aligned substitution @xmath71 becomes @xmath72 integral simplified partial fractions obtain @xmath73 integration obtained @xmath44 intermediate variable @xmath74 original variable @xmath75 write @xmath44 as @xmath77 function @xmath30 becomes @xmath78 lead @xmath79 @xmath80 new line element form @xmath81^{-1 } \mbox{d}r^2 + r^2\left({d}\theta^2+\sin^2\theta\mbox{d}\phi^2\right){eq : schwarzsle2}{aligned variables form @xmath82 @xmath83 @xmath84 isotropic schwarzschild sphere model schwarzsle generates anisotropic schwarzschild sphere model- parameter value @xmath47 regain original schwarzschild spheredegree anisotropy form @xmath85 mathematica@xcite used plot anisotropic factor schwarzsb resulting plot shown in figure for values parameters @xmath65 @xmath66 @xmath61 @xmath9 other choices different behaviour for @xmath19 plot @xmath19 against @xmath75 interval @xmath86 anisotropic factor closed form profile figure shows physical analysis model investigated pursued later stage sdm mc thank national research foundation south africa financial support mc grateful university kwazulu - natal scholarship
| 0.560672
| 3,515
| 1,872
|
, Saving $0.1 in GPT-4.
|
18,356
|
the angle dependent magnetoresistance study on [ 001 ] and [ 110 ] la@xmath0sr@xmath1mno@xmath2 thin films show that the anisotropy energy of [ 110 ] films is higher when compared with a [ 001 ] oriented la@xmath0sr@xmath1mno@xmath2 film of similar thickness .
the data has been analyzed in the light of multidomain model and it is seen that this model correctly explains the observed behavior .
magnetoresistance , lsmo , anisotropy 75.30 .
gw , 75.47.lx , 75.70 .
|
double exchange pervoskite manganites , such as la@xmath0sr@xmath3mno@xmath2 ( lsmo ) , show colossal magnetoresistance@xcite and have @xmath4100% spin polarization@xcite .
hence , this material forms an excellent candidate for studying spin polarized quasi particle injection in various types of systems .
secondly , the fact that magnetoresistive materials have immense technological application , it is essential to understand the underlying principles of the plethora of extraordinary phenomena seen in this class of materials .
the exact microscopic mechanism for very large magnetoresistance(mr ) is not very well understood in these systems . in this paper a careful study of magnetoresistance as a function of angle between applied field and current direction in [ 001 ] and [ 110 ] epitaxial films of la@xmath0sr@xmath1mno@xmath2 is reported . in both
the cases mr at 10k and 300k was measured .
while hysteresis in resistivity at 10k is seen for both films , at 300k only [ 110 ] films show hysteresis .
this clearly demonstrates that the anisotropy energy of [ 110 ] films are larger than that of [ 001 ] films .
arguments and explanation of the observed data is based on the multidomain model given by odonnell _ _ etal__@xcite .
thin epitaxial films of la@xmath0sr@xmath1mno@xmath2 were deposited on [ 110 ] and [ 001 ] oriented srtio@xmath5(sto ) substrates using a multitarget pulsed excimer laser [ krf , @xmath6 = 248 nm ] ablation technique . the deposition temperature ( t@xmath7 ) , oxygen partial pressure po@xmath8 , energy density ( e@xmath7 ) and growth rate ( g@xmath9 ) used for the growth of 150 nm thick layers were , 750@xmath10 c , 0.4 mbar , @xmath42j/@xmath11 and 1.3 / sec respectively . to fully oxygenate the samples ,
the deposition chamber was filled with o@xmath12 to atmospheric pressure immediately after the growth and then the sample was cooled from 750@xmath10 c to room temperature .
epitaxial growth in two sets of films with [ 110 ] and [ 001 ] directions normal to the plane of the film was established with x - ray diffraction measurements performed in the @xmath13 geometry .
the measurements of resistivity as a function of temperature , magnetic field strength and the angle between field and current were done using a 4.2k close cycle refrigerator with a fully automated home made setup for applying fields at varying angles between 0 and 2@xmath14 with respect to the direction of current@xcite .
the sample was mounted in way to keep the field in the plane of the sample for all angles of field .
the room temperature resistivity of these samples is in the range of @xmath15 m@xmath16 cm .
isothermal hysteresis loops were measured for both the samples using a commercial magnetometer ( quantum design mpms xl5 squid ) by applying field at various angles in the plane of the film . for the measurement of magnetoresistance in four probe configuration films
were patterned in the form of a @xmath17 bridge with photolithography and wet etching such that the long axis of the bridge was parallel to [ 001 ] and [ 100 ] direction for the [ 110 ] and [ 001 ] oriented films respectively .
the [ 001 ] and [ 110 ] films were first characterized using a squid magnetometer to determine the easy axis .
the data for such measurements have been published elsewhere@xcite .
in fig . [ rh110 ] the r(h)/r(0 ) vs. h data for the [ 110 ] sample at 10 k ( left panel ) and 300 k right panel ) taken at various angles between the applied field and the current direction is shown .
the current in this case was flowing along the easy axis @xcite and the hard axis was in - plane and 90@xmath18 to the current direction .
arrows in the figure mark the trajectory followed by the resistance as the field was swept from positive to negative extremities . at 10 k ,
the resistance increases superlinearly as the field is reduced from 700 oe till it reaches a critical negative value h@xmath19 .
on increasing the field further in the reverse direction , the resistance drops , first rapidly and then gradually . the resistance profile during h@xmath20 to +
h@xmath20 field sweep is a mirror image of the + h@xmath20 to h@xmath20 sweep .
a large hysteresis is evident in the figure whose area increases with the angle @xmath21 between @xmath22 and @xmath23 .
however the critical field @xmath24 remains the same for all angles within the experimental error ( @xmath2510 oe ) , and also compares well with the coercive field deduced from the m - h loop@xcite .
for the measurement performed at 300 k , the r(h ) curve is mostly reversible except for a narrow range of the field between @xmath24 where twin peaks appear in the resistance for non - zero values of @xmath21 .
the reversible part shows a @xmath26 dependence with @xmath27 nearly _ independent _ of the angle @xmath21 .
sample at 10 k ( left panel ) and 300 k ( right panel ) taken at various angles between the applied field and the current direction .
the current in this case is flowing along the easy axis , and the hard axis is in - plane and 90@xmath18 to the current direction .
arrows in the figure mark the trajectory followed by the resistance as the field is swept from positive or negative extremities . at 10
k the resistance increases superlinearly as the field reduced from 700 oe till it reaches a critical negative value h@xmath19 . on increasing the field further in the reverse direction , the resistance drop , first rapidly and then gradually .
the resistance profile during -h@xmath20 to + h@xmath20 field sweep is a mirror image of the + h@xmath20 to -h@xmath20 sweep .
a large hysteresis is evident in the figure whose area increases with the angle @xmath21 between @xmath22 and @xmath23
. however the critical field @xmath24 remains the same for all angles within the experimental error ( @xmath2510 oe).,width=377 ] the isothermal magnetoresistance at different angles between @xmath23 and @xmath22 for films with [ 001 ] orientation is shown in fig .
[ rh100 ] for measurement performed at 300 k ( right panel ) and 10 k ( left panel ) .
the current in this case was flowing along the hard axis and the easy axis @xcite was 45@xmath18 to the current direction .
at 10 k and @xmath28 the r(h ) curve is mostly reversible except for the twin peaks appearing at @xmath24 which agrees with the coercive field deduced from m - h measurements . on increasing the angle @xmath21 ( moving away from the easy axis ) , two interesting features emerge from the data .
first , the critical field at which the resistivity drops precipitously shifts to higher values and second , the field dependence on increasing field becomes superlinear to sublinear ( @xmath29 ) . at 300 k
, @xmath30 is devoid of detectable hysteresis .
also the field dependence in this case remains linear at all angles . and
@xmath22 for the films with [ 001 ] orientation for measurements performed at 300 k ( right panel ) and 10 k ( left panel ) .
the current in this case is flowing along the hard axis and the easy axis is 45@xmath18 to the current direction . at 10 k and @xmath28
, the r(h ) curve is mostly reversible except for the twin peaks appearing at @xmath24 which agrees with the coercive field deduced from m - h measurements . on increasing the angle @xmath21 ( moving away from the easy axis ) , two interesting features emerge from the data .
first , the critical field at which resistivity drops precipitously shifts to higher values , and second , the field dependence on increasing field becomes superlinear to sublinear . at 300 k ,
@xmath30 is devoid of detectable hysteresis .
also the field dependence in this case remains linear at all angles.,width=377 ] the primary factors that contribute to the low field mr in these systems are the colossal magnetoresistance effect and the tunneling magnetoresistance if the system has a non zero granularity .
the explanation in the case of a non - granular film lies in the multidomain configuration model proposed by odonnell et al .
@xcite . at high fields ,
the magnetization is aligned in the direction of the applied field .
but as the field is lowered and then applied in the opposite direction , the magnetization has to reverse at some point . considering that the reversal will be rapid , one would expect a change in resistivity @xmath31 due to colossal magnetoresistance ( cmr ) given as @xcite@xmath32 where @xmath33 is the switching field ( the field at which the magnetization reversal occurs ) , @xmath34 is the spontaneous magnetization and @xmath35 is the susceptibility .
this change will be seen for a transition in magnetization from anti - parallel @xmath36 to parallel @xmath37 to the applied field . as pointed out by odonnell et al .
@xcite , this simple model can not explain some features in these data .
considering the case when the film is treated as a single domain , the magnetization either flips directly from antiparallel to parallel alignment or it comes to the parallel alignment following a two step process , passing from antiparallel , to transverse , to parallel . when @xmath38 is parallel or antiparallel to the applied field one has,@xmath39 and for @xmath38 perpendicular to the applied field , @xmath40 which is independent of @xmath41 .
below t@xmath19 and at very low fields , one can assume that @xmath42 for a single domain sample .
so in this case the linear approximation of eq .
[ singledomainm ] is correct .
so the cmr below t@xmath19 is a first order expansion in the small parameter @xmath43 about @xmath44 . from these arguments and taking into account that the cmr is linear , the change in resistivity upon flipping of the magnetization from antiparallel to parallel expressed by eq .
[ cmrm ] can be approximated to @xmath45 the single - domain model also fails to explain the deviation from linearity . to overcome the shortcomings of the single domain model , odonnell et al .
@xcite proposed a multidomain - model . in this model ,
the magnetization reversal proceeds via motion of the domain walls .
the resistivity for a sample with the applied field along the easy axis can be written as @xcite @xmath46 where @xmath47 are the resistivities of the domains parallel , antiparallel and transverse to the applied field .
now , the mr data is analyzed in the light of the multi - domain model taking into account that [ 110 ] lsmo films show uniaxial and [ 001 ] films show biaxial anisotropy .
looking at the data for [ 110 ] samples at 300 k ( right hand panel of fig .
[ rh110 ] ) , no discontinuous change in resistivity when @xmath48 is seen .
so it looks like that as soon as the field is reversed , the magnetization also reverses . for other angles ,
a clear discontinuous change is seen .
this behavior can be understood by arguing that as the field is slowly increased from zero , the moments align along the hard axis that is perpendicular to the current and as a result , the resistivity increases .
once the field crosses a threshold limit , the magnetization flips abruptly towards the applied field direction .
since t=300 k is very close to @xmath49 for lsmo , it is very weakly ferromagnetic at that temperature . hence it is possible that for fields aligned along the easy axis no discontinuous jump may be seen . the data at 10 k ( left hand panel of fig .
[ rh110 ] ) show large hysteretic loop in mr .
secondly , the transition is not very sharp .
this can be attributed to the deviation from the square hysteresis loop that this sample shows at 10 k@xcite . in this case , a transition is also seen for @xmath50 since at 10 k , lsmo is strongly ferromagnetic .
the r(h)/r(0 ) curves for the [ 001 ] sample reveal some interesting facts as well . if one looks at the data at t = 300 k ( right hand panel of fig .
[ rh100 ] ) , a linear r - h behavior when @xmath41 is parallel to the easy axis ( i.e. @xmath51 to the current direction ) @xcite is seen .
some non - linearity sets in once the applied field direction moves away from the easy axis but the non - linearity is not hysteretic .
the observed non - linear dependence presumably arises from the slow rotation of the magnetization vector with the increasing external field . the data at 10 k ( left hand panel of fig .
[ rh100 ] ) show some features of first order transition but the explanation is a little different in this case since [ 001 ] samples show biaxial anisotropy .
so , when the applied field is along the current direction at low fields , domains aligned in the direction of the easy axis start appearing . since these domains are aligned away from the current direction the resistance increases . at a particular field ,
the moments switch to the direction of the applied field and one sees the step in the resistivity .
but in this case , the step is also present for @xmath41 parallel to the easy axis that is 45@xmath18 to the current direction .
this can be attributed to the fact that for the field to flip completely , it has to cross two hard directions .
so a minimum magnetic energy is required to completely flip the moments .
in conclusion it is shown that the anisotropy energy of [ 110 ] la@xmath0sr@xmath1mno@xmath2 films is larger than that of [ 001 ] la@xmath0sr@xmath1mno@xmath2 films . further [
110 ] films show larger hysteresis than that shown by [ 001 ] films .
the data has been analyzed in the light of multidomain model and the behavior seen in [ 001 ] and [ 110 ] samples can be explained correctly by this model .
it is also shown , for both the films the resistivity in the reversible regime is proportional to @xmath52 , with @xmath27 nearly independent of the angle of the applied field for [ 110 ] film which is not the case for [ 001 ] film .
|
double exchange pervoskite manganites la@xmath0sr@xmath3mno@xmath2 show colossal magnetoresistance @xmath4100% spin polarization excellent for studying spin polarized particle injection magnetoresistive materials technological application essential to understand principles extraordinary phenomena mechanism for large magnetoresistance not understood study of magnetoresistance angle between applied field current direction in [ 001 ] 110 ] epitaxial films of mr at 10k 300k measured hysteresis resistivity at 10k 300k [ 110 ] films show hysteresis anisotropy energy of 110 ] films larger than 001 ] films based on multidomain model odonnell etal__@xcite thin epitaxial films of deposited on 110 ] 001 ] oriented srtio@xmath5(sto ) substrates using multitarget pulsed excimer laser ablation technique deposition temperature oxygen partial pressure energy density growth rate for growth of 150 nm thick layers 750@xmath10 c 0.4 mbar @xmath42j/ 1.3 / secoxygenate samples deposition chamber filled with o@xmath12 atmospheric pressure after growth cooled from 750 c to room temperature epitaxial growth in films with 110 ] 001 ] directions normal to plane established with x - ray diffraction measurements measurements of resistivity temperature magnetic field strength angle between field current using 4.2k close cycle refrigerator automated home setup applying fields at angles between 0 and 2@xmath14 sample mounted field in plane room temperature resistivity @xmath15 m@xmath16 cm isothermal hysteresis loops measured using commercial magnetometer applying field at various angles plane magnetoresistance four probe films patterned @xmath17 bridge with photolithography wet etching long axis parallel to 001 ] [ 100 ] direction for 001 films 001 110 ] films characterized using squid magnetometer easy axis data published elsewhere in fig . [ rh110 ] r(h)/r(0 ) vs. h data for 110 ] sample at 10 300 k various angles between field current direction current along easy axis hard axis in - plane 90@xmath18 to current directionarrows figure mark trajectory resistance field swept from positive to negative extremities at 10 k resistance increases field reduced from 700 oe till critical negative value h@xmath19 increasing field resistance drops resistance profile during to field sweep large hysteresis area increases with angle @xmath21 between @xmath22 and critical field @xmath24 remains same for all angles experimental error compares with coercive field from m - h loop@xcite measurement at 300 k r(h ) curve reversible except narrow range between @xmath24 twin peaks appear in resistance for non - zero values @xmath21 reversible part shows @xmath26 dependence with @xmath27 independent of angle @xmath21 sample at 10 k and 300 k various angles field current current flowing along easy axis hard axis in - plane to current direction arrows mark trajectory resistance field swept from positive or negative extremities at 10 k resistance increases field from 700 oe till critical negative value h@xmath19 increasing field resistanceresistance profile during to field sweep mirror large hysteresis evident in figure area increases with angle @xmath21 between @xmath22 and critical field @xmath24 remains same for all angles within experimental error isothermal magnetoresistance at different angles between and for films with [ 001 ] orientation shown in fig . at 300 k and 10 current along hard axis easy axis 45@xmath18 to current direction at 10 k and @xmath28 r(h ) curve mostly reversible except twin peaks at @xmath24 agrees with coercive field from increasing angle @xmath21 critical field shifts to higher values field dependence on becomes superlinear to sublinear at 300 k @xmath30 devoid of detectable hysteresis field dependence remains linear at all angles @xmath22 for films with [ 001 ] orientation at 300 current along hard axis easy axis 45@xmath18 to current direction at 10 k and @xmath28 r(h ) curve mostly reversible except twin peaks at @xmath24 agrees with coercive fieldincreasing angle @xmath21 axis two features emerge critical field resistivity drops shifts to higher values field dependence on increasing field becomes superlinear to sublinear at 300 k @xmath30 devoid detectable hysteresis field dependence remains linear at all angles primary factors low field mr are colossal magnetoresistance effect tunneling magnetoresistance if non zero granularity explanation non - granular film in multidomain configuration model odonnell et al . at high fields magnetization aligned in applied field field lowered opposite magnetization reversal rapid change in resistivity @xmath31 due to colossal magnetoresistance @xcite@xmath32 @xmath33 switching field reversal @xmath34 spontaneous magnetization @xmath35 susceptibility change seen for transition in magnetization from anti - parallel @xmath36 to parallel @xmath37 to applied field odonnell simple model can not explain features film single domain magnetization flips from antiparallel to parallel alignment or comes to parallel alignment following two step process@xmath38 parallel or antiparallel to applied field@xmath39 @xmath38 perpendicular @xmath40 independent of @xmath41 below@xmath19 low fields @xmath42 single domain sample linear approximation of eq . singledomainm correct cmr below@xmath19 first order expansion small parameter @xmath43 about @xmath44 cmr linear change resistivity flipping magnetization from antiparallel to parallel eq cmrm approximated to @xmath45 single - domain model fails explain deviation linearity odonnell proposed multidomain - model magnetization reversal via motion domain walls resistivity sample applied field axis written as @xcite @xmath46 @xmath47 resistivities of domains parallel antiparallel transverse to applied field mr data analyzed multi - domain model [ 110 ] lsmo films show uniaxial [ 001 ] films biaxial anisotropy data [ 110 ] samples at 300 k no discontinuous change in resistivity when @xmath48 seen field reversed magnetization reverses other angles clear discontinuous change seen field increased from zero moments align along hard axis perpendicular to current resistivity increasesfield crosses threshold limit magnetization flips towards applied field direction t=300 k close to @xmath49 for lsmo weakly ferromagnetic possible for fields aligned along easy axis no discontinuous jump data at 10 k show large hysteretic loop transition not sharp attributed to deviation from square hysteresis loop at 10 k@xcite transition seen for @xmath50 at 10 k lsmo strongly ferromagnetic r(h)/r(0 ) curves for [ 001 ] sample reveal interesting facts data at t = 300 k linear r - h behavior when @xmath41 parallel to easy axis @xmath51 seen non - linearity sets in field direction moves away from easy axis not hysteretic non - linear dependence from slow rotation of magnetization vector with increasing external field data at 10 k show features first order transition explanation different [ 001 ] samples show biaxial anisotropy applied field along current direction at low fields domains aligned in direction easy axis start appearing resistance increases moments switch to direction applied field step in resistivitystep present for @xmath41 parallel to axis 45@xmath18 current direction field to flip two directions minimum magnetic energy required to flip moments anisotropy energy of [ 110 ] la@xmath0sr@xmath1mno@xmath2 films larger than [ 001 ] films [ 110 ] films show larger hysteresis 001 ] data analyzed multidomain model behavior in [ 001 ] 110 ] samples explained by model resistivity in reversible regime proportional to @xmath52 @xmath27 independent of angle applied field for [ 110 ] film not for [ 001 ] film
| 0.50187
| 3,311
| 1,681
|
, Saving $0.1 in GPT-4.
|
18,358
|
for @xmath0 , consider the rotation matrix @xmath1 and @xmath2 let @xmath3 denote the product of @xmath4 @xmath5 s and @xmath6 @xmath7 s with the condition @xmath8 $ ] ( @xmath9 ) .
we analyze the measure of the set of @xmath10 for which @xmath11 ( @xmath12 ) .
this can be regarded as a model problem for the so - called bochi - fayad conjecture .
|
in @xcite , the following problem was considered .
take two matrices @xmath13 and @xmath14 fix @xmath15 and let @xmath16 .
define a word @xmath17 to be @xmath18 where @xmath19 ( where either or both @xmath20 and @xmath21 may be zero ) @xmath22 and @xmath23 is arbitrary .
assume that @xmath4 is much smaller than @xmath6 and take a `` generic '' angle @xmath10 .
it is not unreasonable to conjecture the geometric growth of @xmath24 regardless of combinatorics of the word . in @xcite ,
the following theorem was proved : assume that @xmath25 is fixed .
then there is an @xmath6independent set @xmath26 such that @xmath27 and for any @xmath28 there is @xmath29 so that @xmath30 provided @xmath31 .
this theorem improved earlier results by fayad and krikorian @xcite .
the special case of the bochi - fayad conjecture @xcite deals with the similar situation when @xmath32 and @xmath33 is small .
one might expect that @xmath34 as @xmath35 in this case .
proving it seems to be quite hard .
we investigate a simpler case . in ( [ h ] ) , consider the matrix @xmath36 when @xmath37 is large .
then @xmath38 as @xmath39 and one might wonder what happens if @xmath40 is dropped .
we study the model case by taking @xmath41 instead of @xmath36 .
it turns out , a very precise analysis can be performed .
section 3 provides some numerical evidence and comparison of the model case with the real problem .
in the previous setting , take @xmath42 instead of @xmath36 and @xmath43 $ ] , with @xmath44 fixed .
let @xmath45 and define a norm of @xmath17 to be @xmath46 set @xmath47 note that we can take the minimum because for an arbitrary @xmath48 , there are @xmath6 @xmath36 s and @xmath4 @xmath5 s , so there are only a finite number of words for each @xmath6 .
finally , we fix @xmath12 and define the _ resonant set _ @xmath49 as thus : @xmath50 if there exists some @xmath6 such that @xmath51 .
we claim that @xmath52 where @xmath53 is some constant that can be explicitly computed and @xmath54 denotes the lebesgue measure of the set @xmath49 .
given @xmath6 and @xmath10 , there are four different types of words ( note that here , none of @xmath55 are zero ) : @xmath56 in each word , there are precisely @xmath23 groups of rotation matrices of lengths @xmath57 . the only differences between the four types of words is which matrices ( @xmath7 or @xmath5 ) they begin and end with . from the word in ( [ e
: hr ] ) , we obtain the following matrix : @xmath58 likewise , from ( [ e : rh ] ) , we obtain @xmath59 using the result in ( [ e : rhmatrix ] ) , the matrix from ( [ e : rr ] ) is @xmath60 and using the result in ( [ e : hrmatrix ] ) , the matrix from ( [ e : hh ] ) is simply @xmath61 therefore we have @xmath62 * remark .
* this formula shows that @xmath63 is reached on the word of the type ( [ e : hhmatrix ] ) .
[ t : resonant ] let @xmath64 and @xmath65 then the resonant set @xmath49 satisfies @xmath66 suppose @xmath67
. then @xmath68 for some @xmath69 and @xmath70 let @xmath71 + 1 $ ] .
then , @xmath72 and @xmath73 .
consider the word @xmath74 where @xmath75 .
since @xmath76 , we have @xmath8 $ ]
. then @xmath77 therefore @xmath50 .
now suppose @xmath78 .
then for all @xmath69 , @xmath79 choose arbitrary @xmath80 .
then @xmath81 where @xmath82 and @xmath83 $ ] .
then @xmath84 and therefore @xmath85 .
we claim that @xmath49 is a dense open set . to show that @xmath49 is open ,
we show that for each @xmath6 , @xmath86 is continuous . for each @xmath6 , @xmath87 , which is open as the pre - image of a continuous function of an open set .
note that @xmath88 , a union of open sets , so @xmath49 is open . to show that @xmath86 is continuous
, we note that @xmath86 is the minimum of a finite number of continuous functions ( the norms of a finite number of words ) .
denote these functions as @xmath89 , @xmath90 .
fix arbitrary @xmath91 , fix @xmath92 , and let @xmath93 be such that whenever @xmath94 , @xmath95 for all @xmath96 . consider arbitrary @xmath97 .
for some @xmath98 , @xmath99 and @xmath100 . by the definition of @xmath86 , @xmath101 and @xmath102 .
notice that if @xmath103 , then @xmath104 and we are done .
suppose that @xmath105 .
then @xmath106 . otherwise , if @xmath107 , then @xmath108 . to see that @xmath49 is dense , let @xmath109 be any open interval in @xmath110 .
the collection of points @xmath111 is in @xmath112 ; indeed , for any @xmath113 , @xmath114 .
if we choose @xmath115 , then there must be some element @xmath116 of @xmath117 in @xmath109 . since @xmath118
, we see that every open interval in @xmath110 contains a point in @xmath49 .
now we are ready to estimate the size of @xmath49 .
consider @xmath119 for arbitrary @xmath69 .
the measure of this set is @xmath120 then our estimate for the size of @xmath49 is @xmath121 as @xmath122 and @xmath37 , @xmath123 are fixed .
we provide some numerical and graphical evidence of what was proved .
we see how the graphs of the model case and the real case compare for fixed @xmath6 and @xmath4 .
in addition , it is shown graphically that changing the multiplicities of @xmath36 affects the word s norm , but in the model case the word s norm is invariant under these changes .
the graphs in this section were plotted with maple 14 . based on the similarities between the pictures of the real case and the model case ,
we conjecture that the resonant set in the model case is , in some sense , the limiting set of the the resonant set in the real case as @xmath37 grows large , since the @xmath124 term goes to @xmath125 as @xmath37 goes to infinity .
of course , since here we take @xmath37 relatively small ( @xmath126 ) for graphing convenience , this is a rough conjecture ; in fact , proving it seems to be rather difficult .
figure [ f1 ] shows the graph of @xmath127 where @xmath128 and @xmath129 . recall that @xmath7 is the matrix we use in the model case , where @xmath130 is replaced by 0 . with these combinatorics ,
varying @xmath131 does not change the graph , as long as their sum is 15 . specifically ,
figure [ f1 ] is the model case of @xmath132 , @xmath133 , and @xmath126 .
figure [ f3 ] shows the graph of @xmath136 , where every variable is the same as above , @xmath132 , @xmath133 , and @xmath126 , but the @xmath36 matrices are multiplied in different orders with respect to the rotation matrices .
we still have @xmath137 , however , @xmath138 and @xmath139 . changing the order of multiplication in the word with
the same number of @xmath36 matrices changes the norm of the word . by comparing figure [ f2 ] and figure [ f3 ]
, we observe that a greater disparity between the multiplicities of @xmath36 ( the @xmath140 s ) is correlated with a smaller resonant set ( the set of points @xmath10 between @xmath125 and @xmath141 such that the norm of the word is within a certain distance of zero ) .
the slope of the word s norm is steeper in figure [ f3 ] than it is in figure [ f2 ] and the peaks in figure [ f3 ] are associated with larger values of the word s norm than in the case depicted by figure [ f2 ] .
both conditions lead to fewer points @xmath10 that are mapped to a norm of the word that is close to zero .
figure [ f4 ] shows the graph of @xmath142 .
comparing this graph with figure [ f3 ] provides further evidence that a greater disparity between the multiplicities of @xmath36 results in a smaller resonant set . to further justify our use of the model case where the fourth entry in @xmath36 is 0 and @xmath126 ,
notice that the graph in figure [ f5 ] of the model case , @xmath143 where @xmath144 , and the graph in figure [ f6 ] of the real case , @xmath145 , appear to be nearly identical .
as proved above , the word is independent of the order of multiplication of the @xmath7 s so long as @xmath146 and @xmath132 .
furthermore , we notice that figure [ f5 ] is not comparable to figure [ f1 ] although both show the model case , but with different combinatorics on the word .
figure [ f1 ] represents an example of equation 5 , whereas figure [ f5 ] represents an example of equation 4 .
both graphs still have a small resonant set .
|
@xcite problem considered two matrices @xmath13 fix @xmath15 @xmath16 define word @xmath17 @xmath18 @xmath19 zero @xmath22 @xmath23 arbitrary assume @xmath4 smaller than @xmath6 generic angle @xmath10 conjecture geometric growth @xmath24 regardless combinatorics @xcite theorem proved assume @xmath25 fixed @xmath6independent set @xmath26 @xmath27 @xmath28 @xmath29 @xmath30 @xmath31 theorem improved fayad krikorian @xcite special case bochi - fayad conjecture @xcite situation @xmath32 @xmath33 small @xmath34 as @xmath35 proving hard investigate simpler case consider matrix @xmath36 when @xmath37 large @xmath38 as @xmath39 @xmath40 dropped study model case @xmath41 instead of @xmath36 precise analysis performed section 3 provides numerical evidence comparison model case real problem previous setting @xmath42 instead of @xmath36 @xmath43 @xmath44 fixed@xmath45 define norm @xmath17 @xmath46 set @xmath47 minimum arbitrary @xmath48 @xmath6 @xmath36 s @xmath4 @xmath5 s finite number words each @xmath6 fix @xmath12 define resonant set @xmath49 @xmath50 @xmath6 @xmath51 @xmath52 @xmath53 constant computed @xmath54 lebesgue measure set @xmath49 @xmath6 @xmath10 four types words none @xmath55 zero @xmath56 each word @xmath23 groups rotation matrices lengths @xmath57 differences four types words matrices @xmath7 @xmath5 ) begin end word [ e : hr ] ) obtain matrix @xmath58 [ e : rh ] ) obtain @xmath59 result e rhmatrix matrix e : rr ] @xmath60 : hrmatrix matrix hh @xmath61 @xmath62 formula shows @xmath63 reached word type [ e : hhmatrix ] resonant ] @xmath64 @xmath65 resonant set @xmath49 satisfies @xmath66 @xmath67 @xmath68 @xmath69 @xmath70 @xmath71 + 1 $ @xmath72 @xmath73@xmath74 @xmath75 @xmath76 @xmath8 $ @xmath77 @xmath50 @xmath78 @xmath69 @xmath79 choose arbitrary @xmath80 @xmath81 @xmath82 @xmath83 $ @xmath84 @xmath85 @xmath49 dense open set @xmath49 open each @xmath6 @xmath86 continuous @xmath6 @xmath87 open pre - image continuous function open set @xmath88 union open sets @xmath49 open @xmath86 continuous minimum finite number continuous functions functions @xmath89 @xmath90 fix @xmath91 @xmath92 @xmath93 @xmath94 @xmath95 @xmath96 arbitrary @xmath97 @xmath98 @xmath99 @xmath100 definition @xmath86 @xmath101 @xmath102 if @xmath103 @xmath104 done @xmath105 @xmath106 @xmath107 @xmath108 @xmath49 dense @xmath109 open interval @xmath110 collection points @xmath111 @xmath112 @xmath113 @xmath114 choose @xmath115 element @xmath116 @xmath117 in @xmath109 @xmath118 open interval in @xmath110 contains point in @xmath49 to estimate size @xmath49 consider @xmath119 for arbitrary @xmath69 measure set is @xmath120 estimate size @xmath49 is @xmath121 @xmath122 @xmath37 @xmath123 fixed numerical graphical evidence graphs model case real case compare for fixed @xmath6 @xmath4 changing multiplicities of @xmath36 affects word s norm model case norm invariant graphs plotted with maple 14 similarities conjecture resonant set model case limiting set real case as @xmath37 grows large @xmath124 term goes to @xmath125 @xmath37 infinity @xmath37 small @xmath126 ) for graphing convenience rough conjecture proving difficult figure [ f1 ] shows graph of @xmath127 @xmath128 @xmath129 @xmath7 is matrix model case @xmath130 replaced by 0 varying @xmath131 change graph sum is 15 figure [ f1 ] model case of @xmath132 @xmath133 @xmath126figure [ f3 ] shows graph @xmath136 variable same as @xmath132 @xmath36 matrices multiplied different orders rotation matrices still have @xmath137 @xmath138 @xmath139 changing order multiplication @xmath36 matrices changes norm comparing figure f2 and f3 ] greater disparity between multiplicities @xmath36 ( @xmath140 s ) with smaller resonant set between @xmath125 and slope word s norm steeper in figure f3 ] f2 ] peaks in figure f3 with larger values norm both conditions lead to fewer points @xmath10 mapped to norm close to zero figure [ f4 ] shows graph @xmath142 with figure f3 ] greater disparity between multiplicities @xmath36 results in smaller resonant set model case fourth entry in @xmath36 is 0 and @xmath126 graph in figure [ f5 ] @xmath143 @xmath144 and figure f6 ] @xmath145 appear nearly identical word independent of order multiplication @xmath7 s so long as @xmath146 and @xmath132 .figure [ f5 ] not comparable f1 ] both show model case different combinatorics f1 ] represents equation 5 f5 ] equation 4 both graphs have small resonant set
| 0.344298
| 2,296
| 1,285
|
, Saving $0.1 in GPT-4.
|
18,364
|
we describe a system in use at the lick observatory 1-m nickel telescope for near - simultaneous imaging at optical and near - infrared wavelengths .
the combined availability of a ccd and a nicmos-3 camera makes the system well - suited for photometric monitoring from 0.5 - 2.2@xmath0 of a variety of astrophysical objects .
our science program thus far has concentrated on studying variability trends in young stellar objects .
key words : instrumentation : photometers techniques : photometric telescopes stars : pre - main sequence @xmath1 current address : division of physics , math , & astronomy , california institute of technology , pasadena , ca 91125
|
there is broad need in astronomy for simultaneous optical - infrared photometric capabilities which enable temporal monitoring .
examples include recording supernova light curves , monitoring variability of active galactic nuclei , and measuring the spectral energy distribution of young stars . because supernovae are standard candles , their light curves are important and have maximum utility if well sampled and cover multiple wavelengths .
dense temporal sampling is valuable because this helps to establish the epoch of maximum light , a task that is simplified for type ia events if @xmath2-band data are available , and some immunity to the effects of dust can be achieved if observations extend into the @xmath3-band where extinction is an order of magnitude lower than at visible wavelengths ( elias & frogel 1981 ) .
variability of agn such as quasars and seyfert nuclei provides an opportunity to investigate the nature of the central engine , and the distribution and properties of dust grains via reverberation mapping ( e.g. , nelson 1996 ) .
part of the data for nelson s ( 1996 ) study came from a dual optical - ir imager on the ucla 24-inch telescope ( nelson et al .
another example of a simultaneous optical - ir system is the @xmath4 camera used for the denis survey ( copet et al .
1997 ) .
our primary interest thus far has been to pursue an optical - infrared photometric monitoring program to investigate and characterize variability trends in the spectral energy distributions ( seds ) of young stars .
circumstellar accretion disk models matched to the observed seds of young pre - main sequence stars are used to attempt understanding of the complex accretion processes in these systems . a major uncertainty in the sed modeling procedure , however , is the continuum variability which occurs at all wavelengths out to at least 3.5 @xmath5 m .
changes in flux of several tens to several hundreds of percent occur on time - scales of a few hours to a few days , depending on the source and on the wavelength regime .
there are several possible causes for the observed monochromatic and color variability : 1 ) variable stellar flux ; 2 ) variable extinction ; and 3 ) variable properties of the circumstellar material .
sufficient optical and near - infrared monitoring has been carried out for a few sources so that we are able to investigate their complicated behavior in color - color and color - magnitude diagrams ( _ c.f .
_ skrutskie et al . 1996 ; herbst , herbst , & grossman 1994 ) .
these patterns seem inconsistent with simple variability explanations like changes in intrinsic stellar flux or line - of - sight obscuration ( although these causes can not yet be discounted entirely ) .
thus it may be that the observed variability trends are due to changes in the physical properties of the hot circumstellar gas and dust , e.g. , temperature , opacity , or geometry variations taking place in accretion columns , in the inner disk , or in the stellar / disk wind . testing this hypothesis
requires a more extensive photometric dataset than currently exists .
relevant monitoring time - scales might encompass : the dynamical time for a wind ( r@xmath6 / v@xmath7 hours ) , the free - fall time from the inner disk to the stellar surface ( @xmath8 tens of hours ) , the dynamical time for the disk ( @xmath9 tens of hours to years for r = 0.1 - 1au ) , the dust destruction / formation time ( @xmath10 years ) , and the viscous accretion time - scale ( @xmath11 tens of years ) .
both scientific and practical considerations shaped our plans for implementing simultaneous optical - infrared measurements at the university of california s lick observatory on mt hamilton .
our need to image complex fields with multiple and sometimes extended sources ruled out a single - channel photometer .
however , as cost precluded development of new cameras , combining existing instruments to meet our broadband imaging requirements presented an attractive design strategy .
this approach also permitted us to take advantage of existing electronic and software controls , and to adopt existing mechanical telescope interfaces with only minor modifications .
since the science goals require intensive photometric monitoring of relatively bright targets , we concentrated our instrument development effort on the 1-m nickel telescope , rather than the heavily over - subscribed 3-m shane telescope ( though , in principle , viris could be used with either ) .
we thus arrived at the option of combining lick s 1-m facility ccd camera and the facility ir camera , used at both the 1- and 3-m telescopes .
viris is an opto - mechanical system for combining the lick observatory facility nicmos-3 camera , lirc-2 ( gilmore , rank , & temi 1994 ) with a standard ccd dewar containing a 2048x2048 detector with 15 @xmath5 m pixels manufactured by orbit , and an interface box which includes automated filter and aperture wheels .
the use of an optical / ir dichroic beam - splitter and a transfer lens delivers parfocal optical and ir images to the respective dewars , and hence provides the opportunity to perform simultaneous imaging in the optical and infrared .
the lirc-2 telescope interface mounts the side - looking infrared camera dewar on the 1-m or 3-m telescopes at lick observatory .
the beam from the secondary is relayed to the ir camera by a 45@xmath12 ir reflecting gold dichroic beam - splitter . in the original version of the lirc-2 interface , optical light ( @xmath13 m )
passes through the dichroic to a bore - sight ccd acquisition and guide camera .
this configuration suggested that the acquisition and guide camera could be replaced with a science grade ccd .
the existence of an alternate acquisition / guide camera ( the tub ) located upstream of the dichroic in the light path means these capabilities are not lost by the replacement with the ccd .
lirc-2 reimages the telescope focal plane from a position about 50 mm upstream of the dewar window onto a nicmos-3 detector , hence , the focal plane lies only 200 mm behind the dichroic , and it is not possible to locate the ccd interface box close enough to this mirror to get simultaneous in - focus images on ir and optical detectors .
we decided that the most economical way to achieve this was to locate a diverging lens in the beam , just below below the dichroic .
this solution throws the focal plane back , while adjustment of the lens position provides a mechanism so that the ir camera and the ccd can be in focus simultaneously .
the lens we decided to use is a stock plano - concave anti - reflection coated borosilicate glass ( bk7 ) singlet with a -125 mm focal length from edmunds scientific catalog ( part number m 45039 ) .
this transfer lens throws the optical focus back by a nominal 140 mm . in normal operation with lirc-2 the back focal length of the telescope
is increased by displacing the secondary from its nominal position for a classical cassegrain configuration by 35 mm towards the primary .
this introduces spherical aberration which is partially compensated for at the optical focus by orienting the transfer lens with its concave surface towards the secondary .
the dominant residual aberration of the telescope and transfer lens combination is lateral color amounting to @xmath14 for the @xmath15 band filter at a field angle of @xmath16 .
typical seeing at the 1-meter telescope is about @xmath17 fwhm , and therefore this aberration is negligible .
the disadvantage of this configuration is that the effective focal length at the ccd is increased by a factor of 2.77 , and a 15 @xmath5 m pixel projects to @xmath18 on the sky . with this small pixel scale
the readout is rebinned on - chip 4x4 to yield a 512x512 array of @xmath19 pixels with a square field of view of @xmath20 which matches well the ir field .
focus differences between v , r , and i filters amount to no more than @xmath21 of image blur , and refocusing between wavelengths is unnecessary .
the transfer lens is mounted in a finely threaded lens barrel and is coupled to a micrometer head via a toothed timing belt , permitting a total travel of 25 mm ; the corresponding motion of the focal plane is 170 mm and hence this assembly permits easy access to adjust the lens as well as a reproducible way of recording the focus setting . focusing the lens makes the optical and ir cameras parfocal .
subsequent focus variations , primarily due to thermal expansion and contraction of the telescope truss henceforth are handled by changing the secondary mirror focus without further need to adjust the transfer lens .
experience observing with viris has shown that the transfer lens focus position is determined once at the beginning of a run and thereafter requires no further adjustment .
the lirc-2 dichroic has a thick gold coat ; it was designed to minimize infrared reflection losses , while having sufficient transmission to permit bore - sight guiding at visible wavelengths .
the transmission losses due to the dichroic are 2.5 mag at @xmath22 , 3.5 mag at @xmath15 , and 4.0 mag at @xmath23 . since many of our targets are highly extincted and faint at optical wavelengths , the low efficiency of the dichroic added unacceptably large observing overheads .
one option would be to replace the dichroic with one that has a thinner gold coat .
this choice was unacceptable since substantially improved transmission at @xmath23-band could only be achieved by sacrificing reflectivity at @xmath2 . high performance , multi - layer , dielectric beam splitters are available , but they are expensive .
we decided that removing the dichroic from the optical path , by locating it on remotely controllable translation stage , would provide the most satisfactory solution .
this scheme has the added advantage to regular users of lirc-2 of improving the sensitivity of the bore - sight camera to aid the identification of optically faint targets .
thus , although truly simultaneous optical and infrared observations are feasible ( but see [ eas ] ) our data have been obtained sequentially , with movement of the dichroic out of and in to the beam for the optical and infrared observations , respectively . furthermore , the need for short exposures and dithering in the ir make genuine parallel optical - ir impractical
. we did not attempt to make the bore - sights of the optical and ir cameras coincide exactly since any offset can be accommodated by a small telescope motion .
for operation with viris , the ccd camera and lirc-2 retain their original control electronics and lick data acquisition systems .
the ccd uses a lick in - house array controller with its interface running on an integrated solutions 68030-based workstation .
lirc-2 uses a leach controller run from a sun microsystem sparc-5
. both machines run unix and x-11 and are fully networked .
both data acquisition systems obtain telescope status information for their respective image headers by querying the telescope control computer .
if both arrays are read out simultaneously a potential race condition can develop . at present , to avoid this conflict for simultaneous observations , access to telescope information must be disabled for one of the arrays .
this is easily done in software but costs some header information . however , since our observations are sequential rather than simultaneous , this has not been necessary .
since the dichroic displaces the optical beam on the ccd by about @xmath24 , the optical bore - sight moves relative to the ir beam depending on whether or not the dichroic is in the beam for optical observing . to take account of this , an offset is programmed into the observing scripts so that a telescope motion is commanded from the ccd data acquisition system to jog between the optical and ir beams when observing switches from ccd-2 to lirc-2 .
viris was initially deployed with an oversized transfer lens .
an unacceptably high level of scattered light , caused by a reflection between the ccd dewar and the periphery of the transfer lens initially made flat fields difficult to measure . in subsequent
runs the installation of an aperture stop at the lens , and application of black material to reflective al ring supporting the dewar window eliminated this reflection , and permitted measurement of accurate flat fields .
the motion of the translation stage is sufficiently reproducible so that no observable change in flat fields , e.g. , due to dust specs on the dichroic , has been detected .
our observational campaign has concentrated on t - tauri stars , which are typically red objects , requiring moderate optical exposures 20 - 300 s ( dichroic out ) , and shorter ( 5 - 150 s ) , ir exposures . the ir exposures consist of 5 individual , short ( 1 - 30 s ) , dithered frames so that the ir bright sky does not saturate the detector and to permit good sky subtraction . during a typical summer night of 9 hours
we can measure some 15 - 20 target sources in @xmath25 , together with 4 - 6 photometric standard fields .
we primarily use stars common to the landolt ( 1983 , 1992 ) optical standards lists and the casali and hawarden ( 1992 ) infrared standards list for photometric calibration .
table [ zeropts ] lists the photometric zero points for viris .
these data were derived from from several observations of hd 18881 .
the @xmath26 data are listed for both positions of the dichroic .
an example set of viris images is shown in figure [ fig : images ] with a limited time - series spectral energy distribution shown in figure [ fig : sed ] .
the young stars we have chosen for investigation are all @xmath27 myr of age , @xmath28 in mass , and have demonstrated optical and near - infrared variability from data in the literature .
our strategy has been to observe the same list of targets every night of every 3 - 5 night run with 2 - 4 weeks separating runs .
thus far about 30 nights of photometry have been collected over 2 summer seasons ( 1996 and 1997 ) .
our sampling is not good enough to search for rotation periods , but we can correlate optical and infrared monochromatic and color variability . with the construction of accurate seds ( _ i.e. _ based on near - simultaneous optical and infrared data ) , and an understanding of their variability trends , our eventual goal is to investigate whether changes in some combination of the geometry of the circumstellar dust and the accretion rate , can account for the observed flux variability in these young stars .
we have designed and constructed an efficient system for near - simultaneous optical and ir imaging and used it to obtain accurate @xmath25 photometry in a program to monitor the variability of t - tauri stars .
viris demonstrates the feasibility of combining existing optical and ir instruments using an opto - mechanical interface to permit simultaneous and near - simultaneous operation .
we have shown that the details of the interface are very simple , and likely could be replicated on other small telescope to permit them to tackle similar scientific programs that require panchromatic observations .
we extend our thanks for invaluable assistance from the staff at lick , both in santa cruz and on mt hamilton ; especially to matt radovan and rem stone .
support for this program was provided by joe miller , the director of lick observatory .
jrg is supported in part by a fellowship from the packard foundation .
support to lah for this work was provided by nasa through grant # hf1060.01 - 94a from the space telescope science institute , which is operated by the association of universities for research in astronomy , incorporated , under nasa contract nas5 - 26555
|
need in astronomy for simultaneous optical - infrared photometric capabilities temporal monitoring examples include recording supernova light curves monitoring variability active galactic nuclei measuring spectral energy distribution of young stars supernovae standard candles light curves important if sampled multiple wavelengths dense temporal sampling valuable epoch of maximum light simplified for type ia events if @xmath2-band data available immunity to dust if into @xmath3-band extinction lower variability of quasars seyfert nuclei investigate central engine distribution properties of dust grains via reverberation mapping nelson 1996 data from dual optical - ir imager ucla 24-inch telescope simultaneous optical - ir system @xmath4 camera for denis survey primary interest optical - infrared photometric monitoring program variability in spectral energy distributions of young stars circumstellar accretion disk models matched to seds of young stars complex accretion processes major uncertainty in sed modeling continuum variability occurs at wavelengths 3.5 @xmath5 m changes in flux of to hundreds percent occur hours to days depending on source wavelength regimepossible causes for monochromatic color variability variable stellar flux extinction properties circumstellar material sufficient optical near - infrared monitoring carried out for sources complicated behavior in color magnitude diagrams ( skrutskie et 1996 herbst grossman 1994 patterns inconsistent with variability explanations like stellar flux line - of - sight obscuration causes not discounted may variability due to changes in physical properties hot circumstellar gas dust temperature opacity geometry variations in accretion columns inner disk stellar disk wind testing hypothesis requires extensive photometric dataset monitoring time - scales dynamical time for wind free - fall time from inner disk to stellar surface dynamical time for disk dust destruction / formation time viscous accretion time - scale years scientific practical considerations shaped plans for simultaneous optical - infrared measurements at university of california s lick observatory on hamilton need to image complex fields with sources ruled out single - channel photometer cost precluded new cameras combining existing instruments to broadband imaging requirements attractive design strategyapproach permitted electronic software controls mechanical telescope interfaces minor modifications science goals require photometric monitoring bright targets concentrated instrument development on 1-m nickel telescope 3-m shane telescope viris could used either arrived combining lick s 1-m facility ccd camera facility ir camera 3-m telescopes viris opto - mechanical system combining lick observatory facility nicmos-3 camera lirc-2 standard ccd dewar 2048x2048 detector 15 @xmath5 m pixels interface box automated filter aperture wheels optical / ir dichroic beam - splitter transfer lens delivers parfocal optical ir images simultaneous imaging optical infrared lirc-2 telescope interface mounts side - looking infrared camera dewar on 1-m 3-m telescopes beam relayed to ir camera by 45@xmath12 ir gold dichroic beam - splitter original version optical light m passes through dichroic to bore - sight ccd acquisition guide camera configuration suggested with science grade ccd alternate acquisition / guide camera upstream capabilities not lost by replacement ccdlirc-2 reimages telescope focal plane 50 mm upstream dewar window onto nicmos-3 detector focal plane 200 mm behind dichroic locate ccd interface box close to simultaneous in - focus images on ir optical detectors diverging lens in beam below dichroic solution throws focal plane back adjustment lens position ir camera ccd focus lens stock plano - concave anti - reflection coated borosilicate glass singlet -125 mm focal length from edmunds scientific catalog transfer lens throws optical focus back by 140 mm back focal length increased by displacing secondary by 35 mm towards primary introduces spherical aberration compensated by orienting transfer lens towards secondary dominant residual aberration lateral color @xmath14 for @xmath15 band filter at field angle @xmath16 typical 1-meter telescope @xmath17 fwhm aberration negligible effective focal length at ccd increased by factor 2.77 15 @xmath5 m pixel projects to @xmath18 sky readout rebinned - 4x4 512x512 array of @xmath19 pixels square field of view of @xmath20 ir field focus differences between v r i filters @xmath21 image blur refocusing between unnecessary transfer lens mounted in threaded lens barrel coupled to micrometer head via timing belt travel 25 mm focal plane 170 mm permits easy access to lens focus setting focusing lens makes optical ir cameras parfocal focus variations due to thermal expansion contraction telescope handled by changing secondary mirror focus without lens transfer lens focus position determined no further adjustment lirc-2 dichroic has thick gold coat to minimize infrared reflection losses sufficient transmission bore - sight guiding at visible wavelengths transmission losses are 2.5 mag at @xmath22 3.5 mag @xmath15 4.0 mag at @xmath23 targets extincted faint at optical wavelengths low efficiency dichroic observing overheads with thinner gold coat unacceptable improved transmission at @xmath23-band sacrificing reflectivity at @xmath2 high performance dielectric beam splitters available expensive removing dichroic from optical path remotely controllable translation stage satisfactory solutionscheme sensitivity bore - sight camera identification optically faint targets simultaneous optical infrared observations feasible data obtained sequentially with movement dichroic out in to beam for for short exposures dithering in ir make parallel optical - ir impractical attempt bore - sights optical ir coincide offset accommodated by small telescope motion ccd camera lirc-2 retain original control electronics lick data acquisition systems ccd uses lick in - house array controller integrated solutions 68030 workstation lirc-2 uses leach controller sun microsystem sparc-5 both machines run unix x-11 fully networked data acquisition systems obtain telescope status information if arrays read out simultaneously potential race condition avoid conflict access to telescope information must disabled for costs header information observations sequential simultaneous not necessary dichroic displaces optical beam on ccd by @xmath24 optical bore - sight moves relative to ir beam depending dichroic in beam observing offset programmed into observing scripts telescope motion commanded from ccd system to jog between optical ir beams when switches from ccd-2 to lirc-2viris deployed with oversized transfer lens high scattered light reflection made flat fields difficult to measure aperture stop at lens black material to reflective ring eliminated reflection permitted accurate flat fields motion translation stage reproducible no change in flat fields due to dust specs detected observational campaign concentrated on t - tauri stars typically red objects moderate exposures 20 - 300 s shorter 5 - 150 s ir exposures exposures 5 short 1 - 30 s dithered frames good sky subtraction summer night 9 hours measure 15 - 20 target sources in @xmath25 4 - 6 photometric standard fields use stars common to landolt optical standards casali and hawarden infrared standards list for photometric calibration table [ zeropts lists photometric zero points for viris data derived from observations hd 18881 @xmath26 data listed for both positions dichroic example viris images shown in figure limited time - series spectral energy distribution young stars chosen for investigation are all @xmath27 @xmath28 mass demonstrated optical near - infrared variabilitystrategy observe same targets every 3 - 5 night run 2 - 4 weeks separating runs 30 nights photometry collected over 2 summer seasons 1996 1997 sampling not good enough rotation periods can correlate optical infrared monochromatic color variability construction accurate seds based on near - simultaneous optical infrared data understanding variability trends goal investigate changes geometry circumstellar dust accretion rate flux variability in young stars designed constructed efficient system for near - simultaneous optical ir imaging accurate @xmath25 photometry variability t - tauri stars viris demonstrates feasibility combining optical ir instruments opto - mechanical interface simultaneous near - simultaneous operation details interface simple replicated on other small telescope programs observations thanks for assistance staff lick matt radovan rem stone support by joe miller director lick observatory supported fellowship packard foundation support nasa grant # hf1060.01 - 94a space telescope science institute operated association of universities for research astronomy nasa contract - 26555
| 0.508593
| 3,337
| 1,645
|
, Saving $0.1 in GPT-4.
|
18,372
|
given a graph @xmath0 , a connected sides cut @xmath1 or @xmath2 is the set of edges of e linking all vertices of u to all vertices of @xmath3 such that the induced subgraphs @xmath4 $ ] and @xmath5 $ ] are connected .
given a positive weight function @xmath6 defined on @xmath7 , the maximum connected sides cut problem ( max cs cut ) is to find a connected sides cut @xmath8 such that @xmath9 is maximum .
max cs cut is np - hard . in this paper , we give a linear time algorithm to solve max cs cut for series parallel graphs .
we deduce a linear time algorithm for the minimum cut problem in the same class of graphs without computing the maximum flow . *
2010 mathematics subject classification : * 90c27 , 90c57 . maximum cut , maximum connected sides cut , linear time algorithm , series parallel graphs , minimum cut .
|
sets and their characterisitic vectors will not be distinguished .
we refer to bondy and murty @xcite about graph theory terminolgy and facts . given an undirected graph @xmath10 and positive weights @xmath11 on the edges @xmath12 , the maximum cut problem ( max cut ) is that of finding the set of vertices @xmath13 that maximizes the weight of the edges in the cut @xmath14 or @xmath15 or @xmath16 ; that is , the weight of the edges with one endpoint in @xmath13 and the other in @xmath17 .
the ( decision variant of the ) max cut is one of the karp s original np - complete problems @xcite , and has long been known to be np - complete even if the problem is unweighted ; that is , if @xmath18 for all @xmath12 @xcite .
this motivates the research to solve the max cut problem in special classes of graphs .
the max cut problem is solvable in polynomial time for the following special classes of graphs : planar graphs @xcite , line graphs @xcite , graphs with bounded treewidth , or cographs @xcite .
but the problem remains np - complete for chordal graphs , undirected path graphs , split graphs , tripartite graphs , graphs that are the complement of a bipartite graph @xcite and planar graphs if the weights are of arbitrary sign @xcite . besides its theoretical importance , the max cut problem has applications in circuit layout design and statistical physics @xcite . for a comprehensive survey of the max cut problem ,
the reader is referred to poljak and tuza @xcite and ben - ameur et al . @xcite .
the best known algorithm for max cut in planar graphs has running time complexity @xmath19 , where @xmath20 is the number of vertices of the graph @xcite .
the main result of this paper is to exhibit a linear time algorithm for a special variant of max cut in series parallel graphs .
let us give some definitions .
given an undirected graph @xmath10 and a subset of vertices @xmath21 , a connected sides cut @xmath2 is a cut where both induced subgraphs @xmath4 $ ] and @xmath5 $ ] are connected .
special connected sides cuts are trivial cuts , i.e. cuts with one single vertex in one side . the corresponding weighted variant of max cut for connected sides cuts is called max connected sides cut problem ( max cs cut ) .
it is clear that max cut and max cs cut are the same problem for complete graphs .
since max cut is np - hard for complete graphs ( see @xcite ) then max cs cut is np - hard in the general case .
another motivation is that max cs cut gives a lower bound for max cut .
a parallel closure of a graph is an induced subgraph on two vertices .
a series extension of the graph @xmath10 based on the edge @xmath22 is adding a vertex @xmath23 of degree 2 in the middle of @xmath24 in order to have two edges instead of @xmath24 .
a parallel extension of @xmath25 based on the edge @xmath24 is adding an edge @xmath26 having the same incident vertices as @xmath24 .
series parallel graphs are graphs obtained by applying recursively series and/or parallel extensions starting from one edge
. a series degree of a vertex @xmath23 in a graph @xmath25 is the degree of @xmath23 after replacing every parallel closure of @xmath25 by one single edge .
a series labeling of the vertices of a series parallel graph is a labeling of the vertices from 0 to @xmath27 starting from the first two vertices @xmath28 and @xmath29 and so on to the last added vertex .
any series parallel graph contains at least one vertex of series degree 2 .
so , given a vertex @xmath23 of series degree 2 with the two parallel closures @xmath30 and @xmath31 incident to @xmath23 , and the two adjacent vertices @xmath32 and @xmath33 to @xmath23 , we can contract all edges of @xmath30 ( or @xmath31 ) and replace @xmath23 by @xmath32 ( or @xmath33 ) , and we obtain a new series parallel graph with a new vertex of series degree 2 . each involved graph in any step of this process is labeled @xmath34 , with @xmath35 and @xmath36 is the induced subgraph on the two vertices @xmath28 and @xmath29 .
let @xmath36 and @xmath37 be two graphs with @xmath38 an edge of @xmath39 .
the 2-sum of @xmath36 and @xmath37 , denoted @xmath40 , based on the edges @xmath41 and @xmath42 is the graph obtained by identifying @xmath41 and @xmath42 on an edge @xmath24 , and keeping @xmath43 , as it is .
we say that max cs cut is linear for a class of graphs if there is a linear time algorithm to solve it in such class .
the remaining of the paper is organized as follows : in section 2 , we give a linear time algorithm for max cs cut in series parallel graphs , in section 3 , we prove that 2-sums preserve the linearity of max cs cut .
we deduce a linear time algorithm for min cut in series parallel graphs in section 4 , and we conclude in section 5 .
maxcscutsp algorithm : input : a series parallel graph @xmath10 with a series labeling of @xmath44 , a positive weight function @xmath6 defined on @xmath7 . output : a @xmath6-maximum connected sides cut @xmath8 in @xmath25 .
0 ) begin 1 ) @xmath45 ; 2 ) while @xmath46 do 3 ) begin 4 ) let @xmath30 and @xmath31 be the two parallel closures incident to @xmath47 in @xmath48 : 5 ) if @xmath49 then contract @xmath31 ; 6 ) else : contract @xmath30 ; 7 ) @xmath50 ; 6 ) end of while 7 ) @xmath51 ; 8) @xmath52 ; 9 ) while @xmath53 do 10 ) begin 11 ) let @xmath30 and @xmath31 the two parallel closures incident to @xmath47 in @xmath48 : 12 ) if @xmath54 then @xmath55 ; 13 ) @xmath56 ; 14 ) end of while 15 ) end of maxcscutsp algorithm .
this algorithm has two phases : phase i ( steps 1 - 6 ) and phase ii ( steps 7 - 14 ) . in each step , we do roughly @xmath20 operations , so the complexity of maxcscutsp is @xmath57 , where @xmath58 .
maxcscutsp algorithm solves max cs cut in series parallel graphs .
the summary of the algorithm is as follows : maxcscut chooses a vertex v with series degree 2 ( step 4 ) and contract the less weighted parallel closure incident to v ( steps 5 and 6 ) . and
so on the resulted graph until it reaches @xmath36 , the starting single parallel closure ( phase i ) . in @xmath36 , the @xmath6-maximum connected sides cut is @xmath59 ( step 8) .
after that , it goes in the reverse path ( phase ii ) : the @xmath6-maximum connected sides cut is either the trivial cut based on the current vertex @xmath47 with series degree 2 or the current computed connected sides cut ( step 12 ) .
let @xmath47 be the chosen vertex with series degree 2 in @xmath48 , @xmath30 and @xmath31 the two parallel closures incident to @xmath47 .
without loss of generality , we can suppose that @xmath60 and @xmath61 .
let @xmath62 be the w - maximum connected sides cut in @xmath63 .
it suffices to prove that @xmath64 .
let @xmath8 be a connected sides cut in @xmath48 distinct from @xmath65 . since @xmath60 , we have only two cases : * case 1 : * @xmath66 then @xmath8 is a connected sides cut in @xmath67 containing @xmath31 . and
vice versa , any connected sides cut in @xmath67 containing @xmath31 is a connected sides cut in @xmath48 containing @xmath31 .
* case 2 : * @xmath68 then @xmath8 is a connected sides cut in @xmath61 not containing @xmath31 . and vice versa , any connected sides cut in @xmath61 not containing @xmath31 is a connected sides cut in @xmath48 not containing @xmath31 .
so the connected sides cuts candidates for the @xmath6-maximum connected sides cut in @xmath48 and @xmath69 are the same , except @xmath65 .
note that maxcscut algorithm solves max cs cut in series parallel graphs even for arbitrary sign weight functions .
let @xmath70 be the class of connected sides cuts of @xmath25 .
we need the following lemma .
@xmath71 and @xmath72 .
it follows that a @xmath6-maximum connected sides cut in @xmath40 is one of the three following connected sides cuts : ( cases 1 - 2 ) one of the two @xmath6-maximum connected sides cuts in @xmath48 which does not contain @xmath73 , ( case 3 ) or the 2-sum of the @xmath6-maximum connected sides cuts containing @xmath73 . to find a @xmath6-maximum connected sides cut in @xmath48 which does not contain @xmath73 ( case 2 )
, we have to contract @xmath38 .
we need then to perform at most @xmath74 operations , where @xmath75 is the linearity coefficient and @xmath76 is the number of vertices of @xmath48 ( by induction ) .
to find @xmath77 ( case 3 ) , we have to put @xmath78 , as big as possible , e.g. sum of the positive weights of all edges , and find @xmath79 . in this case
, we need to perform at most @xmath80 operations ( by induction ) .
so we have to compute max cs cut twice in each graph and compare three cuts .
the total number of operations is bounded then by @xmath81 , where @xmath20 is the number of vertices of @xmath40 .
so linearity of the problem is preserved .
mincutsp algorithm : input : a series parallel graph @xmath10 with a series labeling of @xmath44 , a positive weight function @xmath6 defined on @xmath7 . output : a @xmath6-minimum connected sides cut @xmath8 in @xmath25 .
we keep the same steps as maxcscutsp algorithm except the following changes in two steps : 5 ) if @xmath82 then contract @xmath31 ; 12 ) if @xmath83 then @xmath55 ; since this algorithm is similar to maxcscutsp , then its complexity is @xmath57 , where @xmath58 . and it is not difficult to see , similarly to maxcscutsp , that mincutsp gives the minimum weighted connected sides cut in a series parallel graph without computing the maximum flow .
we can conclude with the following result .
given a connected graph @xmath0 and a positive weight function @xmath6 defined on @xmath7 .
then any @xmath6-minimum cut is a connected sides cut of @xmath25 .
let @xmath2 be a cut with @xmath4 $ ] disconnected .
it suffices to prove that @xmath2 is not a @xmath6-minimum cut .
let @xmath84 $ ] be one connected component of @xmath4 $ ] .
since @xmath25 is connected , then @xmath85 ( i.e. there are edges between @xmath3 and @xmath86 ) .
it follows that @xmath87 .
another consequence of lemma 3.1 and theorem 4.1 is the following corollary .
2-sums preserves the linearity of min cut .
we have introduced a new variant of max cut : max cs cut , which is also np - hard .
we have provided two linear time algorithms for max cs cut and min cut , respectively , in series parallel graphs .
we have proved that 2-sums preserve the linearity of max cs cut and min cut .
further directions are to study max cs cut in larger classes of graphs than series parallel graphs .
* acknowledgements * the author is grateful to the deanship of scientific research at al imam mohammad ibn saud islamic university ( imsiu ) for supporting financially this research under the grant no 331203 .
f. barahona , ( 1990 ) , _ planar multicommodity flows , max cut , and the chinese postman problem _ , in : polyhedral combinatorics , proceedings dimacs workshop , morristown , new jersey , 1989 , w. cook , p.d .
seymour ( eds . ) [ dimacs series in discrete mathematics and theoretical computer science , volume 1 ] , american mathematical society , providence , rhode island : 189202 .
w. ben - ameur , a. r. mahjoub , and j. neto , _ the maximum cut problem _ , in : paradigms of combinatorial optimization , problems and new approaches , 2nd edition , j. wiley and sons , usa , v. t. paschos ( ed . ) , 2014 .
poljak and tuza ( 1995 ) , _ the max - cut problem a survey _ , in : special year on combinatorial optimization , w. cook , l. lovasz and p. seymour ( eds . ) , dimacs series in discrete mathematics and theoretical computer science , american mathematical society , 1995 .
|
sets vectors distinguished refer to bondy murty @xcite graph theory terminolgy facts undirected graph @xmath10 positive weights @xmath11 edges @xmath12 maximum cut problem finding vertices @xmath13 maximizes weight edges cut @xmath14 one endpoint in @xmath13 other @xmath17 decision variant max cut karp s original np - complete problems known complete even unweighted @xmath18 @xmath12 motivates research solve max cut problem special classes graphs solvable in polynomial time for special classes graphs planar line graphs bounded treewidth cographs problem remains np - complete for chordal graphs undirected path graphs split graphs tripartite graphs complement bipartite graph planar graphs weights arbitrary max cut problem applications in circuit layout design statistical physics comprehensive survey to poljak tuza @xcite ben - ameur et al . best known algorithm for max cut in planar graphs running time complexity @xmath19 @xmath20 number of vertices graph main result paper linear time algorithm for special variant max cut in series parallel graphsdefinitions undirected graph @xmath10 vertices @xmath21 connected sides cut @xmath2 subgraphs @xmath4 @xmath5 connected special connected sides cuts trivial one vertex side weighted variant max cut max connected sides cut problem cut max cut cs cut same problem for complete graphs max cut np - hard for complete graphs cs cut np - hard max cs cut lower bound for max cut parallel closure induced subgraph on two vertices series extension graph @xmath10 edge @xmath22 vertex @xmath23 degree 2 middle @xmath24 two edges parallel extension @xmath25 edge @xmath26 same incident vertices as @xmath24 series parallel graphs applying series parallel extensions from one edge series degree of vertex @xmath23 @xmath25 @xmath23 after replacing parallel closure @xmath25 by one edge series labeling of vertices parallel graph 0 to @xmath27 first vertices @xmath28 @xmath29 to last added vertex series parallel graph contains one vertex series degree 2vertex @xmath23 series degree 2 parallel closures @xmath30 @xmath31 adjacent vertices @xmath32 contract edges @xmath30 replace @xmath23 @xmath32 new series parallel graph new vertex series degree 2 each graph labeled @xmath34 @xmath35 @xmath36 induced subgraph vertices @xmath28 @xmath29 @xmath36 @xmath37 two graphs @xmath38 edge @xmath39 2-sum @xmath36 @xmath37 @xmath40 based edges @xmath41 @xmath42 graph obtained identifying @xmath41 @xmath42 edge @xmath24 keeping @xmath43 max cs cut linear class graphs linear time algorithm paper section 2 linear time algorithm max cs cut graphs section 3 2-sums preserve linearity max cut deduce linear time algorithm min cut graphs section 4 conclude section 5 maxcscutsp algorithm input series parallel graph @xmath10 series labeling @xmath44 positive weight function @xmath6 defined @xmath7 output @xmath6-maximum connected sides cut @xmath8 @xmath25begin @xmath45 @xmath46 @xmath30 @xmath31 two parallel closures @xmath47 @xmath48 @xmath49 contract @xmath31 contract @xmath30 @xmath50 end @xmath51 @xmath52 @xmath53 begin @xmath30 @xmath31 two parallel closures @xmath47 @xmath48 @xmath54 @xmath55 @xmath56 end maxcscutsp algorithm two phases i steps 1 - 6 ii 7 - 14 ) each @xmath20 operations complexity maxcscutsp @xmath57 @xmath58 maxcscutsp solves series parallel graphs maxcscut chooses vertex v series degree 2 step 4 contract less weighted parallel closure v steps 5 6 graph @xmath36 single parallel closure phase i ) @xmath36 @xmath6-maximum connected sides cut is @xmath59 step 8) reverse path phase ii ) @xmath6-maximum sides cut trivial cut current vertex @xmath47 series degree 2 or computed connected sides cut step 12 ) @xmath47 chosen vertex series degree 2 @xmath48 @xmath30 @xmath31 two parallel closures @xmath47 suppose @xmath60 and @xmath61 @xmath62 w - maximum sides cut @xmath63 prove @xmath64 @xmath8 connected sides cut @xmath48 distinct @xmath65 @xmath60 two cases 1 @xmath66 @xmath8 connected sides cut @xmath67 containing @xmath31 sides cut @xmath67 containing @xmath31 @xmath48 2 @xmath68 @xmath8 connected sides cut @xmath61 not containing @xmath31 @xmath61 not containing @xmath31 @xmath48 cuts candidates @xmath6-maximum @xmath48 @xmath69 same except @xmath65 maxcscut algorithm solves series parallel graphs arbitrary sign weight functions @xmath70 class connected sides cuts @xmath25 lemma @xmath71 @xmath72 @xmath6-maximum connected sides cut @xmath40 three sides cuts 1 - 2 two @xmath6-maximum sides cuts @xmath48 contain @xmath73 3 2-sum @xmath6-maximum sides cuts containing @xmath73 find @xmath6-maximum sides cut @xmath48 contain @xmath73 contract @xmath38perform most @xmath74 operations @xmath75 linearity coefficient @xmath76 number vertices @xmath48 find @xmath77 3 put @xmath78 sum positive weights edges find @xmath79 perform most @xmath80 operations compute max cs cut twice compare three cuts total number operations bounded by @xmath81 @xmath20 vertices @xmath40 linearity preserved mincutsp algorithm input series parallel graph @xmath10 series labeling @xmath44 positive weight function @xmath6 defined @xmath7 output @xmath6-minimum connected sides cut @xmath8 in @xmath25 same steps maxcscutsp changes two steps if @xmath82 contract @xmath31 @xmath83 @xmath55 similar maxcscutsp complexity @xmath57 @xmath58 mincutsp gives minimum weighted connected sides cut series parallel graph without computing maximum flow conclude result connected graph @xmath0 positive weight function @xmath6 @xmath7 @xmath6-minimum cut connected sides cut of @xmath25 @xmath2 cut @xmath4 disconnected @xmath2 not @xmath6-minimum cut @xmath84 one connected component of @xmath4 $@xmath25 connected @xmath85 edges between @xmath3 @xmath86 follows @xmath87 consequence lemma 3.1 theorem 4.1 corollary 2-sums preserves linearity min cut introduced new variant max cut cs cut np - hard provided two linear time algorithms max cs cut min cut series parallel graphs proved 2-sums preserve linearity max min cut study max cs cut larger classes author grateful deanship scientific research al imam mohammad ibn saud islamic university supporting research grant no 331203 barahona 1990 planar multicommodity flows max cut chinese postman problem polyhedral combinatorics proceedings dimacs workshop morristown 1989 w. cook seymour dimacs series discrete mathematics theoretical computer science volume 1 american mathematical society rhode island ben - ameur mahjoub j. neto maximum cut problem paradigms combinatorial optimization 2nd edition j. wiley sons paschos 2014 poljak tuza 1995 max - cut problem survey special year combinatorial optimization w. cook lovasz seymourdimacs mathematics computer science american mathematical society 1995
| 0.489931
| 3,101
| 1,689
|
, Saving $0.1 in GPT-4.
|
18,373
|
we report the latest results of j/@xmath0 , @xmath1 and @xmath2 production in the dielectron decay channel at mid - rapidity , from the star experiment .
we present @xmath3cross section measurements in @xmath4 collisions at @xmath5= 200 and 500 gev , as well as the first measurement of the @xmath1 to @xmath3ratio at @xmath5= 500 gev .
we also show @xmath3and @xmath2 production in heavy ion collisions : @xmath3nuclear modification factors ( @xmath6 ) in au+au collisions at @xmath7 200 , 62.4 and 39 gev and in u+u collisions at @xmath7 193 gev , @xmath2 @xmath6 in @xmath8au , au+au and u+u collisions at @xmath7 200 , 200 and 193 gev , respectively .
the results are compared to different model calculations .
|
it was proposed that in high energy heavy - ion collisions quarkonium states can be used as probes of quark - gluon plasma ( qgp ) formation . due to the debye - like color screening of the quark - antiquark potential in the hot and dense medium ,
quarkonia are expected to dissociate and this `` melting '' can be a signature of the presence of a qgp @xcite .
studies of production of quarkonium states in heavy - ion collisions can provide insight into the thermodynamic properties of the hot and dense medium @xcite .
however , in the medium created in heavy - ion collisions quarkonium yields can be enhanced , relative to @xmath4 collisions , due to statistical recombination of heavy quark - antiquark pairs . also , effects related to the normal nuclear matter , so called cold nuclear matter ( cnm ) effects : ( anti-)shadowing , initial - state parton energy loss , final state nuclear absorption or the cronin effect , can alter the qarkonium production . therefore , it is difficult to distinguish the color screening effect from the other effects .
j/@xmath0 with @xmath9 5 gev/@xmath10 , are expected to be almost not affected by the recombination and cnm effects @xcite at the rhic energies .
also @xmath2 are considered as cleaner probes of the qgp , compared to j/@xmath0 , because of the negligible statistical recombination and co - mover absorption @xcite .
systematic measurements of quarkonium production as a function of centrality and transverse momentum , for different colliding systems and collision energies may help to understand the quarkonium production mechanisms in heavy - ion collisions as well as properties of the created medium .
star has measured inclusive @xmath3production in @xmath4 collisions at @xmath5= 200 and 500 gev and @xmath11production at @xmath5= 500 gev through the dielectron decay channel at @xmath12 1 .
the @xmath13spectrum measurements at @xmath5= 200 gev are shown on the left panel of fig .
[ fig : jpsipp ] , where low- @xcite and high-@xmath13 @xcite results are shown separately as squares and circles , respectively .
data points are compared to different models of @xmath3production .
the predictions of the color evaporation model ( cem ) @xcite and nlo calculations within the nonrelativistic qcd ( nrqcd ) effective field theory that include both color - singlet and color - octet contributions ( nlo cs+co ) @xcite , describe the data quite well .
both predictions are for the prompt @xmath3production . the color singlet model ( csm ) @xcite for the direct production underpredicts the measured cross section . on the other hand ,
rhic @xmath3polarization measurements @xcite show different trend than the prediction of nrqcd @xcite , and are in agreement with the csm @xcite .
the right panel of fig .
[ fig : jpsipp ] shows @xmath3cross section as a function of @xmath14 ( defined as @xmath15 ) at @xmath5= 500 gev , for @xmath13range of 4 - 20 gev/@xmath10 . the star result ( full circles )
is compared to measurements at different energies .
the @xmath3cross section follows the @xmath14 scaling : @xmath16 , with @xmath17 5.6 @xmath18 0.2 at mid - rapidity and @xmath9 5 gev/@xmath10 for a wide range of colliding energies @xcite .
the left panel of fig .
[ fig : jpsipsi ] shows a ratio of @xmath19 production ( full circle ) compared to measurements of other experiments at different colliding energies , in @xmath4 and @xmath20a collisions .
the star result is consistent with the observed trend and , with the current precision , no collision energy dependence of the @xmath1 to j@xmath21 ratio is observed .
invariant cross section vs @xmath13 in @xmath22+@xmath22 collisions at @xmath23 200 gev at mid - rapidity at low @xcite and high @xmath13 @xcite shown as squares and circles , respectively , compared to different model predictions @xcite .
right : j/@xmath0 invariant cross section multiplied by @xmath24 vs @xmath14 in @xmath22+@xmath22 collisions at @xmath23 500 gev at mid - rapidity shown as full circles compared to measurements at different energies .
, title="fig : " ] invariant cross section vs @xmath13 in @xmath22+@xmath22 collisions at @xmath23 200 gev at mid - rapidity at low @xcite and high @xmath13 @xcite shown as squares and circles , respectively , compared to different model predictions @xcite .
right : j/@xmath0 invariant cross section multiplied by @xmath24 vs @xmath14 in @xmath22+@xmath22 collisions at @xmath23 500 gev at mid - rapidity shown as full circles compared to measurements at different energies .
, title="fig : " ] [ fig : jpsipsi ] effects of the hot and dense medium created in heavy - ion collisions are evaluated using the nuclear modification factors ( @xmath6 ) , defined as the ratio of the particle yield in @xmath25 collisions to that in @xmath4 collisions , scaled by the number of binary collisions .
@xmath3@xmath6 measurements have been done in au+au and u+u collisions , as a function of transverse momentum , and for different centrality bins ( represented as the number of participant nucleons , @xmath26 , in a collision ) .
first , we show measurements of @xmath6 in au+au collisions at @xmath27= 200 gev vs @xmath26 , for low- ( @xmath28 5 gev/@xmath10 ) @xcite and high-@xmath13 ( @xmath29 5 gev/@xmath10 ) @xcite inclusive @xmath3production . as can be seen on the left panel of fig .
[ fig : jpsiraa ] , @xmath6 decreases with increasing centrality , and the high-@xmath13 j/@xmath0 suppression level is lower that the low-@xmath13 one . since
high-@xmath13 j/@xmath0 are expected to be almost not affected by the recombination or cnm effects at rhic energies , the suppression in central collisions points to the color screening effect and thus formation of the qgp .
et al . _
@xcite model is in agreement with the low- and high-@xmath13@xmath6 results , while the prediction of zhao and rapp @xcite is consistent with low-@xmath13data but underpredicts the high-@xmath13@xmath6 .
both models take into account direct j/@xmath0 production with the color screening effect and production via the recombination of @xmath10 and @xmath30 quarks .
the interplay between recombination , cnm effects and direct j/@xmath0 production can be studied by changing energies of colliding ions .
the right panel of fig .
[ fig : jpsiraa ] shows low-@xmath13 j/@xmath0 @xmath6 in au+au collisions for different colliding energies , @xmath7 200 , 62.4 and 39 gev .
the observed suppression is similar for all these energies , and results are well described by the model of zhao and rapp @xcite .
the significant uncertainties come from lack of precise @xmath4 measurements at 62.4 and 39 gev , instead color evaporation model calculations @xcite are used as baselines .
star has also performed an analysis of j/@xmath0 @xmath6 in u+u collisions at @xmath7 193 gev , where the initial energy density can be up to 20% higher than in au+au collisions , in the same centrality bin @xcite .
the centrality - integrated u+u result is shown in the right panel of fig.[fig : jpsiraa ] , as a full circle .
the suppression level is consistent with what is measured in au+au collisions . 5 gev/@xmath10 ) and high-@xmath13 ( @xmath29 5 gev/@xmath10 ) j/@xmath0 @xmath6 as a function of @xmath26 in au+au collisions at @xmath7 200 gev at mid - rapidity ( @xcite ) with two model predictions ( @xcite ) .
right : j/@xmath0 @xmath6 as a function of @xmath26 in au+au collisions at @xmath7 200 , 62.4 and 39 gev at mid - rapidity with model predictions . as a full circle the minimum bias u+u measurement at @xmath7
193 gev is also presented.,title="fig:",scaledwidth=45.0% ] 5 gev/@xmath10 ) and high-@xmath13 ( @xmath29 5 gev/@xmath10 ) j/@xmath0 @xmath6 as a function of @xmath26 in au+au collisions at @xmath7 200 gev at mid - rapidity ( @xcite ) with two model predictions ( @xcite ) .
right : j/@xmath0 @xmath6 as a function of @xmath26 in au+au collisions at @xmath7 200 , 62.4 and 39 gev at mid - rapidity with model predictions . as a full circle the minimum bias u+u measurement at @xmath7
193 gev is also presented.,title="fig:",scaledwidth=49.0% ]
@xmath2 measurements in star have been performed in @xmath4 , @xmath31+au and au+au collisions at @xmath7 200 gev @xcite and in u+u collisions at @xmath7 193 gev .
the left panel of fig .
[ fig : upsilon ] shows the nuclear modification factor for @xmath8au collisions , @xmath32 , as a function of rapidity .
the result is compared to cem calculations with shadowing based on the eps09 npdf parametrization @xcite presented as the shaded area , model of arleo _ et al . _ where suppression of @xmath2 is due to initial - state parton energy loss @xcite presented as the dashed line , and the model combining both shadowing and energy loss , presented as the dashed - dotted line .
the strong @xmath2 suppression at @xmath33 can not be explained by the current predictions of cnm effects in @xmath8au collisions . as a function of rapidity for star @xcite ( stars ) , and phenix @xcite ( diamonds )
results , compared to different model predictions @xcite . right : @xmath6 as a function of @xmath26 for @xmath34 at @xmath35 , au+au @xcite ( circles ) , and u+u ( diamonds ) collisions , compared to two model predictions ( shaded areas ) @xcite.,title="fig:",scaledwidth=40.0% ] as a function of rapidity for star @xcite ( stars ) , and phenix @xcite ( diamonds ) results , compared to different model predictions @xcite .
right : @xmath6 as a function of @xmath26 for @xmath34 at @xmath35 , au+au @xcite ( circles ) , and u+u ( diamonds ) collisions , compared to two model predictions ( shaded areas ) @xcite.,title="fig:",scaledwidth=49.0% ] the right panel of fig .
[ fig : upsilon ] presents the nuclear modification factors as a function of @xmath26 , for @xmath34 in au+au collisions at @xmath7 200 gev ( full circles ) and u+u collisions at @xmath7 193 gev ( full diamonds ) , at @xmath36 1 .
a strong suppression is observed both in au+au : @xmath370.49@xmath180.13(au+au stat.)@xmath180.07(@xmath4 stat.)@xmath38(au+au syst.)@xmath39(@xmath4 syst . ) and u+u collisions : @xmath400.35@xmath180.17(stat.)@xmath41(syst . ) , in the most central collision .
the @xmath6 results in both colliding systems show similar trend .
the nuclear modification factor for @xmath42 ground state shows also a suppression in the most central 10% au+au collisions @xcite that is in agreement with the prediction of the liu _
_ model @xcite where the suppression is mostly due to the dissociation of the excited states .
the data are consistent with model predictions of strickland and bozov @xcite , and emerick _ et al . _
@xcite , that include hot - nuclear - matter effects .
calculations of emerick _ et al .
_ in addition take into account the cnm effects .
star has also observed the full suppression of @xmath43 states , the 95%-confidence upper limit for @xmath6 in the centrality range of 0 - 60% is @xmath44 0.32 .
however , understanding of cnm effects is important for a better interpretation of results from heavy - ion collisions .
in this proceedings we present star latest results of the j/@xmath0 , @xmath1 and @xmath2 production in @xmath4 , @xmath8au , au+au and u+u collisions at different colliding energies . j/@xmath0 and @xmath2 suppression in central heavy - ion collisions and the indication of the complete suppression of @xmath43 suggest formation of the quark - gluon plasma . however , no strong dependence on the colliding energy or colliding system of the suppression is observed .
this publication was supported by the european social fund within the framework of realizing the project , , support of inter - sectoral mobility and quality enhancement of research teams at czech technical university in prague , + cz.1.07/2.3.00/30.0034 and by grant agency of the czech republic , grant no.13 - 20841s .
|
proposed high energy heavy - ion collisions quarkonium states probes quark - gluon plasma qgp formation color screening quark - antiquark potential hot medium quarkonia dissociate presence qgp studies production quarkonium states heavy - ion collisions insight thermodynamic properties hot medium medium heavy - ion collisions quarkonium yields enhanced collisions due to statistical recombination heavy quark - antiquark pairs effects loss effect alter qarkonium production difficult to distinguish color screening effect other effects j/@xmath0 @xmath9 5/@xmath10 almost not affected by recombination cnm effects at rhic energies @xmath2 cleaner probes qgp negligible statistical recombination co - mover absorption @xcite systematic measurements of quarkonium production centrality transverse momentum different colliding systems energies understand quarkonium production mechanisms heavy - ion collisions properties created medium star measured @xmath3production in @xmath4 collisions at @xmath5= 200 500 gev @xmath11production at= 500 gev dielectron decay channel at @xmath12@xmath13spectrum measurements at= 200 gev shown left panel fig . low- high-@xmath13 results shown as squares circles data points compared to models @xmath3production predictions color evaporation model nlo calculations field theory color - octet contributions describe data predictions for prompt @xmath3production color singlet model underpredicts measured cross section rhic @xmath3polarization measurements show different trend agreement with csm @xcite right panel shows @xmath3cross section function of @xmath14 ) at @xmath5= 500 gev @xmath13range 4 - 20 gev/@xmath10 star result full circles compared to different energies @xmath3cross section follows @xmath14 scaling @xmath17 5.6 @xmath18 0.2 at mid - rapidity @xmath9 5 gev/@xmath10 for wide range colliding energies left panel shows ratio @xmath19 production full circle ) compared to other experiments different colliding energies collisions star result consistent with trend no collision energy dependence of @xmath1 to@xmath21 ratio observedinvariant cross section vs @xmath13 @xmath22 collisions @xmath23 200 gev mid - rapidity low high squares circles compared model predictions@xmath0 invariant cross section multiplied @xmath24 vs @xmath14 collisions 500 gev mid - rapidity full circles different energies invariant cross section vs @xmath13 collisions 200 gev mid - rapidity low high squares circles compared model predictions@xmath0 invariant cross section multiplied @xmath24 vs @xmath14 collisions 500 gev mid - rapidity full circles different energies effects hot dense medium heavy - ion collisions evaluated using nuclear modification factors @xmath6 ) ratio particle yield @xmath25 collisions to @xmath4 collisions scaled number binary collisions @xmath3@xmath6 measurements in au+au u+u collisions transverse momentum different centrality bins number of participant nucleons collisionmeasurements @xmath6 collisions @xmath27= 200 gev vs @xmath26 low- 5 high-@xmath13 5 inclusive @xmath3production @xmath6 decreases centrality high-@xmath13/@xmath0 suppression lower-@xmath13 high-@xmath13 affected recombination cnm effects suppression central collisions points to color screening effect formation qgp @xcite model low- high-@xmath13@xmath6 results prediction zhao and rapp @xcite consistent low-@xmath13data underpredicts high-@xmath13@xmath6 models direct j/@xmath0 production color screening effect recombination @xmath10 @xmath30 quarks interplay recombination cnm effects production studied by changing energies colliding ions shows low-@xmath13/@xmath0 @xmath6 in au+au collisions different colliding energies 200 62.4 39 gev observed suppression similar for energies results described by model zhao rapp @xcite uncertainties from lack precise @xmath4 measurements at 62.4 39 gev color evaporation model calculations @xcite used baselinesstar analysis@xmath0 @xmath6 u+u collisions at @xmath7 193 gev initial energy density 20% higher than au+au collisions same centrality bin centrality - integrated u+u result shown right panel fig. suppression level consistent with au+au collisions 5 gev/@xmath10 high-@xmath13 @xmath29@xmath0 @xmath6 function @xmath26 au+au collisions @xmath7 200 gev mid - rapidity two model predictions @xmath26 au+au collisions @xmath7 200 62.4 39 gev minimum bias u+u measurement at @xmath7 193 gev presented 5 gev high-@xmath13@xmath0 @xmath6 function @xmath26 au+au collisions @xmath7 200 gev mid - two model predictions@xmath0 @xmath6 function @xmath26 au+au collisions @xmath7 200 , 62.4 39 gev mid model predictions minimum bias u+u measurement at @xmath7 193 gev presented@xmath2 measurements star performed @xmath4+au au+au collisions @xmath7 200 gev @xcite u+u collisions @xmath7 193 gev left panel fig shows nuclear modification factor @xmath8au collisions function rapidity result compared to cem calculations with shadowing eps09 npdf parametrization @xcite shaded area model arleo suppression @xmath2 due to initial - state parton energy loss dashed line model shadowing energy loss dashed - dotted line strong @xmath2 suppression at @xmath33 explained by current predictions cnm effects @xmath8au collisions function rapidity star @xcite phenix @xcite diamonds results compared model predictions @xmath6 function @xmath26 @xmath34 @xmath35 au+au u+u diamonds collisions compared two model predictions shaded areas.0% function rapidity star @xcite phenix @xcite diamonds results @xmath6 function @xmath26 @xmath34+au u+u collisions compared two model predictions shaded areas.0% right panel figfig upsilon presents nuclear modification factors @xmath26 @xmath34 au+au collisions @xmath7 200 gev u+u @xmath7 193 gev @xmath36 strong suppression observed au+au @xmath370.49.13.07 u+u collisions @xmath400.35@xmath180.17 central collision @xmath6 results systems show similar trend nuclear modification factor @xmath42 ground state shows suppression central 10% au+au collisions agreement prediction liu model suppression due dissociation excited states data consistent with model predictions strickland bozov emerick et al hot - nuclear - matter effects calculations account cnm effects star observed full suppression @xmath43 states 95%-confidence upper limit @xmath6 centrality 0 - 60% @xmath44 0.32 understanding cnm effects important interpretation results heavy - ion collisions present star latest results/@xmath0 @xmath1 @xmath2 production @xmath4 @xmath8au au+au u+u collisions different colliding energies@xmath0 @xmath2 suppression central heavy - ion collisions complete suppression @xmath43 suggest formation quark - gluon plasma no dependence colliding energy system publication supported european social fund inter - sectoral mobility quality enhancement research teams czech technical university prague grant agency czech republic grant no.13 - 20841s
| 0.491339
| 3,206
| 1,620
|
, Saving $0.1 in GPT-4.
|
18,376
|
based on photoionization calculations we present a study of the nlr emission line ratios of narrow - line seyfert 1 ( nls1 ) galaxies . in particular , we investigate the influence of different euv - soft - x - ray spectral shapes ( a giant soft excess , a steep x - ray powerlaw , the presence of a warm absorber ) and nlr cloud properties ( density , abundances , distance from the continuum source ) on the predicted optical emission - line ratios like [ oiii ] and [ fexiv ] .
, , agn , emission lines , photoionization models , nls1 galaxies , individual : 1e 0117.2 - 2837
|
narrow line seyfert 1 ( nls1 ) galaxies have recently received much attention due to their unusual optical x - ray properties which are not yet well understood .
photoionization models of the circum - nuclear emission / absorption regions allow us to investigate scenarios to explain the main characteristics of nls1s , i.e. , ( i ) extremely steep x - ray spectra within the energy band , ( ii ) narrow ( fwhm @xmath0 2000 km / s ) balmer lines and strong feii emission , and ( iii ) weak forbidden lines except for some relatively strong high - ionization iron lines . here , we concentrate on ( iii ) ; for a discussion of ( i ) and ( ii ) see komossa & fink ( 1997a ) , and komossa & meerschweinchen ( 2000 ) . in particular , we study the influence of different euv - soft - x - ray spectral shapes ( a giant soft excess , a steep x - ray powerlaw , the presence of a warm absorber ) and nlr cloud properties ( density , abundances , and distance from the nucleus ) on the predicted optical emission - line ratios .
first results of this study were presented by komossa & janek ( 1999 ) .
1e 0117.2 - 2837 ( qso0117 - 2837 ) was discovered as an x - ray source by _ einstein _ and is at a redshift of @xmath1=0.347 ( stocke et al .
1991 , grupe et al .
its x - ray spectrum is extremely steep ( see komossa & meerschweinchen 2000 for a detailed x - ray analysis of this source ) .
we have obtained new optical spectra of 1e 0117.2 - 2837 with the eso1.52 m telescope at lasilla , in september 1995 .
the optical spectrum reveals several signs of a nls1 galaxy ( we do not distinguish between nl seyferts and nl quasars , here ) : weak [ oiii]@xmath25007 emission and strong feii complexes ( fig .
1 ) . after subtraction of the feii spectrum ( see grupe et al .
1999 for details ) we derive fwhm@xmath3=2100@xmath4 km / s , fwhm@xmath5}}$]=820@xmath6 km / s ( based on _ single - component _ gaussian fits to the emission lines ; this leaves some broad wings as residuals ) , and the ratio [ oiii]/h@xmath7=0.056 .
the narrow emission lines , i.e. those originating from the narrow line region ( nlr ) , like [ oiii]@xmath25007 and [ oi]@xmath26300 , are rather weak in 1e 0117.2 - 2837 and in nls1 galaxies in general .
occasionally , however , fairly strong high - ionization iron lines are present .
we investigate several models to explain these observations , starting with the assumption that the nlr is ` normal ' ( i.e. a typical type 1 seyfert , as far as distance from the nucleus , gas density and covering factor are concerned ) . all photoionization calculations were carried out using the _ cloudy _ code ( ferland , 1993 ) . in the first step ,
non - solar metal abundances were assumed . over abundant metals ( with respect to the solar value ) were shown to delay the complete removal of a blr multiphase equilibrium ( komossa & meerschweinchen 2000 ) . due to their rather strong influence on the cooling , metals ,
if overabundant , can lead to weaker optical line emission .
however , we find the effect to be insufficient to explain the observed line intensities . as shown in komossa & schulz ( 1997 ) , the weak [ oiii]@xmath25007 domain of the line correlations in the usual diagnostic diagrams of seyfert 2 galaxies can be explained by very steep euv continua with @xmath8 @xmath9 2.5 .
although , e.g. , the nls1 rxj1225.7 + 2055 indeed exhibits a rather _ steep _ euv spectrum ( determined by a powerlaw connection between the flux at the lyman limit and 0.1 kev ) , that of rxj1239.3 + 2431 is very _ flat _
( greiner et al . 1996 ) .
placing warm absorbing material along the line of sight to the nlr would make the latter see a continuum that is only modified in the soft x - ray region , with negligible influence on the line emission .
the same holds for an intrinsically steep x - ray powerlaw , which only leads to a slight weakening of the low - ionization lines . in cases where a warm absorber is present ,
the high - ionization iron lines ( [ fex ] and higher ) can be produced within the warm gas itself ( see komossa & fink 1997a , b , c for details ) .
however , no one - to - one match between the observed coronal lines in the nls1 ngc4051 and those predicted to arise from the x - ray warm absorber in this galaxy was found ( komossa & fink 1997a , and these proceedings ) , suggesting that in general , the coronal line and warm absorber regions are separate components . in order to assess the influence of a strong euv - soft - x - ray excess on optical line emission , we have calculated a sequence of models with an underlying mean seyfert continuum plus a black body of varying temperature , for a range of densities and distances of the nlr gas from the central continuum source .
although the contribution of a hot bump - component can considerably strengthen the high - ionization iron lines ( eg . [ fex]@xmath26374 , [ fevii]@xmath26087 and [ fexiv]@xmath25303 ) , reflecting the fact that their ionization potentials are at soft x - ray energies , these models overpredict the [ oiii ] emission . we conclude that the weakness of forbidden lines in nls1s must be due to an overall lower emissivity of the nlr . if this is caused by _ shielding _ of the nlr from ionising photons , the model must avoid boosting the low - ionization lines like [ oii ] .
more likely , the region is gas poor , i.e. less of the impinging photons can be reprocessed into line emission .
` normal ' line ratios would then result in weak forbidden lines being undetected .
for those objects with strong high - ionization ( iron ) lines , models favor the dominance of low - density gas and small distances to the ionizing source .
|
line seyfert 1 nls1 ) galaxies attention to unusual optical x - ray properties not understood photoionization models circum - nuclear emission absorption regions investigate characteristics of nls1s steep x - ray spectra narrow balmer lines strong feii emission weak forbidden lines strong high - ionization iron lines concentrate on ( iii ) see komossa & fink 1997a komossa & meerschweinchen ( 2000 ) study influence of euv - soft - x - ray spectral shapes steep warm absorber nlr cloud properties on predicted optical emission - line ratios first results presented by komossa & janek ( 1999 ) 1e 0117.2 - 2837 ( ) discovered x - ray source by einstein at redshift of @xmath1=0.347 x - ray spectrum steep see komossa & meerschweinchen 2000 obtained new optical spectra of 1e 0117.2 - 2837 with eso1.52 m telescope at lasilla september 1995 optical spectrum reveals signs of nls1 galaxy weak@xmath25007 emission strong feii complexes fig 1subtraction feii spectrum grupe et al . 1999 derive fwhm@xmath3=2100@xmath4 km / s fwhm@xmath5}}$]=820@xmath6 km / s single - component gaussian fits emission lines broad wings residuals ratio [ oiii]/h@xmath7=0.056 narrow emission lines narrow line region@xmath25007@xmath26300 weak in 1e 0117.2 - 2837 nls1 galaxies occasionally strong high - ionization iron lines present investigate models assumption nlr normal ' typical type 1 seyfert distance nucleus gas density covering factor photoionization calculations cloudy code ferland 1993 ) non - solar metal abundances assumed over abundant metals delay removal blr multiphase equilibrium komossa 2000 ) strong influence cooling metals overabundant lead weaker optical line emission effect insufficient explain observed line intensities 1997 weak [ oiii]@xmath25007 domain line correlations seyfert 2 galaxies explained steep euv continua with @xmath8 @xmath9 2.5 nls1 rxj1225.7 + 2055 exhibits steep euv spectrum by powerlaw connection between flux at lyman limit 0.1 kev rxj1239.3 + 2431 flat ( greiner et al . 1996 ) warm absorbing material line sight nlr continuum modified in soft x - ray region negligible influence on line emission same steep x - ray powerlaw slight weakening low - ionization lines warm absorber present high - ionization iron lines produced within warm gas komossa & fink 1997a no match between coronal lines in nls1 ngc4051 predicted from x - ray warm absorber found coronal line warm absorber regions separate components assess influence strong euv - soft - x - ray excess on optical line emission calculated sequence of models with mean seyfert continuum black body varying temperature for range densities distances nlr gas from central continuum source hot bump - component can strengthen high - ionization iron lines at soft x - ray energies models overpredict oiii ] emissionconclude weakness forbidden lines nls1s due lower emissivity nlr caused shielding nlr from ionising photons model avoid boosting low - ionization lines likely region gas poor less impinging photons reprocessed line emission normal line ratios weak forbidden lines undetected strong high - ionization lines models favor low - density gas small distances ionizing source
| 0.262612
| 1,469
| 756
|
, Saving $0.0 in GPT-4.
|
18,398
|
a transiting planet eclipses part of the rotating stellar surface , thereby producing an anomalous doppler shift of the stellar spectrum . here
i review how this `` rossiter - mclaughlin effect '' can be used to characterize exoplanetary systems .
in particular , one can measure the angle on the sky between the orbital axis and the stellar rotation axis . this may help to discriminate among migration theories .
measurements have been made for 4 exoplanets , and in all cases the spin and orbital axes are fairly well - aligned . in the future , the rossiter - mclaughlin effect may also be important as an alternative means of probing exoplanetary atmospheres , and for confirming the transits of objects identified by the satellite missions _
corot _ and _
|
for most of the participants in this workshop , the word `` transit '' brings to mind an image such as the left panel of fig . 1 .
this is the beloved transit light curve , an inverted boxcar with its corners sanded down by limb darkening . for those of us who study the rossiter - mclaughlin effect ,
the object of our affection is shown in the right panel of fig . 1 : an elegant antisymmetric blip with a gently sloping baseline .
what is the meaning of this wiggly waveform ?
it is the variation in the apparent doppler shift of the star throughout a transit , the most prominent _ spectroscopic _ effect of the planet s passage .
it arises because of stellar rotation .
the emergent spectrum from a given point on the stellar disk is doppler - shifted by an amount that depends on the local line - of - sight velocity .
the spread in velocities across the disk broadens the spectral lines ( along with thermal and turbulent broadening ) .
when the planet hides a portion of the stellar surface , the corresponding velocity components are missing from the spectral lines .
this distortion is usually manifested as an `` anomalous '' doppler shift . when the planet is in front of the approaching ( blueshifted ) half of the stellar disk
, the starlight appears slightly redshifted .
the anomalous doppler shift vanishes when the planet is in front of the stellar rotation axis , and then reverses sign as the planet moves to the receding ( redshifted ) half of the stellar disk .
this phenomenon is called the `` rossiter - mclaughlin effect , '' in honor of the two gentlemen who described it in a back - to - back pair of papers in the astrophysical journal ( rossiter 1924 ; mclaughlin 1924 ) , although in fact the effect had been observed years earlier ( forbes 1911 ; schlesinger 1911 ) . of course
, those observations involved eclipsing binary stars , rather than exoplanets . the exoplanetary rossiter - mclaughlin ( rm ) effect was first observed by queloz et al .
( 2000 ) and bundy & marcy ( 2000 ) during transits of hd 209458b .
it has since been observed in at least 3 other systems , and the motivation for additional measurements is strong . in this contribution ,
i explain the motivation , review the existing measurements and their implications , and discuss prospects for future observations .
more details on the theory can be found in the works by ohta , taruya , & suto ( 2005 ) , gimenez ( 2006 ) , and gaudi & winn ( 2007 ) .
by observing the rm effect with a high signal - to - noise ratio , one can determine the trajectory of the planet relative to the ( sky - projected ) stellar rotation axis .
specifically , one can measure the angle @xmath0 between the sky projections of the orbital axis and the stellar rotation axis .
this is illustrated in fig .
2 . pictured
are three trajectories of a transiting planet , all of which have the same impact parameter ( and hence produce exactly the same photometric signal ) , but which differ in @xmath0 ( and hence produce different rm waveforms ) . since the angular momentum of the star and of the orbits are derived from the same source
the protostellar disk one would naturally expect the spin and orbit to be well - aligned and @xmath0 to be small .
indeed , in the solar system , the planetary orbital axes are aligned with the solar rotation axis within @xmath110@xmath2 .
why , then , would one bother measuring @xmath0 for exoplanets ?
, from gaudi & winn ( 2007 ) .
three different trajectories of a transiting planet are shown along with the corresponding rm waveform .
solid lines include the effect of limb darkening ; dotted lines neglect limb darkening.,width=510 ] an answer that some readers may find satisfactory is `` what one can measure , one should measure . ''
exoplanets have rewarded observers with surprises in the past . those readers requiring a theory - based motivation might ask whether or not the migration mechanism for hot jupiters preserves spin - orbit alignment .
migration via tidal interactions with a disk would not be expected to perturb spin - orbit alignment , and may even drive the system toward closer alignment ( see , e.g. , ward & hahn 1994 , 2003 ) .
in contrast , migration mechanisms involving disruptive events such as planet - planet interactions or planetesimal collisions would act to enhance any initial misalignment .
another migration theory involves the kozai mechanism , in which a companion star causes oscillations in the planetary orbit s eccentricity and inclination . by the time tides
circularize the orbit and halt `` kozai migration , '' the orbital inclination can change substantially ( wu & murray 2003 ; eggenberger , udry , & mayor 2004 ; d. fabrycky & s. tremaine , priv .
thus , measuring spin - orbit alignment offers a possible means for discriminating among migration theories , or at least for identifying particular planets that migrated through disruptive mechanisms .
results for @xmath0 have been published for two systems . for hd 209458 ,
the latest result is @xmath3 ( winn et al .
the small but nonzero angle is reminiscent of solar system planets . for hd 189733 ,
the result is also a very close alignment : @xmath4 ( see fig . 3 , from winn et al .
in addition , a paper in press by wolf et al .
( 2007 ) states @xmath5 for hd 149026 .
the lower accuracy in that case is mainly due to the smaller size of the planet relative to the star .
most recently , the tres-1 system was found to be consistent with @xmath6 within about @xmath7 ( n. narita , this volume ) . together ,
these results rule out the ( admittedly rather extreme ) hypothesis of completely random alignment , with @xmath899.9% confidence . apparently , in these systems at least , the migration mechanism preserved spin - orbit alignment .
( the observed alignment probably reflects the initial condition , because the timescale for tidal coplanarization is very long ; see winn et al .
further measurements are needed to estimate the actual distribution of @xmath0 , and of course the discovery of even a single example of a grossly misaligned system would be of great interest . for planning purposes , gaudi & winn ( 2007 )
have provided formulas that can be used to estimate the accuracy with which @xmath0 can be measured , given the geometry of the system and the characteristics of the data .
it is important to remember that @xmath0 is the angle between the _ projected _ orbital and rotation axes .
the inclinations of those two axes with respect to the sky plane must be determined using other means .
the orbital inclination can be determined from the transit light curve , but in general the stellar inclination is unknown .
for the special case of hd 189733 , however , the rotation period has been measured ; the star is chromospherically active and exhibits quasiperiodic flux variations , presumably due to star spots . the combination of a measured rotation period , stellar radius , and @xmath9 places a constraint on @xmath10 .
hence this is the first case for which the true ( 3-d ) angle between the orbital and rotational axes can be measured , and the result is an upper bound of @xmath11 with 95% confidence ( winn et al .
2007 ) .
radial velocities were derived from spectra that were measured with the keck i 10 m telescope and hires .
the residuals ( o@xmath12c ) are displayed beneath each data set.,width=510 ]
snellen ( 2004 ) realized that the rm effect offers an alternative method of `` transmission spectroscopy . '' during a transit , a small portion of the received starlight is filtered through the planetary atmosphere , which may imprint detectable absorption ( or emission ) features . at the wavelength of a strong absorption line ,
the effective radius of the planet is larger .
this can be detected through the wavelength - dependence of the photometric transit depth , a technique that was used by charbonneau et al .
( 2002 ) to detect atomic sodium in the atmosphere of hd 209458 .
since the rm anomaly also depends on the effective radius of the planet , the wavelength - dependence of the rm effect can be used for transmission spectroscopy . rather than relying on accurate time - series photometry ,
the rm method relies on the comparison of the doppler shifts of different lines within a single spectrum . in principle
, this could lead to more accurate results ( at least in comparison to ground - based photometry ) , although only upper limits have been achieved to date ( snellen 2004 ) .
it is interesting to compare the velocity amplitude @xmath13 of the star s orbital motion with the velocity amplitude @xmath14 of the rm effect . for a small planet of mass @xmath15 on an edge - on circular orbit with period @xmath16
, gaudi & winn ( 2007 ) showed that the order of magnitude of @xmath17 is @xmath18 thus , for hot jupiters , the anomalous velocity is smaller than the orbital velocity .
however , for smaller planets with longer periods , the amplitude of the rm effect will _ exceed _ the stellar orbital velocity .
for an earth - mass planet with a period of one year , @xmath19 for @xmath20 km s@xmath21 .
this raises the appealing possibility of using the rm effect to confirm transits that will be detected by the forthcoming satellite missions _
corot _ and _ kepler_. the most exciting discoveries by these satellites will be very small planets with transit depths of @xmath1@xmath22 or less .
one would like to detect the spectroscopic orbit and thereby learn the planetary mass , but this will be challenging because @xmath13 is only @xmath110 cm s@xmath21 for an earth - like planet in the habitable zone of a solar - type star .
it would be useful to have a means of confirming the transits before chasing after the spectroscopic orbit .
photometric confirmation from the ground may prove very difficult .
rm confirmation appears more feasible for at least some stars , not only because @xmath23 as mentioned above , but also because the rm velocity variation occurs over the time scale of the transit duration ( @xmath11 day ) , which is much shorter than the time scale of the orbital velocity variation ( @xmath11 yr ) . both of these points
are illustrated in fig .
km s@xmath21 , from gaudi & winn ( 2007 ) .
a circular , edge - on orbit is assumed .
the sinusoid with a period of 1 yr is the spectroscopic orbit .
the spike near time zero is the rm effect , which occurs over @xmath11 day.,width=510 ] this idea is discussed at greater length in these proceedings by w. welsh .
a related idea by ohta , taruya , & suto ( 2006 ) is to search for planetary rings using rm observations . here too , the rm effect is used as an alternative means of measuring the transit depth , relying on the measurement of spectral features rather than photometric stability .
the rm effect is the anomalous doppler shift of starlight that is observed during a planetary transit , due to stellar rotation .
it provides another fundamental observable for exoplanetary systems : the degree of alignment between the planetary orbital axis and the stellar rotation axis ( in projection on the sky ) .
observations of the rm effect are likely to grow in importance in the future , as an alternative means of confirming photometric transits and possibly also for transmission spectroscopy .
i have enjoyed the privilege of working with scott gaudi on rm theory and john johnson on rm observations ; the results described here owe much to them .
i am grateful to yasushi suto for stimulating my interest in this subject and for hospitality in tokyo .
dave charbonneau , geoff marcy , bob noyes , dimitar sasselov , and ed turner have also provided helpful advice .
i thank cristina afonso and the other organizers for staging a wonderful meeting in heidelberg .
|
participants workshop word transit '' brings image left panel fig . 1 beloved transit light curve inverted boxcar corners sanded by limb darkening study rossiter - mclaughlin effect object affection right panel fig . 1 antisymmetric blip sloping baseline meaning wiggly waveform variation in doppler shift star throughout transit prominent spectroscopic effect planet s passage arises stellar rotation emergent spectrum stellar disk doppler - shifted local line - of - sight velocity spread velocities broadens spectral lines thermal turbulent broadening planet hides portion stellar surface velocity components missing from spectral lines distortion manifested as anomalous '' doppler shift planet in front of approaching half stellar disk starlight appears slightly redshifted doppler shift vanishes in front of stellar rotation axis reverses planet moves to receding redshifted half disk called rossiter - mclaughlin effect honor two gentlemen described rossiter 1924 ; 1924 effect observed years earlier forbes 1911 ; schlesinger 1911 ) observations involved eclipsing binary stars exoplanetsexoplanetary rossiter - mclaughlin effect first observed by queloz bundy & marcy 2000 during transits hd 209458b observed in 3 other systems motivation for additional measurements strong explain motivation review existing measurements implications discuss prospects for future observations details in works ohta taruya suto 2005 gimenez 2006 gaudi & winn 2007 ) observing rm effect high signal - to - noise ratio trajectory planet relative to stellar rotation axis measure angle @xmath0 between sky projections orbital axis stellar rotation axis illustrated in fig . 2 three trajectories of transiting planet same impact parameter signal differ in @xmath0 different rm waveforms angular momentum star orbits from protostellar disk spin orbit aligned @xmath0 small solar system planetary orbital axes aligned with solar rotation axis within @xmath110@xmath2 why measuring @xmath0 for exoplanets ? gaudi & winn 2007 three trajectories of transiting planet corresponding rm waveform solid lines include effect limb darkening dotted lines neglect limb darkening what can measure should measureexoplanets rewarded surprises readers might ask migration mechanism for hot jupiters preserves spin - orbit alignment migration via tidal interactions with disk perturb alignment may drive system toward closer alignment ward & hahn 1994 2003 migration mechanisms disruptive events planet - planet interactions planetesimal collisions enhance initial misalignment another migration theory involves kozai mechanism companion star causes oscillations in planetary orbit s eccentricity inclination tides halt migration orbital inclination can change 2003 2004 measuring spin - orbit alignment offers means for discriminating migration theories identifying planets migrated through disruptive mechanisms results for @xmath0 published for two systems for hd 209458 latest result is @xmath3 small nonzero angle reminiscent of solar system planets for hd 189733 close alignment : @xmath4 paper by wolf et al . 2007 states @xmath5 for hd 149026 lower accuracy due to smaller size planet relative to star tres-1 system consistent with @xmath6 within @xmath7 results rule out hypothesis random alignment with @xmath899.9% confidence in these systems migration mechanism preserved spin - orbit alignment observed alignment reflects initial condition timescale for tidal coplanarization long winn further measurements needed estimate distribution of @xmath0 discovery of misaligned system gaudi & winn 2007 provided formulas to estimate accuracy @xmath0 geometry characteristics @xmath0 is angle between orbital and rotation axes inclinations determined orbital inclination from transit light curve stellar inclination unknown for hd 189733 rotation period measured star chromospherically active exhibits quasiperiodic flux variations due to star spots measured rotation period stellar radius @xmath9 constraint on @xmath10 first case true angle between orbital and rotational axes measured result upper bound of @xmath11 with 95% confidence winn et al 2007 radial velocities derived from spectra measured with keck i 10 m telescope residuals ( o@xmath12c ) displayed beneath each data set snellen ( 2004 ) realized rm effect offers alternative method of transmission spectroscopy during transit small starlight filtered through atmosphere may imprint detectable absorption emission featureswavelength strong absorption line effective radius planet larger detected through wavelength - dependence photometric transit depth used charbonneau 2002 atomic sodium atmosphere hd 209458 rm anomaly depends on radius wavelength - dependence used for transmission spectroscopy time - photometry rm method relies comparison doppler shifts lines single spectrum could accurate results upper limits achieved snellen 2004 ) compare velocity amplitude @xmath13 star s orbital motion with velocity amplitude @xmath14 rm effect small planet mass @xmath15 circular orbit period @xmath16 gaudi winn 2007 order of magnitude of @xmath17 is @xmath18 hot jupiters anomalous velocity smaller than orbital velocity smaller planets longer periods amplitude rm effect exceed stellar orbital velocity earth - mass planet period one year @xmath19 @xmath20 km s@xmath21 possibility rm effect confirm transits detected satellite missions corot kepler exciting discoveries small planets with transit depths @xmath1@xmath22 or lessdetect spectroscopic orbit learn planetary mass challenging @xmath13 @xmath110 cm s@xmath21 for earth - like planet in habitable zone solar - type star useful transits before spectroscopic orbit photometric confirmation difficult rm confirmation feasible for some stars @xmath23 mentioned rm velocity variation over transit duration @xmath11 day ) shorter than orbital velocity variation @xmath11 yr ) illustrated in fig . km s@xmath21 gaudi & winn 2007 circular edge - on orbit assumed sinusoid period 1 yr spectroscopic orbit spike near time zero rm effect over @xmath11 day discussed by w. welsh related idea by ohta taruya suto ( 2006 search for planetary rings using rm observations rm effect alternative measuring transit depth spectral features photometric stability rm effect anomalous doppler shift of starlight during planetary transit due to stellar rotation provides fundamental observable alignment between planetary orbital axis stellar rotation axis observations rm effect grow importance alternative confirming photometric transits for transmission spectroscopyenjoyed working with scott gaudi rm theory john johnson observations results owe them grateful to yasushi suto interest hospitality tokyo dave charbonneau geoff marcy bob noyes dimitar sasselov ed turner provided advice thank cristina afonso organizers meeting heidelberg
| 0.432812
| 2,675
| 1,338
|
, Saving $0.1 in GPT-4.
|
18,404
|
a study of the chemical structure of the envelopes around a sample protostars is introduced .
physical models for the envelopes derived using 1d radiative transfer modeling of their dust continuum emission are used as input for monte carlo modeling of single - dish line observations in order to establish the chemical inventories for the different sources .
co and hco@xmath0 abundances are found to be correlated with envelope mass : the sources with the most massive envelopes show the lowest abundances , supporting the idea that the depletion of these molecules is most efficient in the colder , denser environments .
other molecules like cs and hcn do not show a similar trend .
deuterated species like dco@xmath0 and dcn also show signs of correlations with envelope mass and temperature : the deuterium fractionation of hco@xmath0 is most prominent for the coldest and most massive envelopes in the sample and at the same time anti - correlated with the fractionation of hcn .
this puts constraints on the low temperature gas - phase deuterium chemistry .
|
understanding the chemistry of protostellar environments is of great importance for addressing topics of star formation .
it is directly related to processes regulating star formation , for example through the ionisation and the chemistry also potentially serves as an evolutionary clock against which physical models , e.g. for the protostellar collapse , can be compared ( see e.g. @xcite for an overview ) .
recent evidence suggests that many of the traditional molecular tracers of density and temperature may be subject to significant gradients in abundances .
examples are the freeze - out of molecules like co onto dust grains both in pre - stellar cores ( @xcite , @xcite ) and in the cold and dense parts of low - mass protostellar envelopes ( @xcite ) and enhancement of molecules due to liberation of ice mantles in regions of higher temperatures similar to `` hot cores '' or in regions subject to shocks driven by protostellar outflows ( @xcite , @xcite , @xcite ) . in this paper a preliminary overview of the results from a large survey of the chemical properties of a sample of low - mass protostars is presented . for further details
see @xcite and jrgensen et al .
( 2003 ; in prep . ) .
the sample of objects in this study comprises 18 pre- and protostellar objects , including 11 class 0 objects , 5 class i objects and 2 pre - stellar cores ; the full sample is presented in @xcite .
these objects have been observed in a range of molecular transitions using the 15 m james clerk maxwell telescope ( jcmt ) , 20 m telescope at onsala space observatory and the iram pico valeta 30 m telescope between 2000 and 2002 . the physical structure of each envelope
is derived using 1d radiative transfer calculations .
power - law density profiles are assumed for a range of envelope parameters ( e.g. density slope and optical thickness ) and the corresponding temperature profiles calculated using the radiative transfer code , dusty ( @xcite ) for a given central source of heating . for each model ,
images are constructed and compared to the observed scuba images ( 450 and 850 @xmath1 m ) and seds over the range from 60 @xmath1 m to 1.3 mm .
it is found that each protostellar envelope can successfully be modeled under these assumptions , whereas the pre - stellar cores can not , which is not unexpected since these sources per definition are characterized as not having central sources of heating . the derived physical models are subsequently used as basis for calculating the molecular excitation and radiative transfer for the molecular lines using the monte carlo code of @xcite .
the fractional abundances ( assumed to be constant ) are constrained through comparisons with the integrated line intensities and it is found that the majority of the lines can successfully be accounted for with the presented models and assumptions . in fig .
[ abundhist ] , an overview of the average abundances for the class 0 and i objects are compared to the molecular cloud l134n ( @xcite ) and the abundances in the steady state or pre - collapse phase of the models of @xcite .
the abundances are , where possible , derived from the minor isotopic lines .
the main isotopic lines of e.g. cs and hco@xmath0 are more sensitive to departures from spherical symmetry or the interaction of molecular outflows with the envelope material .
as can be seen from fig .
[ abundhist ] and [ co ] significant differences exist between the various molecules relative to the two comparison sets of abundances and also between the samples of class 0 and i objects for some molecules in particular co and hco@xmath0 .
co is thought to be frozen out onto dust grains at low temperatures ( @xmath2 k ; @xcite ) and co is indeed most depleted for the sources with the most massive envelopes ( fig .
[ co ] ) , i.e. , the envelopes with a region in which the temperatures are low enough and densities high enough that the depletion can be effective . the primary formation route of hco@xmath0 is connected to the presence of co through the reaction @xmath3 , as is indeed illustrated by the data in fig .
[ hcop ] .
other molecules like cs and hcn do not show a similar trend with mass , which at first may seem unexpected ( lower panel of fig .
[ co ] ) : cs depletion is expected to occur at even lower densities than for co and cs should stay bound to the dust grains to even higher temperatures than co due to its larger binding energy to the dust grains .
comparison to the models of @xcite shows that the cs abundances observed in the protostellar environments are indeed lower by more than an order of magnitude , which could indicate that the observed lines only probe the region where cs is depleted .
a detailed comparison with other sulfur - bearing species like so will be needed to fully address this , and similarly for the nitrogen - bearing species that also show interesting features in particular the strikingly low hnc abundances for the protostars compared to other star - forming environments .
another interesting aspect of the chemistry in the envelopes around protostars is the degree of deuterium fractionation .
gas - phase deuterium fractionation of molecules like hco@xmath0 is expected to be particularly efficient at low temperatures ( e.g. @xcite ) due to small zero - point energy differences of reactions like @xmath4 . as illustrated in fig .
[ dcop ] , the highest degree of deuterium fractionation is seen to occur in the pre - stellar cores and class 0 objects with low temperatures ( @xmath5 k ) and high densities .
interestingly , the hcn deuterium fractionation seems to be anti - correlated with that of hco@xmath0 as shown in the lower panel of fig .
[ dcop ] : for hcn deuterium fractionation through other species like @xmath6 ( i.e. forming @xmath7 ) could become increasingly important in producing dcn at temperatures @xmath8 k ( e.g. @xcite ) .
such a scenario could explain the observed anti - correlation between the deuteration of hco@xmath0 and hcn .
|
understanding chemistry protostellar environments for star formation related to processes regulating star formation ionisation serves as evolutionary clock physical models protostellar collapse @xcite evidence suggests traditional molecular tracers density temperature significant gradients examples freeze - out of molecules co onto dust grains in pre - stellar cores low - mass protostellar envelopes enhancement of molecules due to liberation ice mantles in higher temperatures shocks protostellar outflows preliminary overview of results survey chemical properties of low - mass protostars details see @xcite jrgensen et al . 2003 sample comprises 18 pre- and protostellar objects 11 class 0 5 class i 2 pre - stellar cores full sample presented in @xcite objects observed in molecular transitions using 15 m james clerk maxwell telescope 20 m telescope iram pico valeta 30 m telescope between 2000 2002 physical structure envelope derived using 1d radiative transfer calculations power - law density profiles assumed for envelope parametersdensity slope optical thickness temperature profiles calculated using radiative transfer code ( @xcite ) for central source heating model images constructed compared to scuba images ( 450 850 @xmath1 m ) seds from 60 @xmath1 m to 1.3 mm protostellar envelope be modeled under assumptions pre - stellar cores not central sources heating derived physical models used for molecular excitation radiative transfer lines using monte carlo code of @xcite fractional abundances constrained through comparisons with integrated line intensities majority of lines be accounted for with models assumptions fig . abundhist average abundances for class 0 i objects compared to molecular cloud l134n ( @xcite ) in steady state pre - collapse phase of models @xcite abundances derived from minor isotopic lines main isotopic lines cs hco@xmath0 sensitive to departures spherical symmetry molecular significant differences exist between molecules relative comparison sets abundances samples of class 0 i objects for co hco@xmath0 co frozen dust grains at low temperatures most depleted for sources with massive envelopesenvelopes region temperatures low densities high depletion effective primary formation route of hco@xmath0 connected to co through reaction @xmath3 illustrated by data in fig . [ hcop ] other molecules like cs hcn show similar trend with mass cs depletion expected at lower densities co cs stay bound to dust grains higher temperatures larger binding energy comparison to models @xcite shows cs abundances in protostellar environments lower lines probe region cs depleted detailed comparison with other sulfur - bearing species needed nitrogen - bearing species low hnc abundances for protostars interesting aspect chemistry envelopes protostars degree deuterium fractionation gas - phase deuterium fractionation hco@xmath0 efficient at low temperatures due to small zero - point energy differences reactions @xmath4 fig . [ dcop highest degree deuterium fractionation in pre - stellar cores class 0 objects with low temperatures high densities hcn deuterium fractionation anti - correlated with hco@xmath0 lower panel fig . [ dcop ] hcn deuterium fractionation through other species like @xmath6forming @xmath7 important producing dcn temperatures @xmath8 k ) anti - correlation deuteration hco@xmath0 hcn
| 0.25709
| 1,334
| 666
|
, Saving $0.0 in GPT-4.
|
18,408
|
in this paper , we propose a novel approach for texture analysis based on artificial crawler model .
our method assumes that each agent can interact with the environment and each other .
the evolution process converges to an equilibrium state according to the set of rules . for each textured image ,
the feature vector is composed by signatures of the live agents curve at each time .
experimental results revealed that combining the minimum and maximum signatures into one increase the classification rate .
in addition , we pioneer the use of autonomous agents for characterizing silk fibroin scaffolds .
the results strongly suggest that our approach can be successfully employed for texture analysis .
+ + _ keywords : agent - based model , texture analysis , silk fibroin scaffolds _
|
the silk fibroin is a protein extracted from cocoons of _ bombyx mori _ silkworm .
it has been widely used in biomedical applications due to its high capacity to suture tissues , to regenerate bones and its biocompatibility with several types of human cells used in prosthesis @xcite . in the last years
, researchers have proposed to improve the nanoscale features of silk fibroin by adding glycerol @xcite .
though the presence of glycerol can provide better material properties , it also can alter the silk fibroin molecules interactions , damaging the result in its surface .
therefore , texture analysis methods emerge as a powerful tool for determining the suitable concentration of glycerol . many methods for texture description have been proposed in the literature .
these methods are based on _ statistical analysis _ of the spatial distribution ( e.g. , co - occurrence matrices @xcite , local binary pattern @xcite and entropy @xcite ) , _ stochastic models _
( e.g. , markov random fields @xcite ) , _ spectral analysis _ ( e.g. , fourier descriptors @xcite , gabor filters @xcite and wavelets transform @xcite ) , _ complexity analysis _ ( e.g. , fractal dimension @xcite ) , _ agent - based model _ ( e.g. , deterministic tourist walk @xcite ) .
although there are effective texture methods , they do not capture the richness of patterns of the silk fibroin scaffolds . in this paper
, we present a methodology for classifying surface properties of silk fibroin by means of texture analysis .
the texture description approach proposed here is based on the artificial crawler model @xcite .
we propose a new rule of movement that not only moves artificial crawler agents toward higher intensity , as well as to lower ones .
we confirm that this strategy increases the discriminatory power and outperforms the state - of - the - art method .
this paper is organized as follows .
section [ sec : acrawler ] details the original artificial crawler model .
section [ sec : approach ] presents our approach to characterize textured images .
section [ sec : exps ] discusses the results of the experiments .
finally , conclusions are given in section [ sec : conclusions ] .
the first artificial crawler ( acrawler ) model was developed in @xcite .
let us consider that an image is a pair @xmath0 , consisting of a finite set @xmath1 of pixels , and a mapping @xmath2 that assigns to each pixel @xmath3 an intensity @xmath4 ranging from @xmath5 to @xmath6 .
a pixel of the intensity map @xmath2 holds a neighborhood set @xmath7 of pixels @xmath8 , which @xmath9 is the euclidean distance between pixels @xmath10 and @xmath8 .
thereby , we assume the eight - connected neighbors .
the original artificial crawler model assumes that each agent lives on one pixel of the image . at each time @xmath11 ,
an agent @xmath12 is characterized by two attributes : ( 1 ) @xmath13 holds a level of energy and ( 2 ) @xmath14 occupies a spatial position in the image .
first , @xmath15 agents are born with identical energy @xmath16 .
such energy can either wax or wane their lifespan according to energy consumption and influence of the environment . on images ,
the environment is treated as a 3d surface with different altitudes that correspond to grey values in z - axis of the images .
higher intensities supply nutrients to the agents , while lower altitudes correspond to the land .
figure [ pic : environment ] shows a textured image and the peaks and valleys where the agents can live .
the algorithm consists of a set of rules that comprises the evolution process : 1 . *
born * : each agent @xmath12 is born with the same energy @xmath16 .
@xmath17 2 . * survival threshold * : an agent @xmath12 dies if its energy is below the threshold .
@xmath18 3 .
* movement * : @xmath19 + @xmath20 + @xmath21 agents settle down if the grey level of its 8-neighbors are lower than itself .
+ @xmath22 agents move to a specific pixel if there exist one of its 8-neighbors ( @xmath23 ) with higher intensity + @xmath24 if there exist more than one neighbor with higher intensity , an agent moves to the pixel that already was occupied ( @xmath25 ) .
* energy consumption * : each time @xmath11 consumes one unity of energy .
@xmath26 5 .
* law of the jungle * : an agent with higher energy eats up another with lower one .
@xmath27 6 .
* gain of energy * : it up to dates the energy absorption from the environment , where @xmath28 is a rate of absorption over the pixel @xmath29 .
@xmath30 7 .
* limit of energy * : it bounds the maximum energy @xmath31 .
@xmath32 agents that were born in lower altitudes areas can die in the evolution process , while individuals that reached to settle down in areas of higher altitudes have higher likelihood to remain alive . to quantify the multi - agent system ,
a curve of live agents at each time is obtained : @xmath33\ ] ] where @xmath34 is the number of live agents at time @xmath11 and @xmath35 is maximum iteration .
the artificial crawler model described above consists of moving agents to a neighbor pixel with the highest intensity . despite the promising results , this idea does not extract all the richness of textural pattern .
our approach differs from the original acrawler model in terms of movement : each agent is not only able to move to the higher altitudes as well as to lower ones .
it allows the model to extract the details present in peaks and valleys of the images .
first , the agents move to higher intensities as the original artificial crawler method .
thus , the artificial crawlers are performed using this rule and the curve @xmath36 is obtained . throughout the paper ,
this rule of movement will be referred as @xmath37 .
we can observe that the original artificial crawler method only models the peaks of a textured image . to obtain a robust and effective texture representation ,
we propose to move artificial crawlers toward lower intensities @xmath38 this rule of movement will be referred throughout the paper as to @xmath39 . in our approach , artificial crawlers
are randomly placed in the image with initial energy @xmath16 .
then , the movement step is modified as follows : @xmath19 @xmath40 + @xmath21 agents settle down if the grey level of its 8-neighbors are higher than itself .
+ @xmath22 agents move to a specific pixel if there exist one of its 8-neighbors ( @xmath41 ) with lower intensity + @xmath24 if there exist more than one neighbor with lower intensity , an agent moves to the pixel that already was occupied ( @xmath25 ) .
the multi - agent systems using the rule of movement @xmath39 is characterized as the original method by using the number of live agents at each time .
considering that now we have two rules of movement , the final feature vector of our approach is composed by the concatenation of @xmath36 and @xmath42 according to : @xmath43 \label{eq : finalvector}\ ] ] figure [ pic : curve1 ] shows the curves of the evolution process .
we took two classes of textures ( on the top right - hand corner in figure [ pic : curve1 ] ) from the album the brodatz @xcite to illustrate the separability . on the left , figure [ pic : curve1 ]
shows the number of live agents using the rule of movement @xmath39 , while the curve for the rule of movement @xmath37 is shown on the right of figure [ pic : curve1 ] .
the experimental results below corroborate the importance of both rules of movement in the texture modeling .
in this section , we demonstrate the effectiveness of our approach .
we first outline details of the experimental setup , and then , experiments carried out on two datasets are discussed : brodatz and silk fibroin . here
is described the whole process for image acquisition of silk fibroin scaffolds .
besides , we show comparative results with different texture methods .
the proposed method was first evaluated over texture classification experiments by using images extracted from brodatz album @xcite .
this album is considered a well - known benchmark for evaluating texture recognition methods . each class
is composed by one image divided into nine sub - images non - overlapped .
a total of 440 images grouped into 40 classes was considered .
each image has @xmath44 of size and 256 grey levels .
one example of each class is shown in figure [ pic : brodatz ] .
example of 40 brodatz texture classes used in the experiment .
each image has @xmath44 pixels and 256 gray levels.,scaledwidth=90.0% ] the texture classification was carried out for ten - fold cross validation to avoid bias . at each round
, we randomly divide the samples of each class into ten subsets of the same size , i.e. , nine for training and the remaining for testing .
the results are reported as the average value over the ten runs . for classification
, we adopted the model linear discriminant analysis ( lda ) .
the underlying idea is to maximize the euclidian distance between the means of the classes , while minimizing the within - class variance . for further information
we refer to @xcite .
linear discriminant analysis ( lda ) @xcite was selected since it is well founded in statistical learning theory and has been successfully applied to various object detection tasks in computer vision .
lda , originally proposed by fisher , computes a linear transformation @xmath45 of @xmath46 , which @xmath47 is a matrix and @xmath48 denotes the number of features and @xmath15 number of samples .
we optimized two parameters of the artificial crawler model : the number of agents and the way that agents move in the evolution process .
the number of agents placed on the pixels of the image was inital set to @xmath49 with a coverage rate of @xmath50 , varying from @xmath49 to @xmath51 . in our experiments ,
all agent was born with an initial energy @xmath16 of 10 units and the loss for each iteration consumes 1 unit of energy . the absorption rate was set to @xmath52 in terms of the current pixel . for the survival threshold and the upper bound of energy
were set to @xmath53 and @xmath54 units , respectively .
* experiment 1 : * first , we perform an analysis of our method on the brodatz dataset .
figure [ pic : ccr - vc - numberagents](a ) presents the correct classification rate versus the number of iterations .
the results for the original artificial crawler is shown as curve @xmath37 while the results for our method is shown as curve @xmath55 . for a complete comparison
, we also provide the results for an method which agents move to pixels with lower intensity @xmath38 curve @xmath39 . as can be seen , the proposed method provided the highest correct classification rates for all values of iterations .
these experimental results indicate that the proposed method significantly improves performance over the traditional methods .
we can also observe that the rule @xmath39 provided higher rates than the rule @xmath37 , given the idea that valleys are more discriminative than peaks in the brodatz dataset .
another important parameter of the artificial crawler methods is the number of agents .
figure [ pic : ccr - vc - numberagents](b ) shows the correct classification rates versus the number of agents . as in the previous experiment ,
our method achieved the highest rates compared to the other two strategies .
again , the rule @xmath39 provided higher rates than the rule @xmath37 .
another important observation from figure [ pic : ccr - vc - numberagents](b ) is that using a few agents , the methods achieved good classification results , which makes the artificial crawler methods suitable for real time applications . using these two plots
, we can determine the best parameters of our method to @xmath56 and @xmath57 .
the results of the proposed method are compared with existing texture analysis methods in table [ tab : comparisonbrodatz ] .
it is observed that the our method outperforms the state - of - the - art .
the highest classification rate of @xmath58 was obtained by our method , which is followed by a classification rate of @xmath59 obtained by the gabor filter , one of the most traditional texture analysis method .
.experimental results for texture methods in the brodatz dataset . [ cols="^,^,^",options="header " , ]
in this paper we presented a novel approach based on artificial crawler for texture classification .
we have demonstrated how the feature vector can be improved by combining _ min _ and _ max _ curves , instead of using only the strategy for the maximum of intensity of the pixels .
although traditional methods of texture analysis have provided satisfactory results , the approach proposed here has proved to be superior for characterizing textures .
we have tested our proposal on the most popular benchmark for texture analysis and find that it produces good classification results . furthermore , we tested our approach on the silk fibroin scaffolds analysis and results indicate that our method is consistent and can be applied in real - world applications .
the results support the idea that our approach can be used as a feasible step for many analysis not only applications on tissue engineering .
in addition , our results can be improved by studying the setting of our method .
we have already implemented other variation . as part of the future work , instead using random sampling of agents we plan focus on evaluating the deterministic sampling , i.e , each pixel of the image is initialized with on agent .
gonalves , w.n . , backes , a.r . ,
martinez , a.s .
, bruno , o.m . : texture descriptor based on partially self - avoiding deterministic walker on networks .
expert systems with applications * 39*(15 ) ( 2012 ) 1181811829 zhang , d. , chen , y.q . : classifying image texture with artificial crawlers . in : international conference on intelligent agent technology .
iat 04 , los alamitos , ca , usa , ieee computer society ( 2004 ) 446449 fidler , s. , skocaj , d. , leonardis , a. : combining reconstructive and discriminative subspace methods for robust classification and regression by subsampling .
ieee trans .
pattern anal .
* 28 * ( 2006 ) 337350
|
silk fibroin is protein extracted from cocoons of bombyx mori _ silkworm used in biomedical applications due to high capacity to suture tissues regenerate bones biocompatibility with human cells in prosthesis researchers proposed to improve nanoscale features of silk fibroin by adding glycerol presence glycerol can better material properties can alter silk fibroin molecules interactions damaging result surface texture analysis methods powerful tool for determining suitable concentration of glycerol methods for texture description proposed methods based on statistical analysis distribution stochastic models spectral analysis complexity analysis dimension agent - based model _ effective texture methods not capture richness of patterns of silk fibroin scaffolds this paper present methodology for classifying surface properties of silk fibroin by texture analysis texture description approach based on artificial crawler model propose new rule of movement moves artificial crawler agents toward higher intensity lower ones strategy increases discriminatory power outperforms state - of - the - art method paper organized section acrawler ] details original artificial crawler modelsection approach ] presents approach textured images discusses results experiments conclusions in first artificial crawler model developed in @xcite image is pair @xmath0 finite set @xmath1 pixels mapping @xmath2 each pixel intensity @xmath4 from to pixel intensity @xmath2 holds neighborhood set @xmath7 pixels @xmath8 euclidean distance between pixels @xmath10 and @xmath8 assume eight - connected neighbors original crawler model assumes each agent lives on one pixel agent @xmath12 characterized by two attributes @xmath13 holds level energy @xmath14 occupies spatial position @xmath15 agents born with identical energy @xmath16 energy can wax or wane lifespan according to energy consumption influence environment environment treated as 3d surface different altitudes to grey values in z - axis higher intensities supply nutrients lower altitudes correspond land figure environment shows textured image peaks valleys where agents live algorithm consists rules evolution process born each agent born with same energy survival threshold agent @xmath12 dies if energy below thresholdmovement @xmath19 agents settle if grey level 8-neighbors lower @xmath22 agents move to pixel if one @xmath23 ) with higher intensity @xmath24 if more than one neighbor higher intensity agent moves to pixel occupied ( @xmath25 ) energy consumption @xmath11 consumes one unity energy @xmath26 law of jungle agent higher energy eats lower @xmath27 gain of energy energy absorption environment @xmath28 rate absorption over pixel @xmath29 @xmath30 limit of energy bounds maximum energy @xmath31 @xmath32 agents born in lower altitudes can die in higher altitudes remain alive multi - agent system curve of live agents each time obtained @xmath33 @xmath34 is number of live agents at time @xmath11 @xmath35 is maximum iteration artificial crawler model moving agents to pixel with highest intensity extract richness of textural pattern approach differs from original movement agent move to higher altitudes lower allows to extract details in peaks valleys images agents move to higher intensities artificial crawlers performed using rule curve @xmath36 obtainedpaper rule of movement referred as @xmath37 original artificial crawler method models peaks textured image texture representation propose to move crawlers toward lower intensities @xmath38 rule movement referred @xmath39 crawlers randomly placed in image with initial energy @xmath16 movement step modified @xmath19 @xmath40 + @xmath21 agents settle if grey level 8-neighbors higher @xmath22 agents move to specific pixel if @xmath41 with lower intensity @xmath24 if more than one neighbor with lower intensity agent moves to pixel occupied ( @xmath25 ) multi - agent systems using rule movement @xmath39 original method number of live agents each time two rules of movement final feature vector by concatenation of @xmath36 and @xmath42 @xmath43 figure shows curves evolution process took two classes of textures from album brodatz @xcite illustrate separability figure shows number of live agents using rule movement @xmath39 curve for rule @xmath37 right experimental results corroborate importance of both rules movement in texture modeling demonstrate effectiveness of approachoutline experimental setup experiments on two datasets brodatz silk fibroin described process image acquisition silk fibroin scaffolds show comparative results texture methods proposed method evaluated texture classification experiments images from brodatz album @xcite album benchmark for texture recognition methods each class one image nine sub - images non - overlapped 440 images into 40 classes considered each image has @xmath44 size 256 grey levels example class shown in figure pic brodatz 40 brodatz texture classes image @xmath44 pixels 256 gray levels texture classification ten - fold cross validation avoid bias round randomly divide samples class into ten subsets same size nine for training testing results reported as average value over ten runs classification adopted model linear discriminant analysis ( lda ) maximize euclidian distance between classes within - class variance refer to @xcite selected founded statistical learning theory applied to object detection tasks computer vision proposed computes linear transformation @xmath45 of @xmath46 matrix @xmath48 number features number samples optimized two parameters artificial crawler model number of agents evolution processnumber of agents on pixels image set to @xmath49 coverage rate @xmath50 varying to @xmath51 all agent born with initial energy @xmath16 of 10 units loss for each iteration consumes 1 unit energy absorption rate set to @xmath52 survival threshold upper bound of energy set to @xmath53 and @xmath54 units experiment 1 analysis of method on brodatz dataset figure presents correct classification rate versus number of iterations results for original artificial crawler shown as curve @xmath37 our method curve @xmath55 results for method agents move to pixels lower intensity @xmath38 curve @xmath39 proposed method provided highest correct classification rates for all iterations results proposed method improves performance over traditional methods rule @xmath39 provided higher rates than rule @xmath37 valleys more discriminative than peaks important parameter number of agents figure(b shows correct classification rates versus number of agents our method achieved highest rates compared strategies rule @xmath39 provided higher rates than @xmath37 using few agents methods achieved good classification results methods suitable for real time applicationsusing two plots determine best parameters our method to @xmath56 and @xmath57 results proposed method compared with existing texture analysis methods table our method outperforms state - of - the - art highest classification rate @xmath58 by our method followed by @xmath59 by gabor filter traditional texture analysis method.experimental results for texture methods in brodatz dataset presented novel approach artificial crawler for texture classification demonstrated feature vector improved combining _ min _ _ max _ curves instead strategy maximum intensity pixels traditional methods texture analysis results approach proposed superior for characterizing textures tested proposal on popular benchmark texture analysis produces good classification results tested approach on silk fibroin scaffolds analysis results method consistent can applied in real - world applications results support approach feasible step for many analysis applications tissue engineering results improved by studying setting method implemented other variation future work random sampling focus evaluating deterministic sampling each pixel image initialized with agent texture descriptor based on partially self - avoiding deterministic walker on networkssystems applications 39(15 2012 ) 1181811829 zhang chen classifying image texture artificial crawlers international conference intelligent agent technology los alamitos ca usa computer society 2004 ) 446449 fidler skocaj leonardis combining reconstructive discriminative subspace methods classification regression 28 2006 ) 337350
| 0.499791
| 3,187
| 1,540
|
, Saving $0.1 in GPT-4.
|
18,409
|
we present direct numerical simulations of mixing at rayleigh - taylor unstable interfaces performed with the flash code , developed at the asci / alliances center for astrophysical thermonuclear flashes at the university of chicago .
we present initial results of single - mode studies in two and three dimensions .
our results indicate that three - dimensional instabilities grow significantly faster than two - dimensional instabilities and that grid resolution can have a significant effect on instability growth rates .
we also find that unphysical diffusive mixing occurs at the fluid interface , particularly in poorly resolved simulations .
( this manuscript will appear in the proceedings of the 20th texas symposium on relativistic astrophysics . )
|
many of the problems of interest in relativistic astrophysics involve fluid instabilities .
the shock of a core - collapse supernova propagating through the outer layers of the collapsing star , for example , is subject to rayleigh - taylor instabilities occurring at the boundaries of the layers .
a fluid interface is said to be rayleigh - taylor unstable if either the system is accelerated in a direction perpendicular to the interface such that the acceleration opposes the density gradient or if the pressure gradient opposes the density gradient @xcite .
growth of these instabilities can lead to mixing of the layers .
the early observation of @xmath0co , an element formed in the core , in sn 1987a strongly suggested that mixing did indeed play a fundamental role in the dynamics . following this observation , supernova modelers embraced multi - dimensional models with the goal of understanding the role of fluid instabilities in the core collapse supernova process @xcite . despite years of modeling these events ,
many fundamental questions remain concerning fluid instabilities and mixing . in this manuscript
, we present early results of our research into resolving fluid instabilities with flash , our simulation code for astrophysical reactive flows .
the flash code @xcite is an adaptive mesh , parallel simulation code for studying multi - dimensional compressible reactive flows in astrophysical environments .
it uses a customized version of the paramesh library @xcite to manage a block - structured adaptive grid , placing resolution elements only where needed in order to track flow features .
flash solves the compressible euler equations by an explicit , directionally split version of the piecewise - parabolic method @xcite and allows for general equations of state using the method of colella & glaz @xcite .
flash solves a separate advection equation for the partial density of each chemical or nuclear species as required for reactive flows .
the code does not explicitly track interfaces between fluids , so a small amount of numerical mixing can be expected during the course of a calculation .
flash is implemented in fortran 90 and uses the message - passing interface library to achieve portability .
further details concerning the algorithms used in the code , the structure of the code , verification tests , and performance may be found in fryxell _
et al._@xcite and calder _ et al._@xcite .
from our single - mode rayleigh - taylor studies , we find significantly faster instability growth rates in three - dimensional simulations than in two - dimensional simulations .
in addition , we find that obtaining a converged growth rate requires at least 25 grid points per wavelength of the perturbation , that grid noise seeds small scale structure , and that the amount of small scale structure increases with resolution due to the lack of a physical dissipation mechanism ( such as a viscosity ) .
another result is that poorly - resolved simulations exhibit a significant unphysical diffusive mixing .
figure 1 shows the growth of bubble and spike amplitudes for two well - resolved simulations beginning from equivalent initial conditions .
the three - dimensional result ( left panel ) shows faster growth than the two - dimensional result ( right panel ) .
results of our single - mode studies will appear in calder _
et al._@xcite .
our single - mode studies serve as a prelude to multi - mode studies , which are works in progress ; our single - mode results strongly suggest that using sufficient resolution is essential in order to obtain physically - sensible results for these calculations . in the multi - mode case ,
bubble and spike mergers are thought to lead to an instability growth according to a @xmath1 scaling law , which for the case of a dense fluid over a lighter fluid in a gravitational field may be written as @xcite @xmath2 where @xmath3 is the height of a bubble or spike , @xmath4 is the acceleration due to gravity , @xmath5 is the atwood number where @xmath6 is the density of the lighter ( heavier ) fluid , and @xmath7 is the time .
@xmath8 is a proportionality ` constant ' that may be thought of as a measure of the efficiency of potential energy release .
experiments and simulations indicate that @xmath8 lies in the range of 0.03 to 0.06 , and it is thought to depend on atwood number , evolution time , initial conditions , and dimensionality .
see young _ et al .
_ @xcite and references therein for a discussion of experimental results .
results of our multi - mode studies will appear in publications of the alpha group , a consortium formed by guy dimonte in 1998 to determine if the @xmath1 scaling law holds for the growth of the rayleigh - taylor instability mixing layer , and if so , to determine the value of @xmath8 @xcite .
|
problems in relativistic astrophysics involve fluid instabilities shock of core - collapse supernova through outer layers subject to rayleigh - taylor instabilities at boundaries layers fluid interface - taylor unstable if accelerated perpendicular to density or density growth instabilities lead to mixing layers early observation of @xmath0co element in core in sn 1987a suggested mixing in dynamics supernova modelers embraced multi - dimensional models understanding role fluid instabilities in core collapse supernova process questions remain concerning fluid instabilities and mixing manuscript present early results research resolving fluid instabilities with flash simulation code for astrophysical reactive flows flash code simulation for multi - dimensional compressible reactive flows uses customized paramesh library @xcite block - structured adaptive grid resolution elements flow features flash solves compressible euler equations parabolic allows general equations of state using colella & glaz solves separate advection equation for partial density of each chemical or nuclear species forcode track interfaces between fluids small numerical mixing expected during calculation flash implemented in fortran 90 uses message - passing interface library portability details algorithms structure verification tests performance in fryxell _ al. calder _ et al._@xcite taylor studies faster instability growth rates in three - dimensional simulations two - converged growth rate requires 25 grid points per wavelength grid noise seeds small scale structure scale structure increases with resolution due to lack physical dissipation mechanism poorly - resolved simulations exhibit significant unphysical diffusive mixing figure 1 shows growth of bubble spike amplitudes for two well - resolved simulations three - dimensional result shows faster growth than two - results single - mode studies appear in calder _ et al._@xcite prelude to multi - mode studies suggest sufficient resolution essential physically - sensible resultsmulti - mode case bubble spike mergers lead instability growth @xmath1 scaling law dense fluid lighter fluid gravitational field written @xcite @xmath2 @xmath3 height bubble spike acceleration gravity @xmath5 atwood number @xmath6 density lighter fluid time @xmath8 proportionality constant measure efficiency potential energy release experiments simulations indicate @xmath8 0.03 to 0.06 on atwood number evolution time initial conditions dimensionality young _ et al . @xcite references discussion experimental results results multi - mode studies appear publications alpha group consortium formed guy dimonte 1998 determine @xmath1 scaling law growth rayleigh - taylor instability mixing layer determine value @xmath8 @xcite
| 0.182125
| 993
| 491
|
, Saving $0.0 in GPT-4.
|
18,420
|
magic , as well as hess and veritas , is a erenkov telescope unveiling @xmath0-ray sources above 60 gev at vertical within noisy ( hadronic ) airshowering sky .
these telescopes while facing the horizons may reveal rarest blazing uhecr as well as far fluorescence tails of downward pev - eev hadronic airshowers .
few of these inclined airshowers blazing on axis are spread by the geomagnetic field into twin spots . these twin flashes and
their morphology may tag the uhecr origination site .
there is a rich window of such reflecting erenkov lights visible by telescopes on top of mountains as magic ( and partially veritas ) : the reflections from the nearby ground ( possibly enhanced by rain or snow , ice white cover ) , from the sea and from the cloudy sky ; in particular , these cloudy sheets may lay above or below the observer .
magic looking downward to the clouds or the snow , may well reveal blazing moliere disks diffusing erenkov spots ( few events per night ) . because of geomagnetic forces and splitting of the inclined air - shower , one should reveal for the first time ( at tens pev or above ) erenkov airshowers whose flashes are skimming the magic nearby sea and opened into twin spots .
their morphology may tag the uhecr origination , its consequent cross - section and composition .
magic telescopes looking upward into cloudy sky may observe very rare up - going uhe tau , originated by uhe pevs neutrinos skimming earth , air - showering into sky , reflecting into clouds .
in particular glashow resonant antineutrinos electron hitting into earth electrons may lead to gauged boson @xmath1 , whose decay ( inside the earth ) may produce a @xmath2 @xcite , which later escape and decay in air is producing erenkov lights ; these flashes may blaze into the clouds above magic as upward dot spots .
the magic energy threshold for such uhe neutrinos showers rises to pev values .
eev uhe tau neutrinos by guaranteed gzk uhecr secondaries @xcite , via the muon - tau flavor mixing , may skim the earth , produce uhe tau particles whose escape in air and decay in flight may blaze magic or reflect erenkov light at opposite far cloudy sky edges .
any collaboration ( magic , hess , veritas ) will be willing to dedicate cloudy time to uhecr physics since nothing else can be done in that time .
these reflections may open a totally new uhecr spectroscopy while unveiling a rare , but loud tau neutrino astronomy@xcite .
|
the common downward vertical airshowers , mostly of hadronic nature , are growing as a tree whose wide roots are spread in a conical shape , because at low altitudes vertical shower are randomized into a disk .
the resultant secondaries shine erenkov light on a disk s size which is about twice a moliere radius ( a hundred meter size ) . at high altitudes , inclined shower ( zenith angle @xmath3 ) at lowest air density
are split by geomagnetic lorentz force into two twin charged beams . at their center , energetic muon pair bundles define the shower axis .
these fan - like shape are made by twin pair lobes .
these lobes are shining erenkov lights in different beams and regions ; such an exemplar uhecr inclined event has been foreseen in last years,@xcite , recorded by the auger detector @xcite and discussed recently @xcite : both a erenkov flash ( seen at coihueco ) and a fluorescence flare ( spot by los leones ) were detected while a muon pair bundle hit a dozen of tanks in the heart of the auger array ( see fig.[fig2 ] and fig.[fig3 ] @xcite ) .
let us remark that only one side ( of the two ) of an off - axis blazing erenkov flash ( the beam made by bent negative electrons ) have been revealed by coihueco : because of the wide fan - like shower size , erenkov lights are mostly seen in one main lobe .
only rarely erenkov jets are observed in axis being split far away into their twin lobes ; the higher energy muon bundles survive , being harder than electron ones , reaching the ground almost undeflected along the main shower axis .
such a downward twin spot discover would offer a new uhecr spectroscopy at the horizon ( inclined showers ) @xcite .
erenkov earliest twin lights define , indeed , the uhecr original direction , its most probable cross - section and its consequent primary composition .
erenkov light s intensity and color ( spectra ) , zenith angle , traversed column depth , angular separation , time structure and muons component delay and multiplicity , defines primary energy and composition .
moreover , such a _ pedagogical _ in - axis event , where the lobes split , even if rare could be enhanced by time correlated muon light rings ( by secondary muon erenkov imprint @xcite ) .
the magic - ii telescope array @xcite , as well as veritas and hess , should discover such inclined events if looking horizontally @xcite .
the hope is to prepare at the same time the calibration for rarest but exciting upgoing pev - eev neutrino induced airshowers @xcite . in the present article
we reflect on their cherenkov reflections summarized by the last four figures .
let us remind that at highest energies ( eev ) , fluorescence and erenkov hybrid events at auger ( estimated about a dozen per year @xcite ) may offer an empirical calibration ( see fig.[fig2 ] and fig.[fig3 ] , @xcite ) .
hybrid events by only erenkov twin spots may be extended to lower energies , as tens pev , at more frequent rate . in analogy
, magic may study twin split events : their double spot signature is larger at larger zenith angles though this separation is observed at more and more far edges .
therefore , the angular size between the two lobes first vanishes at vertical than increases at larger zenith angle to a maximum angle .
the erenkov lobes angular size appears to shrink to smaller aperture at higher and higher zenith angles , because of their larger distances at the horizons .
the twin signature should be resolved better by magic telescope than by auger because better resolution .
auger , on the contrary , may enhance and tag the twin lobes by adding tanks around the four fluorescence - erenkov telescopes at coihueco , los leones , los morados and norte : their trigger correlated muon signal may , in fact , trigger the reading of erenkov flashes at the edges , revealing their hidden twin split signature .
while magic observes the far sea , it may reveal reflections of inclined airshowers on the water : in an ideal flat sea , just a twin airshower image would appear , see fig.[fig1 ] , while in a more realistic scrambled water , any ellipse reflected event would be fragmented and diffused at horizon .
the sea water reflectivity increases with zenith angle , but column depth opacity may suppress most of the horizontal showers intensity .
therefore , uhecrs could be indirectly detected by such sea - skimming mostly at bounded inclined zenith angles @xmath4 .
stereoscopic detection would better calibrate the distance , the origin and the primary composition .
polarization of these mirror images may also test the skimming angle .
a complementary reflecting mode takes place on snow , rainy or bright areas nearby the telescope .
magic leaping the earth surface could reveal pevs reflected events , in particular if they are beamed and skimming the ground toward the telescope s direction , see fig.[fig2 ] . moreover , it s possible to observe at once both the deep downward airshower erenkov reflections and part of the airshower lateral fluorescence tail ( see fig.[fig1 ] @xcite ) .
the possibility to use a erenkov telescope in _ reflection mode _ may verify known uhecr rates and morphology .
one can image to use the near ground reflections to enhance the brightness because of the near diffusor distance . in the skimming case ,
the spot seen in perspective will appear as an ellipse the more eccentric the more inclined the shower is , but once re - diffused from ground can reappear on the telescope as a big disk thanks to the in - axis geometry .
clouds are seldom into sky .
high altitude detectors ( magic , veritas ) are often above these clouds : they can work as a blank white screen which could better reveal downward uhecr events , see fig.[fig3 ] . their splitting may be also revealed . the same clouds blanket above the telescope , when sky is overcast , can be used to diffuse the erenkov lights from rare tau upgoing airshower , whose blazing signal may lead to short light spots on such natural huge screens , see fig.[fig4 ] @xcite .
the areas observed by magic are smaller than the ones of auger because of magic smaller solid angle , though longer distances available . however , because of the larger area and smaller energy threshold , magic may reveal pevs neutrino induced signals on nearby clouds .
one should note that the twin magic view toward ( @xcite ) _ and opposite _ grbs - sgrs - bl lac active @xmath0 sources direction , while at horizon , can be performed : while one telescope can follow the source beyond the edge , the second telescope could point , in presence of a cloudy sky , the same direction but _ opposite to _ the source position .
this location is not just a point region but a flat arc , projected by the horizon edges into cloudy sky , where any uhe skimming @xmath5 may rise and flash on such a screen . in this working configuration ,
blazing erenkov flashes ( by @xmath6 , by @xmath7 or by @xmath8 airshowers ) , or eev @xmath5 air - showering may hit one telescope directly while a reflected erenkov spots by upgoing @xmath5 showers would be diffused onto the cloud - screen .
this can better occur after glast era , when daily grb events may trigger magic eyes .
nearly one grb a month may rise at horizons .
airshowers erenkov lights may be reflected while skimming the earth , the sea , the icy or rainy grounds.the magic telescopes ( as well as the veritas ones ) being on top of a mountain , may soon reveal these reflections whose role is also to calibrate the downward uhecr rate . in principle , magic telescope observing large zenith angles , may also search for upgoing tau airshower probably related to grb - sgrs or bl lac brightening . also glashow resonant neutrinos may rise upgoing and blazing airshowers at horizons . because of the atmosphere dimming of far hadronic airshowers at earth atmosphere edges , the nearer @xcite , younger @xciteneutrino induced ones are emerging better , over the far hadronic noise .
in particular the earth skimming hortaus ( horizontal @xmath5s ) @xcite while decaying and showering may , at the same time , blaze at the front and - or flash on the opposite side to the ( eventual ) clouds or by fluorescence in air . the location where these reflection might hit is not a point anti - correlated to the source but a wide arc parallel to the horizon line . all the hadronic inclined air - showers may and must show the geomagnetic splitting whose signature can be a test of uhecr rate and composition from the knee up to gzk energy edges .
just where auger most recent and surprising results on uhecr call for a confirmation @xcite . in larger auger sky ,
similar higher energy uhe tau events ( possibly originated by eev gzk @xcite tau neutrinos ) , events whose spectra and local anisotropy has been recently revealed , must shine in next few years@xcite .
99 conference , santa fe , usa
|
common downward vertical airshowers hadronic growing as tree roots spread in conical shape low altitudes randomized into disk secondaries shine erenkov light on disk s size twice moliere radius high altitudes inclined shower zenith angle split by geomagnetic force into two twin charged beams center energetic muon pair bundles define shower axis fan - like shape by twin pair lobes lobes shining erenkov lights in different beams regions exemplar uhecr inclined event foreseen last years recorded by auger detector erenkov flash fluorescence flare detected while muon pair bundle hit tanks auger array fig.[fig3 one side of off - axis blazing erenkov flash revealed by coihueco wide fan - like shower size erenkov lights seen in one main lobe rarely jets observed split into twin lobes higher energy muon bundles survive reaching ground undeflected along main shower axis downward twin spot discover new uhecr spectroscopy at horizon erenkov earliest twin lights define uhecr original direction probable cross - section primary compositionerenkov light s intensity color zenith angle traversed column depth angular separation time structure muons component delay multiplicity defines primary energy composition in - axis event lobes split enhanced by time correlated muon light rings muon erenkov imprint magic - ii telescope array @xcite veritas hess discover events horizontally prepare calibration for rarest pev - eev neutrino induced airshowers @xcite on cherenkov reflections last four figures highest energies fluorescence erenkov hybrid events at auger dozen per year @xcite offer empirical calibration fig. hybrid events by erenkov twin spots extended to lower energies magic twin split events double spot signature larger at zenith angles separation observed at far edges angular size between lobes vanishes at vertical increases at zenith angle erenkov lobes angular size shrink smaller aperture at higher zenith angles larger distances at horizons twin signature resolved better by magic telescope augerauger enhance twin lobes adding tanks around fluorescence - erenkov telescopes at coihueco los leones los morados norte trigger muon signal trigger reading erenkov flashes revealing twin split signature magic observes far sea reveal reflections inclined airshowers on water ideal flat sea twin airshower image scrambled water ellipse reflected event fragmented diffused at horizon sea water reflectivity increases with zenith angle column depth opacity horizontal showers intensity uhecrs indirectly detected by sea - skimming at inclined zenith angles stereoscopic detection distance origin primary composition polarization mirror images test skimming angle complementary reflecting mode on snow rainy bright areas nearby telescope magic leaping earth surface reveal reflected events beamed skimming ground toward telescope s direction possible observe deep downward airshower erenkov reflections airshower lateral fluorescence tail erenkov telescope in reflection mode verify uhecr rates morphology near ground reflections enhance brightness distanceskimming case spot as ellipse eccentric inclined shower re - diffused from reappear telescope as big disk in - axis geometry clouds seldom into sky high altitude detectors magic veritas above clouds work as blank white screen reveal downward uhecr events fig.[fig3 splitting revealed clouds above telescope sky overcast diffuse erenkov lights from rare tau upgoing airshower blazing signal short light spots on screens fig.[fig4 areas observed by magic smaller than auger smaller solid angle longer distances larger area energy threshold magic reveal pevs neutrino signals on nearby clouds twin magic view toward opposite grbs - sgrs - bl lac active @xmath0 sources direction one telescope source second point direction opposite source location not flat arc projected by edges into cloudy sky uhe skimming @xmath5 may rise flash on screen blazing erenkov flashes by @xmath6 @xmath7 @xmath8 airshowers @xmath5 air - showering hit one telescope directly reflected erenkov spots by @xmath5 showers diffused onto cloud - screenafter glast era daily grb events trigger magic eyes one grb a month rise at horizons airshowers lights reflected skimming earth sea icy rainy grounds magic telescopes veritas on mountain reveal reflections calibrate downward uhecr rate magic telescope observing zenith angles search for upgoing tau airshower related to grb - sgrs bl lac brightening glashow resonant neutrinos rise airshowers at atmosphere dimming far hadronic airshowers nearer @xcite younger @xciteneutrino induced ones noise earth skimming hortaus horizontal @xcite decaying showering blaze front flash opposite side to clouds fluorescence air location reflection not - source arc parallel to horizon line hadronic inclined air - showers show geomagnetic splitting test uhecr rate composition gzk energy edges auger results on uhecr confirmation @xcite larger auger sky higher energy uhe tau events originated by eev gzk @xcite tau neutrinos anisotropy revealed shine next years@xcite . 99 conference santa fe usa
| 0.313568
| 1,985
| 990
|
, Saving $0.1 in GPT-4.
|
18,425
|
using the nonrelativistic qcd(nrqcd ) factorization formalism , we calculate the color - singlet cross sections for exclusive production processes @xmath0 and @xmath1 @xmath2 at the center - of - mass energy @xmath3=10.6 gev .
the cross sections are estimated to be @xmath4fb , @xmath5fb , @xmath6fb , and @xmath7fb for @xmath8 and @xmath9 , respectively . the calculated @xmath10 production rate is smaller than the recent belle data by about an order of magnitude , which might indicate the failure of perturbative qcd calculation to explain the double - charmonium production data . the complete @xmath11@xmath12 color - singlet cross section for @xmath13 is calculated .
in addition , we also evaluate the ratio of exclusive to inclusive production cross sections .
the ratio of @xmath14 production to @xmath15 production could be consistent with the experimental data .
pacs number(s ) : 12.40.nn , 13.85.ni , 14.40.gx problems of double - charm production in @xmath16 annihilation at @xmath17 gev + kui - yong liu@xmath18 zhi - guo he@xmath18 and kuang - ta chao@xmath19 + ( a ) department of physics , peking university , beijing 100871 , people s republic of china ( b ) china center of advanced science and technology ( world laboratory ) , beijing 100080 , people s republic of china heavy quarkonium production is interesting in understanding both perturbative and nonperturbative quantum chromodynamics ( qcd ) .
in recent years the charmonium production has been studied in various processes , such as in hadron - hadron collision , electron - proton collision , fixed target experiments , @xmath20 meson decays , as well as @xmath21 decays . among them , the study of charmonium production in @xmath16 annihilation is particularly interesting in testing the quarkonium production mechanisms , the color - singlet model and the color - octet model in the nonrelativistic qcd ( nrqcd)@xcite approach .
this is not only because of the simpler parton structure involved in this process , which may be helpful in reducing the theoretical uncertainty , but also because of the spectacular experimental prospect opened up by the two @xmath20 factories with babar and belle , which will allow a fine data analysis for charmonium production with more than @xmath22 @xmath16 annihilation events in the continuum at @xmath3=10.6 gev .
recently the belle collaboration has reported the observation of prompt @xmath23 via double @xmath24 production from the @xmath25 continuum@xcite .
for these results , not only the large cross section ( @xmath260.9 pb ) of the inclusive @xmath23 production due to the double @xmath24 is puzzling@xcite , but also the exclusive production rate of @xmath14 , @xmath27pb , may not be consistent with two previous calculations@xcite , which gave a cross section of a few pb for @xmath28 .
in fact , recent perturbative qcd estimates of the @xmath15 cross section are only about 0.1 @xmath29 0.2 pb@xcite .
so the calculations of exclusive cross sections for @xmath16 annihilation into @xmath28 and other double - charmonium states such as @xmath30 will be useful to clarify the problem .
experimentally , aside from @xmath31@xcite , belle @xcite has also studied processes @xmath32 and @xmath33 , so we hope that the double - charmonium production involving @xmath34 will be detectable in the near future . in the following
we will calculate the cross sections @xmath35 and @xmath36 in the leading order perturbative qcd . to this order ( @xmath37 )
the color - singlet channel is dominant since all color - octet channels are of high order of @xmath38 , which is the relative velocity of the charm quark and anti - charm quark in the charmonium , and therefore suppressed relative to the color - singlet channel ( the relative suppression is at least of order @xmath39 for the cross sections ) .
furthermore , in order to compare exclusive production with inclusive production rates associated with the @xmath40 charmonium states , we will calculate the cross section @xmath41 , and hope these ratios will be useful for both inclusive and exclusive production analyses at @xmath3=10.6 gev .
.,width=529,height=604 ] we now write down the scattering amplitude in the nonrelativistic approximation to describe the creation of two color - singlet @xmath42 pairs which subsequently hadronize to two charmonium states in the @xmath16 annihilation process in fig . [ fig1 ] as@xcite @xmath43 where @xmath44 , @xmath45 , @xmath46 , @xmath47 , @xmath48 and @xmath49 are respectively the color - su(3 ) , spin - su(2 ) , and angular momentum clebsch - gordan coefficients for @xmath50 pairs projecting out appropriate bound states .
@xmath51 is the scattering amplitude for double @xmath50 production and @xmath52 is the derivative of the amplitude with respect to the relative momentum between the quark and anti - quark in the bound state . the coefficients @xmath53 and @xmath54 can be related to the radial wave function of the bound states or its derivative with respect to the relative spacing as @xmath55 we introduce the spin projection operators @xmath56 as@xcite @xmath57 expanding @xmath58 in terms of the relative momentum @xmath59 , we get the projection operators and their derivatives , which will be used in our calculation , as follows @xmath60 @xmath61 @xmath62.\ ] ] then one can calculate the cross sections for the on - shell quarks in the factorized form of nrqcd@xcite .
the cross section for @xmath0 process in fig .
[ fig1 ] is given by @xmath63 where @xmath64 is the scattering angle between @xmath65 and @xmath66 , @xmath67 is as follows @xmath68 the mandelstam variables are defined as @xmath69 @xmath70 @xmath71 the cross section for @xmath72 process is @xmath73 where @xmath74 for @xmath75 , @xmath76 and @xmath9 are given by @xmath77 @xmath78 @xmath79 in the numerical calculations , we choose @xmath80 , @xmath81 and @xmath82@xcite , and assume that in the nonrelativistic approximation @xmath83 .
the numerical result for @xmath84 is @xmath85 while the numerical result for the cross section of @xmath86 is more than a factor of six smaller than the experimental data@xcite ( with uncertainties due to the unknown decay branching fractions into @xmath87 4-charged particles for the @xmath88 ) , the calculated ratio of @xmath89 might be consistent with the experimental result with the choice of @xmath90fb obtained by taking our input parameters .
the cross sections for @xmath91 production at @xmath92 are given as @xmath93 @xmath94 @xmath95 in fig .
[ fig2 ] , we show the cross sections as functions of the @xmath16 center - of - mass energy @xmath3 , and we can see that the cross sections for @xmath84 , @xmath96 and @xmath97 decrease rapidly as @xmath3 increases .
but the one with @xmath98 decreases more slowly than that with @xmath10 and @xmath99 .
( solid line ) and @xmath100(dashed line for @xmath101 , dotted line for @xmath102 ) plotted against the @xmath16 center - of - mass energy @xmath3 with z=@xmath103 and @xmath104.,width=453,height=377 ] at @xmath105 if we choose @xmath106fb and @xmath107fb which were obtained in the fragmentation approximation in ref.@xcite , then we have the ratios @xmath108 @xmath109
@xmath110 @xmath111 as for the @xmath75 inclusive double - charm production the rate was not given in ref.@xcite , we calculate @xmath112 in a complete form to the @xmath113@xmath114 order in perturbative qcd .
we give the amplitude of the first diagram in fig .
[ fig3 ] for @xmath115 as @xmath116_{li}}{\sqrt{3 } } \bar{v}(p_2)\gamma^{\mu}u(p_1)\frac{1}{s}\bar{u}_l(p_c)\nonumber \\ & \times & [ \gamma^{\alpha}p_{1s_z}\gamma_{\alpha}{\cal o}_{\mu}^{\sigma}+ \gamma^{\alpha}p^{\sigma}_{1s_z}\gamma_{\alpha}{\cal o}_{\mu}]v_i(p_{\bar{c}}),\end{aligned}\ ] ] where @xmath117 , @xmath118 is the @xmath119 color matrix , the matrix @xmath113@xmath120 is relevant to the on shell amplitude and @xmath113@xmath121 is its derivative with respect to the relative momentum between the quarks that form the bound state .
we can also express the contributions of other three diagrams in a similar way , and our numerical results are obtained with the full contributions of these four diagrams .
some useful information of the calculation is given in the appendix .
process.,width=453,height=604 ] we finally get the cross section for this process @xmath122 then one has the ratio @xmath123 @xmath124 in fig .
[ fig4 ] , we show cross sections for @xmath125(solid line ) and @xmath126(dotted line ) plotted against the @xmath16 center - of - mass energy @xmath3 with z=@xmath103 and @xmath104 .
one can see the ratio in eq .
( [ ratio ] ) decreases drastically as the center - of - mass energy increases .
this is consistent with the result in fig .
[ fig2 ] .
we hope the ratios between eq .
( [ ratio1 ] ) and eq .
( [ ratio2 ] ) could be tested in the near future .
( solid line ) and @xmath127(dotted line ) plotted against the @xmath16 center - of - mass energy @xmath3 with z=@xmath103 and @xmath104.,width=453,height=377 ] in summary , despite of many uncertainties due to the relativistic corrections , the qcd radiative corrections , the possible color - octet channel contributions , and the choice of physical parameters ( e.g. the charm quark mass and the strong coupling constant ) , both the inclusive and exclusive double charm production cross sections calculated in perturbative qcd turned out to be seriously underestimated as compared with data .
therefore we intend to conclude , as in @xcite , that it seems hard to explain the double charm production data observed by belle based on perturbative qcd ( including both color - singlet and color - octet channels ) , and possible nonperturbative qcd effects should be considered at @xmath105 . while we were about to submit our result
, there appeared one paper which also considered exclusive double - charmonium production@xcite .
those authors took the qed effects into account in addition to the qcd effects that we considered .
we find our result for the exclusive double - charmonium production is consistent with theirs but we also analyzed some inclusive processes which were not discussed in ref .
@xcite .
|
the authors thank l.k .
hao and z.z . song for useful discussions .
we also thank c.f .
qiao for helpful comments .
this work was supported in part by the national natural science foundation of china , and the education ministry of china .
in this appendix we give the cross section for the @xmath128 process shown in fig .
[ fig3 ] . @xmath129
it is convenient to rewrite the cross section as @xmath130 where @xmath131 . in fig .
[ fig3 ] the lower ( non - fragmentation ) diagrams give very small contributions ( about 3 percent ) , so for simplicity here we only write down the expressions for the contribution of the upper diagrams and give we define @xmath153 , @xmath154 , @xmath155 , @xmath156 , @xmath157 , @xmath158 , @xmath159 , @xmath160 .
we notify @xmath161 and @xmath162/[3m_c^2s^2(64m_c^{12 } \nonumber \\ & & + 192m_c^{10}pp_3 + 240m_c^8pp_3 ^ 2 + 160m_c^6pp_3 ^ 3 + 60m_c^4pp_3 ^ 4 + 12m_c^2pp_3 ^ 5 + pp_3 ^ 6)],\end{aligned}\ ] ] @xmath163/[3m_c^2s^2(64m_c^{12 } + 96m_c^{10}pp_3 + 96m_c^{10}pp_4 + 48m_c^8pp_3 ^ 2 \nonumber \\ & & + 144m_c^8pp_3pp_4 + 48m_c^8pp_4 ^ 2 + 8m_c^6pp_3 ^ 3 + 72m_c^6pp_3 ^ 2pp_4 + 72m_c^6pp_3pp_4 ^ 2 + 8m_c^6pp_4 ^ 3\nonumber \\ & & + 12m_c^4pp_3 ^ 3pp_4 + 36m_c^4pp_3 ^ 2pp_4 ^ 2 + 12m_c^4pp_3pp_4 ^ 3 + 6m_c^2pp_3 ^ 3pp_4 ^ 2 + 6m_c^2pp_3 ^ 2pp_4
^ 3 + pp_3 ^ 3pp_4 ^ 3)].\end{aligned}\ ] ]
|
authors thank l.k hao z.z song for discussions thank c.f . qiao comments work supported by national natural science foundation education ministry appendix cross section @xmath128 process fig . [ fig3 ] @xmath129 rewrite cross section as @xmath130 @xmath131 lower non - fragmentation diagrams small contributions about 3 percent ) simplicity write expressions contribution upper diagrams define @xmath153 @xmath154 @xmath158 @xmath159 @xmath160 notify @xmath161[3m_c(64m_c{12 192m_c^{10}pp_3 240m_c^8pp_3 160m_c^6pp_3 60m_c^4pp_3 12m_c^2pp_3 pp_3 @xmath163[3m_c^2s^2(64m_c^{12 96m_c^{10}pp_3 96m_c^{10}pp_4 48m_c^8pp_3 144m_c^8pp_3pp_4 48m_c^8pp_4 8m_c^6pp_3 72m_c^6pp_3 72m_c^6pp_3pp_4 8m_c^6pp_4 12m_c^4pp_3 3pp_4 36m_c^4pp_3 12m_c^4pp_3pp_4 6m_c^2pp_3 6m_c^2pp_3 2pp_4 pp_3 3pp_4
| 0.126041
| 570
| 335
|
, Saving $0.0 in GPT-4.
|
18,436
|
we study the process @xmath0 to probe low - scale gravity at high energy linear colliders .
a characteristic signature of extra - dimensions models is the forward - backward asymmetry due to the interference of spin-2 graviton and spin-1 sm gauge boson exchange terms , even when right - polarised electron beam is used .
our analysis shows that larger than 5% asymmetry is possible at a linear collider with @xmath1 ( 800 ) gev if the mass scale , @xmath2 is smaller than 2.7 ( 4.5 ) tev .
@xmath3 polarisation factors measured with a few percent accuracy will also be able to put similar limits on @xmath2 . 5.8 in _ _ 1 _ effects of tev scale gravity on @xmath4 + p. poulose + _ institute of theoretical physics e , rwth aachen , _ +
_ d-52056 aachen , germany _ +
|
in this paper we study the process @xmath5 in the presence of low - scale gravity with extra spatial dimensions .
in such a large extra - dimensions scenario gravity is allowed to propagate in @xmath6 dimensions , while sm particles confine to a sub - space of 4-dimensions .
this idea was proposed by arkani - hamed , dimopoulos and dvali @xcite , and the phenomenological consequences at colliders have been looked at in various processes in detail by many authors @xcite .
the main idea is to have a universally fundamental - scale , @xmath2 , of tev range where all interactions including gravity are comparable in strength .
this is contrary to the traditional belief that gravity becomes comparable in stregth to the other interactions only at planck mass , @xmath7 gev .
this lowering of the scale is possible if we consider @xmath8 spatial dimensions in addition to the usual 3 + 1 space - time manifold .
these additional dimensions are compactified to a radius @xmath9 .
relation between the two mass scales , the size of the extra dimensions and the number of extra dimensions is obtained by demanding that for distances larger than @xmath9 gravitational potential behaves like the newtonian @xmath10 .
thus we get the relation@xcite @xmath11 with an @xmath12 tev , @xmath13 requires @xmath9 to be of the order of @xmath14 meters .
this is ruled out , since newtonian gravity is tested to be correct up to about millimeter level . @xmath15 or larger
is allowed by this criterion .
thus gravity can propagate in @xmath16 dimensions as long as the extra @xmath8 dimensions are smaller than 1 mm . since standard model ( sm )
interactions are tested up to sub - fermi level , we require to confine these particles to a 4 dimensional sub - space . massless gravitons propagating in the bulk
is seen from the 4 dimensional sub - manifold as massive kaluza - klein ( kk ) modes with spin-0 , spin-1 and spin-2 .
mass spectrum can be treated to be continuous owing to the fact that mass splitting is of the order of @xmath17 , which is about @xmath18ev in the case of @xmath15 , and of the order of mev in the case of @xmath19 .
these kk modes couple to matter and gauge particles through the energy - momentum tensor and its trace .
the new interactions influence collider experiments in two ways .
one through the production of real kk modes , and two through the exchange of virtual kk modes in various processes . for a review on the effects of this idea in linear colliders like tesla ,
see @xcite . in the following
we will consider the process @xmath5 to study the effect of low - scale gravity at the proposed linear colliders to run at 500 gev and above .
earlier studies of this process @xcite have discussed possible limits on @xmath2 obtainable measuring , mainly , deviation of the total cross section from its sm value .
we will discuss , in addition to the total cross section , other observables like the forward - backward asymmetry and polarisation fraction of the @xmath20 s . in a linear collider it is possible to use polarised beams .
we will discuss the benifits of beam polarisation in the present case . in section 2
we discuss the process and give the expressions for matrix elements .
section 3 describes different observables that are relevant at a high energy linear collider .
conclusions will be given in section 4 .
the process @xmath5 has the standard interactions with the exchange of photon and @xmath21-boson in the @xmath22-channel and a @xmath23-channel with @xmath24 exchange . in the case of large extra dimensions , there are additional @xmath22-channels with spin-2 kk excitations of bulk gravitons .
spin-1 modes do not couple to the sm particles , and spin-0 contributions are proportional to the mass of the fermion invovled .
we treat electron as massless , and so neglect spin-0 exchange contribution .
the feynman diagrams of different channels are given in fig .
[ fig_fdiag ] .
relevant feynman rules are derived by han , lykken and zhang @xcite , and also by guidice , _ et al _ @xcite in a linearised - gravity aproximation .
there is an infinite tower of massive kk excitations all having a universal coupling to the sm particles .
han , lykken and zhang @xcite have derived the propagator factor after integrating over the spectrum , cutting it at the scale @xmath2 . following them we get kk exchange contribution to the matrix element given by @xmath25 ( \bar v \slash \!\!\!q_1 u ) \right .
\nonumber \\ & & + \left[-2 ( k_1.q_2 ) ( q_1.\ep)+s ( k_1.\ep)\right ] ( \bar v \slash \!\!\!\em u ) \nonumber \\ & & \left.+\left[-2 ( k_1.q_1 ) ( q_2.\em)+s ( k_1.\em)\right ] ( \bar v \slash \!\!\!\ep u ) \right\ } \end{aligned}\ ] ] here @xmath26 is the momentum of initial @xmath27 , and @xmath28 and @xmath29 are the spinors corresponding to @xmath27 and @xmath30 .
@xmath31 and @xmath32 are the momenta , and @xmath33 and @xmath34 the polarisation vectors of @xmath3 and @xmath35 respectively .
@xmath36 is the centre of masss energy of the collider , and @xmath37 is the factor corresponding to kk propagators after integrating over all the modes .
the propagator factor in the limit of @xmath38 is given by @xmath39 here @xmath8 is the number of large extra dimensions . in the case of high energy colliders
expected to operate at energies of 500 gev through 1 - 2 tev , @xmath38 may not be a good approximation .
in that case , nonresonant part of the propagator factors , neglecting the narrow width of each kk mode , as given by @xcite are , @xmath40{l } -\sum_{k=1}^{n/2 - 1 } \frac{1}{2k}\left(\frac{m_s}{\sqrt{s}}\right)^{2k } -\frac{1}{2}{\rm log}\left(\frac{m_s^2}{s}-1\right)\;\;\;\;\;\ ; \;\;\;\;\;\;\;({\rm even}\;\ ; n)\\ -\sum_{k=1}^{(n-1)/2 } \frac{1}{2k-1}\left(\frac{m_s}{\sqrt{s}}\right)^{2k-1 } + \frac{1}{2}{\rm log}\left(\frac{m_s+\sqrt{s}}{m_s-\sqrt{s}}\right ) \;\;\;\;\;\ ; ( { \rm odd}\;\ ; n ) \end{array } \right.\nonumber \end{aligned}\ ] ] apart from these non - resonant contributions , there is also a resonant contribution to the propagator factor , which adds an imaginary part to the matrix element @xcite . in the case of @xmath5 , since the sm matrix elements are real , there is no contribution from this part in the interference term .
purely gravity mediated contribution will be of order @xmath41 , and is negligible unless @xmath36 is very close to @xmath2 .
explicit expressions for different helicity amplitudes are given in @xcite .
we consider full propagator factor including its dependence on the number of extra dimensions , as given above .
thus to compare with the expressions given in @xcite the factor @xmath42 should be replaced by @xmath43 . in the next section
we discuss various observables that could be used at a high energy linear collider .
possible limits on @xmath2 that could be obtained at future linear colliders ( lc ) from considering the deviation of total cross section from the sm expectation were obtained in earlier studies @xcite .
limits obtained depend on the aproximations used to obtain kk - propagator factor .
our main aim in this report is to identify possible signatures which characterize the spin-2 nature of the graviton exchange .
the angular distribution of the @xmath20 s and the forward - backward asymmetry , as we will see , are good candidates in this respect . we first consider typical limit on @xmath2 that one could obtain at an lc . in table
[ table - mslt ] we give limits on @xmath2 that would correspond to a 2% deviation in the sm cross section at lc with c.m .
energies of 500 gev and 800 gev .
we assume 100% efficiency , and have not considered any experimental cuts .
more realisitic considerations will change the limits somewhat .
large beam polarisations can be achieved in linear colliders . using a right - polarised electron beam switches off the @xmath24 exchange contribution , and
hence improves the sensitivity to graviton exchange contribution . at a 500 gev collider
, while using unpolarised beams or left - polarised electron beam with unpolarised positron beam could reach @xmath2 values from about 1.3 tev ( for @xmath15 ) up to about 1.8 tev ( for @xmath19 ) , right - polarised electron beam with unpolarised positron beam could reach up to about 2.7 tev .
.@xmath2 values corresponding to 2% deviation in the sm cross section at lc with @xmath1 gev and @xmath44 gev for different beam polarisations .
@xmath8 is the number of extra dimensions . [
cols="^,^,^,^,^,^,^ " , ] although the cross section with right - handed electron polarisation is only about 57.1 ( 18.7 ) fb at @xmath1 ( 800 ) gev , a collider with luminosity of the order of 100 fb@xmath45 will produce several thousand events .
this would allow a determination of @xmath46 with an error of 1 - 2 % , sufficient to probe the effects of grativon exchange indicated in table [ table - fs ] .
we have considered the process @xmath5 to study the effect of a typical low energy gravity model suggested by arkani - hamed , dimopoulos and dvali @xcite . in such a model , in addition to the usual sm contribution , there is a contribution due to the spin-2 kk exchange in the @xmath22-channel .
earlier studies have obtained limits on the mass scale @xmath2 , at which gravity becomes comparable in strength to the other interactions , in @xmath16 dimensions @xcite .
these limits are obtained considering deviation of the total cross section from its sm value . in this paper
we have considered observables which help distinguish the spin-2 nature of the interaction .
a forward - backward asymmetry in the case of right - polarised electron beam is one significant observable in this regard .
we have quantified the asymmetry , and considered reach of @xmath2 by looking at this asymmetry at a linear collider running at @xmath47 500 gev and 800 gev .
we also looked at the polarisation fractions of the @xmath20 s produced . here again , we reach the conclusion that right - polarised electron beam is advantageous .
our analysis shows that an @xmath2 of about 2.5 tev could produce detectable effects at a linear collider running at 500 gev centre of mass energy .
this is improved to about 4 tev for a centre of mass energy of 800 gev .
the effects are qualitatively different from other new physics scenarios , _
strong @xmath48 interactions @xcite or extra gauge boson models @xcite , since these affect the @xmath49 partial waves , while graviton exchange is specifically a @xmath50 phenomenon .
* acknowledgement * + i would like to thank prof .
l.m.sehgal for suggesting this problem , and for many discussions .
i also wish to thank the humboldt foundation for a post - doctoral fellowship , and the institute of theoretical physics e , rwth aachen for the hospitality provided during this work .
99 n. arkani - hamed , s. dimopoulos and g. r. dvali , phys .
lett . b*429 * ( 1998 ) 263 ; phys .
d*59 * ( 1999 ) 086004 ; i. antoniadis , n. arkani - hamed , s. dimopoulos and g.r .
dvali , phys .
lett . b*436 * ( 1998 ) 257 . for reviews
see : yuri a. kubyshin , hep - ph/0111027 ; k. sridhar , int . j. mod .
phys . a*15 * ( 2000 ) 2397 ( hep - ph/0004053 ) ; t. g. rizzo , hep - ph/9910255 .
l. randall and r. sundrum , phys .
* 83 * ( 1999 ) 4690 ; phys . rev . lett .
* 83 * ( 1999 ) 3370 .
heuer , d. miller , f. richard , p. zerwas , tesla technical design report : part iii , desy-2001 - 011 ( hep - ph/0106315 ) ; g. pasztor , t. g. rizzo , snowmass 2001 , hep - ph/0112054 t. han , j. d. lykken and ren - jie zhang , phys .
rev . d*59 * ( 1999 ) 105006 .
g. f. guidice , _ et al .
b*544 * ( 1999 ) 3
. k. agashe and n.g .
deshpande , phys .
lett . b*456 * ( 1999 ) 60 .
c. balzs , _ et al _ , phys .
lett * 83 * ( 1999 ) 2112 .
l3 collaboration , phys .
lett . b*74 * ( 2000 ) 194 ; l3 note 2636 p. poulose s. d. rindani and l. m. sehgal , phys .
b*525 * ( 2002 ) 71 , and references therein .
s. godfrey , phys .
rev . d*51 * ( 1995 ) 1402 ; dong - won jung , k. y. lee , h.s .
song , c. yu , hep - ph/9905353 .
see also ref.@xcite .
|
study process @xmath5 low - scale gravity extra spatial dimensions large extra - dimensions scenario gravity @xmath6 dimensions sm particles confine sub - space 4-dimensions idea proposed by arkani - hamed dimopoulos dvali phenomenological consequences colliders looked authors idea universally fundamental - scale @xmath2 tev range interactions gravity comparable strength contrary belief gravity comparable planck mass lowering scale possible @xmath8 spatial dimensions 3 + 1 space - time manifold additional dimensions compactified radius @xmath9 relation mass scales size extra distances larger than @xmath9 gravitational potential behaves like newtonian @xmath10 relation @xmath11 @xmath12 tev @xmath13 requires @xmath9 @xmath14 meters ruled out newtonian gravity millimeter level @xmath15 or larger allowed gravity propagate @xmath16 dimensions extra @xmath8 dimensions smaller than 1 mm standard model interactions tested sub - fermi level confine particles 4 dimensional sub - space massless gravitons propagating seen 4 dimensional sub - manifold massive kaluza - klein modes spin-0 spin-1 spin-2mass spectrum continuous mass splitting @xmath17 @xmath18ev @xmath15 mev @xmath19 kk modes couple to matter gauge particles through energy - momentum tensor trace new interactions influence collider experiments production real kk modes exchange virtual kk modes review effects in linear colliders tesla see @xcite consider process @xmath5 effect low - scale gravity at proposed linear colliders 500 gev above earlier studies discussed limits on @xmath2 deviation total cross section from sm value discuss observables forward - backward asymmetry polarisation fraction of @xmath20 s use polarised beams discuss benifits of beam polarisation section 2 process expressions for matrix elements section 3 describes observables high energy linear collider conclusions section 4 process @xmath5 standard interactions with exchange photon @xmath21-boson @xmath22-channel @xmath23-channel @xmath24 exchange large extra dimensions additional @xmath22-channels with spin-2 kk excitations bulk gravitons spin-1 modes couple to sm particles spin-0 contributions proportional to mass fermion treat electron massless neglect spin-0 exchange contributionfeynman diagrams of channels in fig . feynman rules derived by han lykken zhang @xcite guidice al @xcite linearised - gravity aproximation infinite tower of massive kk excitations universal coupling to sm particles han lykken zhang @xcite derived propagator factor after integrating over spectrum at scale @xmath2 kk exchange contribution to matrix element by @xmath25 k_1_2 ). k_1.q_1 ) k_1.\em) @xmath26 is momentum of @xmath27 @xmath28 @xmath29 spinors to @xmath27 @xmath30 @xmath31 @xmath32 are momenta @xmath33 @xmath34 polarisation vectors of @xmath3 @xmath35 @xmath36 centre of masss energy of collider @xmath37 factor to kk propagators after integrating over modes propagator factor in limit of @xmath38 by @xmath39 @xmath8 is number of large extra dimensionshigh energy colliders 500 gev 1 - 2 tev @xmath38 nonresonant propagator factors neglecting narrow width kk mode @xcite @xmath40{l -\sum_{k=1}^{n/2 - 1 } \frac{1}{2k}({m_s)^{2k } -\frac{1}{2}{\rm log}({m_s^2}{s}-1\right) -\sum_{k=1}^{(n-1)/2 } \frac{1}{2k-1}_s)^{2k-1 } + \frac{1}{2}{\rm log}({m_s+{m_s-\sqrt{s}}\end{array }.\nonumber {aligned} non - resonant resonant contribution propagator factor adds imaginary part matrix element @xcite @xmath5 matrix elements real no contribution interference term gravity mediated contribution @xmath41 negligible unless @xmath36 close to @xmath2 expressions helicity amplitudes in @xcite .consider propagator factor dependence on extra dimensions compare expressions @xcite factor @xmath42 by @xmath43 discuss observables high energy linear collider limits on @xmath2 future linear colliders deviation total cross section sm expectation obtained in earlier studies @xcite limits depend on aproximations kk - propagator factor aim identify signatures spin-2 nature graviton exchange angular distribution @xmath20 s forward - backward asymmetry good candidates consider typical limit on @xmath2 at lc limits @xmath2 to 2% deviation sm cross section at lc with energies 500 gev 800 gev assume 100% efficiency experimental cuts realisitic considerations change limits large beam polarisations achieved in linear colliders right - polarised electron beam switches off @xmath24 exchange contribution improves sensitivity to graviton exchange 500 gev collider unpolarised beams left - polarised electron beam @xmath2 values 1.3 tev to 1.8 tev right - 2.7 tev@xmath2 values to 2% deviation in sm cross section at lc with @xmath1 gev @xmath44 gev different beam polarisations@xmath8 extra dimensions cols="^,^ cross section right - handed electron polarisation 57.1 ( 18.7 ) fb at @xmath1 ( 800 ) gev collider luminosity 100 fb@xmath45 several thousand events determination @xmath46 error 1 - 2 % effects grativon exchange table - fs considered process @xmath5 study low energy gravity model arkani - hamed dimopoulos dvali @xcite sm contribution contribution spin-2 kk exchange @xmath22-channel studies obtained limits mass scale @xmath2 gravity comparable strength other interactions @xmath16 dimensions limits obtained deviation total cross section from sm value considered observables spin-2 nature interaction forward - backward asymmetry right - polarised electron beam significant quantified asymmetry reach @xmath2 linear collider at @xmath47 500 gev 800 gev looked polarisation fractions @xmath20 s produced right - polarised electron beam advantageous analysis shows @xmath2 2.5 tev detectable effects linear collider 500 gev centre mass energy improved to 4 tev 800 geveffects different new physics scenarios @xmath48 interactions extra gauge boson models affect @xmath49 partial waves graviton exchange @xmath50 phenomenon prof l.m.sehgal problem discussions humboldt foundation post - doctoral fellowship institute theoretical aachen hospitality arkani - hamed dimopoulos r dvali phys . b*429 1998 ) 263 d*59 1999 ) 086004 antoniadis arkani - hamed dimopoulos dvali phys . b*436 1998 ) 257 reviews kubyshin hep - ph/0111027 sridhar .*15 2000 ) 2397 - ph/0004053 t g. rizzo hep - ph/9910255 randall sundrum phys . 83 1999 ) 4690 83 1999 ) 3370 heuer miller richard zerwas tesla technical design report iii-2001 - 011 hep - ph/0106315 pasztor t g. rizzo snowmass 2001 hep - ph/0112054 han d. lykken ren - jie zhang phys . rev. d*59 1999 ) 105006guidice b*544 1999 ) 3 agashe deshpande phys . lett b*456 1999 ) 60 balzs phys . lett 83 1999 ) 2112 collaboration . lett b*74 2000 ) 194 note 2636 poulose rindani sehgal . b*525 2002 ) 71 references godfrey . rev d*51 1995 ) 1402 dong - won jung lee song yu hep - ph/9905353 ref.@xcite
| 0.496771
| 3,283
| 1,723
|
, Saving $0.1 in GPT-4.
|
18,447
|
we present @xmath0 photometry for about 16000 stars from a 220 arcmin@xmath1 field centered 8 arcmin east of the center of 47 tuc .
we have identified eight likely blue stragglers located in the outer parts of the cluster .
four of these objects are easy targets for spectroscopic studies with ground - based telescopes .
six candidates for blue horizontal branch stars were identified .
however , it is possible that all or most of them belong in fact to the smc halo .
one faint blue star being candidate for a cataclysmic variable was found close to the cluster center .
the average @xmath2-band magnitude for stars forming the red giant branch clump is determined at @xmath3mag .
this in turn implies distance modulus of the cluster @xmath4mag ( statistical plus systematic error ) , if we adopt @xmath5mag for the average absolute luminosity of _ hipparcos_-calibrated clump giants , following paczyski & stanek and stanek & garnavich .
this distance modulus of 47 tuc is lower by @xmath6mag than its recent estimates based on _ hipparcos _ parallaxes for subdwarfs .
we discuss possible reasons for this discrepancy .
the photometric data are available through the anonymous ftp service .
|
47 tuc ( ngc 104 ) is a populous , metal rich , globular cluster located at relatively small distance from the sun . in the recent compilation harris ( 1996 )
lists for it metallicity @xmath7}=-0.76 $ ] , absolute visual magnitude @xmath8 , distance modulus @xmath9 and extinction @xmath10 .
the cluster belongs to the population of disk clusters ( zinn and west 1984 ) .
high galactic latitude of 47 tuc ( @xmath11 ) along with its closeness make it particularly attractive object for detailed studies .
the major , ccd based , photometric investigations of 47 tuc include @xmath12 photometry by hesser et al .
( 1987 ) and @xmath0 photometry by alcaino & liller ( 1987 ) .
the cluster was a subject of numerous projects conducted with the help of _ hst_. the most recent contributions include identification of a population of eclipsing binary stars in the cluster center ( edmonds et al . 1996 ; minniti et al .
1997 ) , search for cataclysmic binaries ( shara et al .
1996 ) , study of the luminosity function ( santiago et al .
1996 ) and spectroscopic study of a blue straggler located in the cluster center ( shara , saffer & livio 1997 ) .
kaluzny et al .
( 1997 , 1998 ) used ground - based data to identify several new variables , including 12 eclipsing binaries , in the outer parts of the cluster . in this paper
we report medium - deep @xmath0 photometry for an eastern section of 47 tuc .
these observations were aimed at : a ) derivation of a luminosity function for an upper main - sequence stars and subgiants ; b ) identification of blue stragglers in the outer parts of the cluster ; c ) search for candidates for blue horizontal branch stars .
the luminosity function derived from our data will be published elsewhere ( wysocka 1998 , in preparation ) .
below we concentrate on search for blue stragglers and other blue stars as well as on derivation of the distance modulus of the cluster .
the observations presented here were obtained using 1024@xmath1 tektronix ccd ( tek2 camera ) attached to the 2.5 m dupont telescope of the las campanas observatory .
the field of view of the camera was @xmath13 arcmin@xmath1 with the scale of 0.235 arcsec / pixel .
the data were collected on 4 nights of july 1114 , 1993 .
18 partly overlapping fields covering eastern part of the cluster were imaged through @xmath0 filters . a schematic chart showing location of these fields is shown in fig . 1
. the total surface of the observed area of the cluster equals about 220 arcmin@xmath1 .
the following sequence of exposures was collected for each sub - field : @xmath14 - 600 s , @xmath15 - 300 s , @xmath2 - 300 s. additionally , shorter exposures were obtained for sub - fields f19 and f10 .
photometry and equatorial coordinates for all stars detected are available in electronic form from ftp://www.astro.princeton.edu/kaluzny/globular/47tuc_bvi or ftp://www.astrouw.edu.pl/pub/jka/globular/47tuc_bvi ] the seeing ranged from 1.1 to 1.7 arcsec with a median value of about 1.5 arcsec .
the instrumental profile photometry was extracted using daophot / allstar package ( stetson 1987 ) .
the point spread function varying linearly with coordinates was applied .
the instrumental @xmath16 photometry derived for sub - fields f1 - 20 was transformed to the common instrumental system defined by photometry of sub - field f4 .
the offsets of the zero points of the photometry obtained for individual sub - fields were determined on a base of stars from the overlapping regions of adjacent sub - fields .
calibration to the standard @xmath17 system was performed using photometry of landolt ( 1992 ) fields , observed over the whole run . on the night of july 12 , 1993
, we observed three landolt fields containing a total of 14 standards .
these fields were observed at air - masses spanning the range @xmath18 .
based on the aperture photometry of the standard stars we adopted the following relations : @xmath19 where @xmath20 is an airmass and lower - case letters refer to the instrumental magnitudes normalized to 1 s exposures .
the overall quality of the adopted transformation is illustrated in fig . 2 where the magnitude and color residuals are plotted for the standard stars .
the last step was determination of aperture corrections for the sub - field f4 .
we estimate that probable errors of the zero points of our photometry of 47 tuc do not exceed @xmath21mag for magnitudes and colors .
the derived @xmath0 photometry of 47 tuc is presented in the form of color - magnitude diagrams ( cmds ) in figs . 3 , 4 and 5 .
3 shows data for all but two most crowded sub - fields f19 and f10 .
photometry for sub - fields f19 and f10 is shown in figs . 4 and 5 , respectively .
presented cmd s are not complete in the sense that for each of sub - fields objects with unusually large errors of photometry for their magnitude were discarded .
the cluster region observed by us neither overlaps with the fields observed by hesser et el .
( 1987 ) nor with the field observed by alcaino & liller ( 1987 ) . hence it is impossible to compare directly our photometry with the photometry published by these authors , but indirect comparison is possible . in fig .
6 we show @xmath22 cmd based on our data for the sub - field f4 with over - imposed fiducial relation published by hesser et al .
( 1987 ; table ix in their paper ) .
it has to be noted that parts of the fiducial relation describing location of the horizontal branch and main sequence are based on ccd data while the subgiants and lower giant branch are defined based on the photographic data .
the overall agreement is good although a systematic discrepancy in color is visible at the bottom of the subgiant branch . the average color for rgb stars plotted in fig
. 3 is @xmath23 which is marginally bluer than the average color measured by hesser et al .
( 1987 ) who obtained @xmath24 and @xmath25 for their fields f3 and f4 .
our photometry for main - sequence stars is consistent with results of alcaino & liller ( 1987 ) who obtained @xmath26 and @xmath27 for the colors of the main - sequence turnoff .
our data imply @xmath28 and @xmath29 . in fig .
7 we compare our @xmath30 photometry for rgb and sub - giant branch with the data from armandroff ( 1988 ) and da costa & armandroff ( 1990 ) .
there are no noticeable systematic differences between these 3 sets of data .
most of the thoroughly investigated globular clusters are known to harbor more or less rich populations of blue stragglers ( bss ) ( eg .
ferraro , fusi pecci & bellazzini 1995 ) there seems to be a correlation between a given cluster concentration and the properties of its bss population . in sparse clusters a substantial fraction of their bss
can be found in peripheral regions , although generally bss are more concentrated than `` ordinary '' member stars ( eg . subdwarfs ) . in clusters with very high central densities
bss have been observed almost exclusively in their central regions .
particularly interesting is the case of the nearby cluster m3 where there is an evidence for presence of two populations of bss of different origin ( ferraro et al .
it has been suggested that bss observed in cores of globular clusters are formed preferentially by stellar collisions while bss observed in loose clusters are formed by merging of primordial binaries ( ferraro , fusi pecci & bellazzini 1995 ; sandquist , bolte & hernquist 1997 ) .
paresce et al . (
1991 ) reported identification of 22 bss in the core of 47 tuc , the first detection of bss in a globular cluster core by _
hst_. in contrast hesser al .
( 1987 ) noted the complete lack of possible bss in the out - of - core regions the cluster .
recently kaluzny et al .
( 1998 ) surveyed a large fraction of the cluster and detected 12 eclipsing binaries of which most are likely bss .
several candidates for bss are visible in the cmd s presented in figs . 3 , 4 and 5 . as photometry shown in figs .
4 and 5 is relatively noisy we limited our attention to the data displayed in fig .
an expanded view of that figure showing region around the main - sequence turnoff is shown in fig . 8 .
one may note presence of an apparent bss clump at @xmath31 and @xmath32 . in table 1
we list photometry and equatorial coordinates for 8 stars forming that clump .
star bss7 has been identified as a contact binary by kaluzny et al .
( 1998 ; variable oglegc226 ) .
hence it is a likely binary bss .
the finding charts allowing identification of 8 identified bss candidates are shown in fig .
recently shara , saffer & livio ( 1997 ) used a spectrum obtained with the _ hst _ to derive absolute parameters for one of bss located in the cluster core .
we note in that context that four of our bss candidates are relatively isolated , un - crowded objects .
they are excellent objects for spectroscopic studies with ground - based telescopes .
as one of the closest globular clusters 47 tuc is particularly well suited for studies aimed at comparison of properties of individual stars belonging to inner and outer bss populations .
.photometry and coordinates for blue straggler candidates [ cols="<,<,<,<,<,^ " , ] object b7 is too faint to be a candidate for a hot subdwarf belonging to 47 tuc .
it was included in table 2 because it is noticeably bluer than an upper - main sequence stars from smc which can be seen in fig .
although b7 is located in the densest surveyed sub - field its photometry is quite reliable as luckily that star is a relatively un - crowded object ( see fig .
the derived magnitude and color of b7 are consistent with a hypothesis that it is a cataclysmic variable belonging to 47 tuc .
so far only one cataclysmic variable was identified in the cluster ( paresce & de marchi 1994 ; see also shara et al .
1996 ) . given an unexpected paucity of cataclysmic variables in globular clusters ( eg .
shara et al .
1996 ) it may be worth to examine closer nature of b7 .
the star can be monitored for possible variability and also its spectrum can be acquired with the ground - based telescopes .
we summarize our results as follows : 1 .
we have identified 8 promising candidates for blue stragglers in the outer parts of 47 tuc .
four of these stars are uncrowded objects being easy targets for detailed spectroscopic studies with ground - based telescopes . 2 .
five candidates for stars from the extended horizontal branch of 47 tuc were identified in the surveyed field .
however , these objects may be as well b - type main sequence stars belonging to the halo of the smc .
one relatively bright object being a candidate for blue horizontal branch star was also found .
a faint blue star was identified close to the cluster center .
its apparent magnitude and color are consistent with the hypothesis that it is a cataclysmic variable belonging to the cluster .
the average @xmath2-band magnitude for stars forming the red giant branch clump is determined at @xmath3mag .
this in turn implies distance modulus of the cluster @xmath4mag .
|
47 tuc ( ngc 104 ) populous metal rich globular cluster small distance from sun harris 1996 lists metallicity @xmath7=-0.76 $ visual magnitude @xmath8 distance modulus @xmath9 extinction @xmath10 cluster belongs to disk clusters west 1984 high galactic latitude @xmath11 closeness attractive for studies major photometric investigations include @xmath12 photometry by hesser 1987 @xmath0 photometry by alcaino & liller 1987 cluster subject of projects hst_ recent contributions include identification population eclipsing binary stars center search for cataclysmic binaries study luminosity function spectroscopic study of blue straggler center kaluzny et al . 1997 1998 used data new variables 12 eclipsing binaries in outer parts cluster medium - deep @xmath0 photometry for eastern section of 47 tuc observations aimed at derivation luminosity function for upper main - sequence stars subgiants identification of blue stragglers outer parts search for candidates for blue horizontal branch stars luminosity function derived published elsewhere ( wysocka 1998concentrate search blue stragglers blue stars derivation distance modulus cluster observations obtained 1024@xmath1 tektronix ccd camera 2.5 m dupont telescope las campanas observatory field view @xmath13 arcmin@xmath1 scale 0.235 arcsec / pixel data collected 4 nights july 1993 18 overlapping fields eastern cluster imaged @xmath0 filters schematic chart fig . 1 total surface observed area 220 arcmin@xmath1 sequence exposures sub - field @xmath14 - 600 - 300 s @xmath2 - 300 s shorter exposures sub - fields f19 f10 photometry equatorial coordinates stars available.astro.princeton.edu/47tuc.edu.pl seeing ranged 1.1 to 1.7 arcsec median 1.5 arcsec instrumental profile photometry extracted daophot / allstar package point spread function varying coordinates applied instrumental @xmath16 photometry sub - fields f1 - 20 transformed to system photometry sub - field f4 offsets zero points determined stars overlapping regions sub - fieldscalibration standard @xmath17 system using landolt 1992 fields july 12 1993 observed three landolt fields 14 standards at air - masses range @xmath18 adopted relations : @xmath19 @xmath20 airmass lower - letters instrumental magnitudes normalized to 1 s exposures quality transformation illustrated in fig . 2 magnitude color residuals for standard stars step determination aperture corrections for sub - field f4 probable errors zero points 47 tuc not exceed @xmath21mag for magnitudes colors derived @xmath0 photometry of 47 tuc presented color - magnitude diagrams in figs . 3 4 5 3 shows data for crowded sub - fields f19 f10 photometry for f19 f10 shown in figs . 4 5 s not complete objects with large errors discarded cluster region overlaps with fields hesser et el. 1987 ) alcaino & liller ( 1987 ) impossible compare indirect comparison possible fig . 6 @xmath22 cmd data sub - field f4 with over - imposed fiducial relation hesser et al . 1987fiducial relation horizontal branch main sequence based on ccd data subgiants lower giant branch photographic data agreement good discrepancy in color visible at bottom subgiant branch average color for rgb stars fig 3 is @xmath23 marginally bluer than hesser et al 1987 obtained @xmath24 @xmath25 for fields f3 f4 photometry for main - sequence stars consistent with alcaino & liller ( 1987 ) @xmath26 @xmath27 - sequence turnoff data imply @xmath28 @xmath29 fig . 7 @xmath30 photometry for rgb sub - giant branch with armandroff ( 1988 da costa & armandroff ( 1990 ) no systematic differences between globular clusters harbor rich populations of blue stragglers ( bss ) correlation between cluster concentration bss population in sparse clusters bss in peripheral regions more concentrated than clusters high central densities bss observed exclusively in central regions nearby cluster m3 evidence for two populations bss different originsuggested bss in globular clusters formed by stellar collisions loose clusters merging primordial binaries ( 1995 1997 paresce et al . 1991 reported 22 bss in core 47 tuc first detection globular cluster by hst hesser al . 1987 ) noted lack of bss in out - of - core regions kaluzny et al . 1998 detected 12 eclipsing binaries most likely bss candidates for bss in in figs . 3 4 5 photometry noisy limited attention to data fig expanded view in fig . 8 bss clump at @xmath31 and @xmath32 table 1 photometry equatorial coordinates for 8 stars clump star bss7 identified as contact binary by kaluzny et al . likely binary bss finding charts 8 bss candidates shown in fig . shara saffer livio 1997 used spectrum with _ hst _ parameters for one bss in cluster core four bss candidates isolated un - crowded objects excellent objects for spectroscopic studies ground telescopesclosest globular clusters 47 tuc suited for studies comparison properties stars inner outer bss populations.photometry coordinates for blue straggler candidates object b7 faint for hot subdwarf 47 tuc included in table 2 bluer than upper - main sequence stars from smc in fig b7 in densest surveyed sub - field photometry reliable un - crowded object magnitude color of b7 consistent with hypothesis cataclysmic variable 47 tuc one cataclysmic variable identified in cluster 1994 paucity of cataclysmic variables in globular clusters examine closer b7 star monitored for variability spectrum acquired with ground - based telescopes results identified 8 promising candidates for blue stragglers in outer parts 47 tuc four stars uncrowded easy targets for detailed spectroscopic studies five candidates for stars from extended horizontal branch of 47 tuc identified in field may be b - type main sequence stars halo smc one bright object candidate for blue horizontal branch star found faint blue star identified close to cluster centermagnitude color consistent hypothesis cataclysmic variable cluster average @xmath2-band magnitude stars red giant branch clump @xmath3mag implies distance modulus cluster @xmath4mag
| 0.428395
| 2,718
| 1,389
|
, Saving $0.1 in GPT-4.
|
18,449
|
it is shown that if a planar graph admits no non - constant bounded harmonic function then the trajectories of two independent simple random walks intersect almost surely .
|
let @xmath0 be a connected ( multi)graph .
the graph @xmath1 has the _ intersection _ property if for any @xmath2 , the trajectories of two independent simple random walks ( srw ) started respectively from @xmath3 and @xmath4 intersect almost surely .
recall that @xmath1 is _ liouville _ if it admits no non - constant bounded harmonic function .
the goal of this note is to prove the following : [ main ] if @xmath1 is planar and liouville then @xmath1 has the intersection property .
let us make a few comments on this result .
we first recall the well - known sequence of implications as well as the @xmath5 lattices that satisfy them : @xmath6 in the case of _ bounded degree _ planar graphs the liouville property is equivalent to recurrence of the simple random walk , see @xcite ( as in the case of non - compact planar riemannian surfaces ) .
if we drop the bounded degree assumption , it is easy to construct transient planar graphs which are liouville : for example , start with a half line @xmath7 and place @xmath8 parallel edges between @xmath9 and @xmath10 for @xmath11 . yet
this graph clearly has the intersection property .
our result thus becomes interesting in the case of liouville planar graphs of unbounded degree .
such graphs arise for example as distributional limits of finite random planar graphs , a topic that has attracted a lot of research recently @xcite .
the strategy of the proof is the following .
we consider three independent simple random walk trajectories , and argue that if each two of them intersect only finitely many times , then they divide our planar graph into three regions ( fig.[separation ] ) .
this allows us to talk about the probability for random walk to eventually stay in one of these regions , which we use to construct a non - constant bounded harmonic function , contradicting our liouvilleness assumption .
fix @xmath0 a connected planar multi - graph and suppose that @xmath1 has the liouville property . first note that if @xmath1 is recurrent then it has the intersection property and we thus suppose henceforth that @xmath1 is transient .
+ denote by @xmath12 the law of a simple random walk @xmath13 started from @xmath3 in @xmath1 .
we write @xmath14 for the trajectory of @xmath15 .
if @xmath16 is a set of vertices in @xmath1 define for any @xmath17 @xmath18 it is clear that @xmath19 is harmonic ( bounded ) and is thus constant since @xmath1 is liouville .
we write @xmath20 for the common value @xmath21 @xmath22 .
in fact , one has @xmath23 .
indeed , if @xmath24 is the sigma - field generated by the srw we have @xmath25 \quad = \quad \lim_{n\to \infty}h_\gamma(x_n)\qquad a.s .
\end{aligned}\ ] ] hence @xmath26 tends to @xmath27 or @xmath28 a.s .
and the claim follows .
let us now randomize the path @xmath29 and consider the random variable @xmath30 where @xmath31 is the trajectory of a srw under @xmath32 .
the last argument shows that @xmath33 .
we now claim that @xmath30 is almost surely constant . indeed ,
if @xmath31 and @xmath34 are two independent simple random walk trajectories started from @xmath35 we have @xmath36 a.s .
( and similarly interchanging the roles of @xmath31 and @xmath34 ) thus @xmath37 & = & p_x\big ( \ # ( \mathbf{x } \cap \mathbf{y } ) = \infty \mbox { and } \ # ( \mathbf{y } \cap \mathbf{x})= \infty\big)\\ & = & p_x\big ( \ # ( \mathbf{x } \cap \mathbf{y } ) = \infty\big)\\ & = & e_x[h _ \mathbf{x}].\\ \end{aligned}\ ] ] hence @xmath38 ^ 2 = e_x[h _ \mathbf{x } ] \in \{0,1\}$ ] . either @xmath39 for all @xmath22 a.s . in which case theorem [ main ] is proved , or almost surely for all @xmath22 we have @xmath40 . in words , a.s . for any @xmath2 , two simple random walk paths started from @xmath3 and @xmath4 intersect only finitely many times .
let us suppose by contradiction that we are in the latter case .
+ we now make use of the planarity and consider a proper embedding is liouville , it has precisely one transient end @xmath41 and it is possible to embed @xmath1 in @xmath42 so that no ray in @xmath41 has an accumulation point in @xmath43 , which always exists @xcite . ] of @xmath1 in @xmath43
. let us consider three independent simple random walk trajectories @xmath44 and @xmath45 started from some @xmath17 .
since almost surely these paths intersect each - other finitely often a.s . , they distinguish , using the planarity , three regions in ( the embedding of ) @xmath1 called @xmath46 and @xmath47 as depicted in the figure below .
formally , the region @xmath48 is defined as the set of all vertices @xmath49 such that for all @xmath9 large enough , if @xmath29 is a path linking @xmath4 to @xmath50 in @xmath1 then @xmath29 must intersect @xmath51 . the regions @xmath52 and @xmath47
are defined similarly .
the three ( random ) regions @xmath46 and @xmath47.,width=302 ] now for any @xmath22 , conditionally on @xmath44 and @xmath45 we consider a simple random walk trajectory @xmath34 under @xmath53 . by our assumption
the path @xmath34 intersects any of the @xmath54 s finitely many times a.s . so that @xmath34 is eventually trapped in one of the three regions @xmath46 or @xmath47 .
we then define @xmath55 note that @xmath56 is a random function and that for every @xmath57 it is ( bounded ) harmonic over @xmath1 and thus constant by the liouville property of @xmath1 .
on the one hand an obvious symmetry argument shows that @xmath58 = 1/3 $ ] . on the other hand since
@xmath59 is almost surely constant we have @xmath60 for all @xmath11 .
almost surely , for all @xmath9 large enough , if a simple random walk started from @xmath50 is eventually trapped in @xmath48 then it has to cross one of the paths @xmath61 or @xmath62 .
we thus have @xmath63 & = & \limsup_{n \to \infty } e[\mathcal{h}(x_{n}^{(1 ) } ) ] \\ & = & \limsup_{n \to \infty } e\big[p_{x_{n}^{(1 ) } } ( \mathbf{y } \mbox { is trapped in } \mathcal{r}_{1})\big ] \\ & { \leqslant } & \limsup_{n\to \infty } e \big [ p_{x_{n}^{(1 ) } } ( \mathbf{y } \mbox { intersects } \mathbf{x}^{(2 ) } \cup \mathbf{x}^{(3 ) } ) \big ] .
\end{aligned}\ ] ] but since @xmath64 has only a finite intersection with @xmath51 a.s .
we deduce that the probability inside the expectation of the right - hand side of the last display goes to @xmath27 as @xmath65 .
hence @xmath66=0 $ ] and this is a contradiction .
one deduces that @xmath67 almost surely as desired .
[ [ relaxing - planarity . ] ] relaxing planarity .
+ + + + + + + + + + + + + + + + + + + as we noted above , @xmath68 is liouville and yet two independent simple random walk paths do not intersect with positive probability . for which families of graphs , other then planar , intersection is equivalent to liouville ?
e.g. , a natural extension of the collection of all planar graphs is the collection of all graphs with an excluded minor .
fix a finite graph @xmath69 .
it is reasonable to guess that the statement of theorem [ main ] still holds if we replace the planarity assumption by the hypothesis that @xmath1 does not have @xmath69 as a minor .
indeed , many theorems on planar graphs generalize to excluded minor graphs ( see , e.g. , @xcite ) .
it is even more interesting to show that bounded degree transient excluded minor graphs admit non - constant bounded harmonic functions thus extending @xcite .
another generalization of planarity is sphere - packability , see @xcite .
we _ ask _ whether a liouville sphere - packable graph in @xmath70 should admit the intersection property ?
let @xmath71 and @xmath72 be two graphs endowed respectivelly with their graph distances @xmath73 and @xmath74 .
these graphs are called _ quasi - isometric _ if there exists @xmath75 and two constants @xmath76 such that for every @xmath77 @xmath78 and if for every @xmath79 there exists @xmath80 with @xmath81 .
+ for bounded degree planar graphs , the liouville property is quasi - isometry invariant since transience is .
an example in @xcite shows that liouville property and almost sure intersection of simple random walks are not quasi - isometry invariants : there exist two graphs @xmath82 and @xmath83 that are quasi - isometric such that @xmath82 has the intersection property ( hence liouville ) whereas @xmath83 is non liouville and two independent simple random walk trajectories started from two different points in @xmath83 have a probability strictly in between @xmath27 and @xmath28 of having an infinite intersection .
however it is possible to modify and iterate the construction of @xcite in such a way that the last probability is actually @xmath27 .
a concept related to liouvilleness is the _ ( dirichlet ) energy _ of a harmonic function @xmath84 , defined by @xmath85 where the sum ranges over all neighbors @xmath86 of the graph .
for example , it is known that if a graph admits a non - constant harmonic function of finite energy then it is not liouville @xcite , but the converse is in general not true .
russ lyons asked ( private communication ) whether the converse becomes true for planar graphs , i.e. whether there is a planar graph which admits non - constant bounded harmonic functions but yet none of finite energy .
we construct such a graph here .
start with the integers @xmath87 , and place @xmath88 parallel edges between @xmath9 and @xmath10 for every @xmath9 .
then , join each @xmath9 to @xmath89 by a new edge of resistance @xmath9 , or equivalently , with a path of length @xmath9 of unit resistance edges .
this graph is , easily , still non - liouville , and the reader will be able to check that it does however admit no non - constant harmonic functions of finite energy , see for example ( * ? ? ?
* lemma 3.1 . ) .
r. thomas .
recent excluded minor theorems for graphs . in _
surveys in combinatorics , 1999 ( canterbury ) _ , volume 267 of _ london math .
lecture note ser .
_ , pages 201222 .
cambridge univ . press ,
cambridge , 1999 .
|
@xmath0 connected multi)graph graph @xmath1 has intersection property if @xmath2 trajectories of two random walks from @xmath3 and @xmath4 intersect @xmath1 liouville _ if no non - constant bounded harmonic function goal prove if @xmath1 planar liouville @xmath1 has intersection property comments on result recall sequence implications @xmath5 lattices satisfy @xmath6 bounded degree planar graphs liouville property equivalent to recurrence simple random walk non - compact planar surfaces drop bounded degree assumption easy to construct transient planar graphs liouville start with half line @xmath7 place @xmath8 parallel edges between @xmath9 @xmath10 for @xmath11 graph has intersection property result interesting liouville planar graphs of unbounded degree graphs distributional limits of finite random planar graphs research strategy proof consider three independent random walk trajectories if two intersect finitely many times divide planar graph into three regions probability for random walk to stay in one construct non - constant bounded harmonic function contradicting liouvilleness assumptionfix @xmath0 planar multi - graph @xmath1 liouville property @xmath1 recurrent intersection property suppose transient denote @xmath12 law random walk @xmath13 started from @xmath3 @xmath1 write @xmath14 trajectory @xmath15 @xmath16 vertices @xmath1 define @xmath17 @xmath18 @xmath19 harmonic constant @xmath1 liouville write @xmath20 common value @xmath21 @xmath22 one has @xmath23 @xmath24 sigma - field srw @xmath25 \quad @xmath26 tends to @xmath27 @xmath28 claim follows randomize path @xmath29 consider random variable @xmath30 @xmath31 trajectory srw under @xmath32 argument shows @xmath33 claim @xmath30 constant @xmath31 @xmath34 independent random walk trajectories started from @xmath35 @xmath36 a.sinterchanging roles @xmath31 @xmath34 @xmath37 p_x\big \mathbf{x } \mathbf{y } ) = \infty \mbox { \mathbf{y } \mathbf{x})= \infty\big p_x\big \mathbf{x } \mathbf{y } ) = \infty\big e_x[h _ \mathbf{x}]\end{aligned} @xmath38 ^ 2 = e_x[h _ \mathbf{x } ] \{0,1\}$ @xmath39 for @xmath22 theorem proved or all @xmath22 @xmath40 two random walk paths from @xmath3 @xmath4 intersect many times latter case use planarity proper embedding one transient end @xmath41 embed @xmath1 in @xmath42 no ray @xmath41 accumulation point in @xmath43 @xmath1 in @xmath43 three independent random walk trajectories @xmath44 @xmath45 started from @xmath17 paths intersect often distinguish planarity three regions in @xmath1 @xmath46 and @xmath47 figureregion @xmath48 defined vertices @xmath49 @xmath9 if @xmath29 path linking @xmath4 to @xmath50 intersect @xmath51 regions @xmath52 and @xmath47 defined similarly three random regions @xmath46 and @xmath47 @xmath22 on @xmath44 random walk trajectory @xmath34 under @xmath53 path @xmath34 intersects @xmath54 s many times @xmath34 trapped in regions @xmath46 or @xmath47 define @xmath55 @xmath56 random function @xmath57 harmonic over @xmath1 constant by liouville property @xmath1 symmetry @xmath58 = 1/3 $ ] @xmath59 constant @xmath60 for all @xmath11 @xmath9 if random walk from @xmath50 trapped in @xmath48 cross @xmath61 or @xmath62@xmath63 \limsup_{n\to \infty }[\mathcal{h}(x_{n}^{(1 ) } ) \limsup_{n \infty }\big[p_{x_{n}^{(1 ) } \mathbf{y } \mbox { trapped in \mathcal{r}_{1})\big ] \leqslant } \limsup_{n\to \infty }\big p_{x_{n}^{(1 ) } } \mathbf{y } \mbox { intersects \mathbf{x}^{(2 ) } \mathbf{x}^{(3 ) } \big\end{aligned} @xmath64 finite intersection with @xmath51 probability - goes to @xmath27 as @xmath65 @xmath66=0 contradiction @xmath67 desired relaxing - planarity @xmath68 is liouville two independent random walk paths intersect with positive probability graphs intersection equivalent to liouville ? natural extension of planar graphs excluded minor finite graph @xmath69 statement of theorem [ main holds replace planarity assumption by hypothesis @xmath1 have @xmath69 as minortheorems on planar graphs generalize excluded minor graphs @xcite excluded minor graphs admit non - constant harmonic functions extending @xcite generalization planarity sphere - packability liouville sphere - packable graph in @xmath70 intersection property @xmath71 two graphs graph distances @xmath73 quasi - isometric if @xmath75 two constants @xmath76 @xmath77 @xmath79 @xmath80 @xmath81 planar graphs liouville property quasi - isometry invariant transience example @xcite liouville property intersection random walks not quasi - isometry invariants two graphs @xmath82 @xmath83 quasi - isometric @xmath82 intersection property @xmath83 non liouville two independent random walk trajectories from points @xmath83 probability @xmath27 @xmath28 infinite intersection modify construction @xcite last probability is @xmath27 concept related to liouvilleness energy of harmonic function @xmath84 defined by @xmath85 sum ranges over neighbors @xmath86 graphgraph admits non - constant harmonic function finite energy not liouville @xcite converse not true russ lyons asked converse true for planar graphs admits non - constant harmonic functions none finite energy construct graph start with integers @xmath87 place @xmath88 parallel edges between @xmath9 @xmath10 join @xmath9 to @xmath89 by new edge resistance @xmath9 path length @xmath9 unit resistance edges graph non - liouville reader no non - constant harmonic functions finite energy see lemma 3.1 r. thomas excluded minor theorems for graphs surveys in combinatorics 1999 volume 267 london math lecture note pages 201222 cambridge univ . press 1999
| 0.424524
| 2,706
| 1,485
|
, Saving $0.1 in GPT-4.
|
18,450
|
it is shown that the monochromatic optical wave propagating through the medium with linear birefringence in presence of a signal electromagnetic wave ( whose wavelength is equal to the polarization beats length ) , displays faraday rotation having the frequency of the signal wave and unsuppressed by linear birefringence .
the effect is resonant with respect to the frequency of a signal wave .
the `` sharpness '' of the resonance is defined by length of the birefringent medium .
all - russia research center `` vavilov state optical institute '' -mail : gkozlov@photonics.phys.spbu.ru
|
in the present paper we suggest the effect of resonant behaviour of the faraday rotation of light propagating through a medium with linear birefringence . due to
the universality of the effect suggested the resonant frequency of the magnetic field has nothing to do with resonances of the susceptibility of the medium and completely defined by the value of linear birefringence of the medium in the transparency spectral region . in this section
we describe the essence of the effect . for this reason we briefly remind some statements of the polarization optics .
the optical wave electrical displacement vector in the medium runs over the ellipse whose plane is perpendicular to the direction of wave propagation .
the parameters of this ellipse define the wave polarization .
the case of ellipse squeezed to a line corresponds to linear polarization , the case of circle corresponds to circular polarization .
the relative amplitudes and phases of the projections of this motion with respect to some fixed coordinate system completely define the polarization state .
these projections can be described by jones vector : @xmath0 where @xmath1 and @xmath2 relative amplitudes , and @xmath3 relative phase of the projections . for
an arbitrary direction in anisotropic medium one can specify two linearly independent monochromatic waves
normal modes propagating with no change of the polarization state .
the normal modes jones vectors @xmath4 are the eigen vectors of the inverse permittivity tensor projected on the plane perpendicular to the wave propagation direction .
the corresponding eigen values define the normal modes refractive indexes @xmath5@xcite .
below we consider the transparent anisotropic medium for which the matrix of this tensor is hermitian with its real symmetric part describing linear birefringence and imaginary antisymmetric part describing circular birefringence .
for the problems of polarization optics not the refractive indexes of the normal modes themselves are of prime importance but their difference . omitting some detailes which are not important for us we can introduce tensor @xmath6 whose eigen values reproduce the deviations of refractive indexes of normal modes from their main ( or average ) value ( which we denote by @xmath7 ) and whose eigen vectors reproduce the jones vectors of the normal modes . real symmetric part of this tensor
describe the linear birefringence and imaginary antisymmetric part describe the circular birefringence . in the coordinate system where the real part of this tensor is diagonal
it can be always written in the following convenient form : @xmath8 where @xmath9 and @xmath10 pauli spin - matrices : @xmath11 in accordance with the above we call coefficient @xmath12 _ linear birefringence _ and coefficient @xmath13 we call _ gyration_. the arbitrary polarized incident light can be always reproduced as a linear combination of the normal modes .
due to the fact that the propagation velocities of the normal modes differ from each other the polarization state will display the periodical changes along the propagation direction .
the corresponding spatial period @xmath14 called the polarization beats length and can be calculated as : @xmath15 here @xmath16 is the vacuum wavelength of the incident light . for the case of the media with linear birefringence
the normal modes are linearly polarized in two orthogonal directions and the polarization beats represent the periodical changes of ellipticity . for the case of circular birefringence ( which appear for example in the isotropic medium affected by the magnetic field ) the normal modes are the circularly polarized waves with different direction of rotation . in this case
( if the incident wave is linearly polarized ) the polarization beats represent the rotation of the polarization plane .
below we consider @xmath17 , which is almost always the case for the actual media .
now we are ready to pass to our effect .
suppose that the linearly polarized wave falls on the medium having length @xmath18 with linear birefringence @xmath12 .
suppose that this wave has one of eigen polarizations of the medium .
this wave will pass through the medium with no change of polarization state .
now let us switch on the weak longitudinal magnetic field which gives rise to gyration @xmath19 .
if the linear birefringence is zero , the polarization plane would rotate by an angle @xmath20 .
nevertheless it is known that if @xmath19 ( weak gyration ) and @xmath21 ( the medium length is greater than polarization beats spatial period ) the above rotation is considerably suppressed @xcite . this suppression can be removed as follows @xcite .
suppose that the magnetic field is periodically varying in space and has the spatial period @xmath22 i.e. equal to that of polarization beats
. for example let gyration be the following function of coordinate : @xmath23 . then
( under some additional conditions @xcite ) the polarization plane of the beam on exit of the medium rotate by an angle @xmath20 , equal to that for the case of zero linear birefringence .
it is wellknown effect of compensation of linear birefringence @xcite . _ in this paper we suggest the effect of similar compensation by means of magnetic field which is constant in space ( along the beam propagation direction ) but varying in time .
_ let us introduce the incident plane wave as a sequence of pulses , each of which contain several spatial periods of the incident wave @xmath16 .
one of these pulses is depicted on fig.1 by a bold line .
the temporal dependence of coordinate @xmath24 of an arbitrary pulse has the form : @xmath25 here @xmath26 is the pulse coordinate at @xmath27 , @xmath7 the main value of refractive index of the medium , @xmath28 the speed of light .
pulse can be identified by the value of @xmath26 and for this reason we denote the pulse whose coordinate is @xmath26 at @xmath27 by a term `` pulse @xmath26 '' .
now let us affect our medium by a time - dependent magnetic field directed along the @xmath29- axis .
if we denote by @xmath30 the frequency of this magnetic field , then this field gives rise to a gyration which can be written in the form : @xmath31 it is easy to see that from the point of view of the pulse @xmath26 the gyration depends on @xmath29 .
for this to see one should express @xmath32 from ( 5 ) and substitute it in ( 6 ) : @xmath33\ ] ] by changing the frequency of magnetic field @xmath30 one can adjust the spatial period of gyration ( 7 ) to be equal to that of polarization beats related to the linear birefringence of the medium .
this leads to the following relationship for this frequency : @xmath34 @xmath35 here @xmath36 is the vacuum wavelength of the electromagnetic wave having the frequency @xmath30 .
so we see that the linear birefringence is compensated for the pulse @xmath26 and this pulse ( under some additional conditions which we consider below ) will display unsuppressed faraday rotation @xmath20 .
this effect is resonant with respect to the deviation of frequency of the magnetic field from the value defined by ( 8) . in the next section we present the quantitative calculation and show that the above resonance is accompanied by oscillations of the polarization plane with frequency @xmath30 .
in this section we present a calculation of the above effect .
it is convenient to perform calculations by means of the _ quasispin _ method - the method of polarization optics based on the formal similarity of the dynamics of quantum two - level system and the dynamics of polarization of light propagating in the anisotropic medium .
let us remind briefly the essence of this method .
the polarization state is described by the vector of quasispin @xmath37 whose components @xmath38 expressed via the pauli spin matrices @xmath39 and jones vector ( 1 ) as follows : while propagating through the medium the polarization of the beam can change and consequently the direction of quasispin @xmath37 depends on @xmath29-coordinate along the propagation direction .
this dependence can be described by the bloch equation : the dimensionless coordinate @xmath42 plays the role of `` time '' and can be expressed in terms of conventional coordinate @xmath29 as : @xmath43 .
the effective `` magnetic field '' vector can be expressed via the linear birefringence and gyration as follows : @xmath44 .
the quantities @xmath13 and @xmath12 can depend on @xmath42 .
below we deal with the gyration having the sinusoidal dependence on @xmath42 .
this dependence can be removed by passing to the rotating frame in the bloch equation ( 10)@xcite .
let us now turn to the problem we are interested in .
consider the monochromatic beam having the vacuum wavelength @xmath16 propagating in a medium with linear birefringence @xmath12 and with average refractive index @xmath7 ( fig.1 ) we are interested in the dynamics of the polarization of this wave and we call this wave the _ optical _ wave .
let the other monochromatic wave ( which will be hereinafter referred to as _ signal wave _ ) be falling at the medium at an angle @xmath45 so the vector of the magnetic field in this wave has the @xmath29- component @xmath46 .
the magnetic field of the signal wave give rise to the gyration in the medium and the polarization of optical wave acquire the increment which we are interested in .
let @xmath36 be the vacuum wavelength of the signal wave , @xmath47 be the refractive index of the enviroment , @xmath18 be the medium length .
let the thickness of the medium be much smaller than @xmath36 so the magnetic field of the signal wave is homogeneous within our medium .
the setup described corresponds to the case of the planar waveguide with the optical wave propagating inside it and irradiated by the signal wave falling at an angle @xmath45 to the plane of the waveguide .
it is easy to see that the distribution of gyration in the medium , produced by a signal wave , can be written as : @xmath48\ ] ] @xmath49 where @xmath50 the verdet constant of the medium , @xmath51 the amplitude of the magnetic field in the signal wave , @xmath30 the frequency of field oscillations in it .
now let us consider this distribution from the point of view of the pulse @xmath26 of the optical wave in the same way it was done in the introduction .
for this reason express @xmath32 from ( 5 ) and substitute it in ( 11 ) .
passing to the dimensionless coordinate one can obtain that from the pulse @xmath26 point of view the following spatial distribution of the gyration take place : if we denote the optical wave quasispin vector on the entrance of the medium by @xmath54 , then the temporal behaviour of the quasispin of the pulse @xmath26 can be calculated from the bloch equation ( 10 ) with the effective `` magnetic field '' @xmath55 and under the initial condition @xmath56 . the equation ( 10 )
should be solved within the interval @xmath57 $ ] .
the solution of this problem can be carried out in a conventional way and consists of the following steps : \2 .
pass to the frame rotating with `` frequency '' @xmath60 .
we denote the matrix of corresponding coordinate transformation by @xmath61 . the effective `` magnetic field '' in the rotating @xmath62 -frame has the form : @xmath63 \3 . perform the rotation around the @xmath29-axis of the @xmath62 -frame by an angle : @xmath64 we denote the matrix of this transformation by @xmath65 . in this @xmath66
-frame the effective `` magnetic field '' has the components : @xmath67 where @xmath68 the solution of bloch equation in @xmath66 -frame represent the rotation around @xmath69-axis with `` frequency '' @xmath70 .
the corresponding matrix has the form : @xmath71 i.e. , if @xmath72 is the quasispin of light at @xmath73 in @xmath66 -frame , then for the arbitrary @xmath42 , quasispin in @xmath66 -frame @xmath74 can be written as : @xmath75 . to obtain the final result
one should pass back to the initial frame .
consequently , the quasispin dynamics can be calculated as : @xmath76 the explicit expressions for the above matrices are : @xmath77 to calculate the quasispin on the exit of the medium one should set : @xmath79 .
remind now that we make our calculations for the polarization of the pulse @xmath26 .
this pulse goes out of the medium at @xmath80 .
taking into account the expression ( 12 ) we obtain that for calculation of the _ temporal _ dynamics of the quasispin on the exit of the medium one should set @xmath81 in formula ( 13 ) .
let us consider the simple example with the incident optical wave having the eigen polarization of linear birefringent medium . in this case
the initial quasispin on the entrance of the medium is directed along @xmath69-axis for an arbitrary pulse of the optical wave : @xmath85\cr \cos^2\theta\cos(\tilde{\omega}d)+\sin^2\theta}\right)\ ] ] note that @xmath86 has no temporal dependence .
it is seen that the temporal behaviour of @xmath87 represent the rotation of vector @xmath86 around @xmath69-axis with frequency @xmath30 of the signal wave .
when @xmath88 , @xmath89 the polarization state of optical wave displays maximum change : the quasispin vector runs over the cone with an angle @xmath90 what corresponds to the twice smaller oscillations of the polarization plane @xmath91 , i.e. to the faraday rotation of the optical wave unsuppressed by the linear birefringence .
the direct calculation shows that the amplitude @xmath92 of the faraday rotation of the optical wave is : where @xmath94\ ] ] @xmath95 one can pass the above resonance not by changing frequency @xmath30 but by changing @xmath45 ( 12 ) .
the dependence of @xmath92 on @xmath45 ( fig.2 ) exhibit the resonant behaviour .
the `` sharpness '' of this resonance is @xmath96 .
|
present paper effect resonant behaviour faraday rotation light medium linear birefringence universality resonant frequency magnetic field resonances medium defined by linear birefringence transparency spectral region describe essence effect remind statements polarization optics optical wave electrical displacement vector runs over ellipse perpendicular wave propagation parameters ellipse define wave polarization ellipse squeezed line linear circle circular polarization relative amplitudes phases projections fixed coordinate system define polarization state projections described jones vector @xmath0 @xmath1 @xmath2 amplitudes @xmath3 phase projections arbitrary direction anisotropic medium specify two linearly independent monochromatic waves normal modes propagating no change polarization state normal modes jones vectors @xmath4 eigen vectors inverse permittivity tensor plane perpendicular wave propagation direction eigen values define normal modes refractive indexes @xmath5@xcite consider transparent anisotropic medium matrix tensor hermitian symmetric part linear birefringence antisymmetric circular birefringence problems polarization optics not refractive indexes normal modes difference introduce tensor @xmath6 values reproduce deviations refractive indexes normal modes from main value denote by @xmath7 vectors reproduce jones vectors normal modes symmetric part linear birefringence antisymmetric circular birefringence coordinate system real part diagonal written form : @xmath8 @xmath9 @xmath10 spin - matrices @xmath11 call coefficient @xmath12 _ linear birefringence _ coefficient @xmath13 _ gyration_ arbitrary polarized incident light reproduced as linear combination normal modes propagation velocities differ polarization state periodical changes along propagation direction spatial period @xmath14 polarization beats length calculated as @xmath15 @xmath16 vacuum wavelength incident light media linear birefringence normal modes linearly polarized two orthogonal directions polarization beats represent periodical changes ellipticity circular birefringence isotropic medium normal modes circularly polarized waves different direction rotation polarized polarization beats represent rotation polarization plane consider @xmath17 for actual media ready pass to effect linearly polarized wave falls on medium @xmath18 with linear birefringence @xmath12 wave has medium through no change polarization switch on weak longitudinal magnetic field to gyration @xmath19 if linear birefringence zero polarization plane angle @xmath20 if @xmath19 weak gyration and @xmath21 medium length greater than polarization beats spatial period rotation suppressed @xcite suppression can removed magnetic field varying spatial period @xmath22 equal to polarization beats gyration function of coordinate : @xmath23 under conditions polarization plane on exit rotate by angle @xmath20 equal zero linear birefringence effect compensation of linear birefringence similar compensation magnetic field constant in space varying in time incident plane wave as sequence of pulses spatial periods of incident wave @xmath16 depicted on fig.1 bold line temporal dependence of coordinate @xmath24 of arbitrary pulse : @xmath25 @xmath26 is pulse coordinate at @xmath27 @xmath7 main value refractive index medium @xmath28 speed of light pulse identified by value @xmath26 pulse coordinate @xmath26 at @xmath27 pulse @xmath26 ''affect medium by time - dependent magnetic field along @xmath29- axis denote by @xmath30 frequency field to gyration written form : @xmath31 gyration depends on @xmath29 express @xmath32 from ( 5 ) substitute in ( 6 ) : @xmath33 changing frequency magnetic field @xmath30 spatial period gyration ( 7 ) to equal to polarization beats related to linear birefringence medium to relationship for frequency : @xmath34 @xmath35 @xmath36 is vacuum wavelength of electromagnetic wave frequency @xmath30 linear birefringence compensated for pulse @xmath26 unsuppressed faraday rotation @xmath20 effect resonant with deviation frequency magnetic field from value defined by ( 8) quantitative calculation resonance accompanied by oscillations of polarization plane with frequency @xmath30 calculation of effect perform calculations quasispin _ method polarization optics dynamics quantum two - level system polarization light anisotropic medium essence of methodpolarization state described by vector quasispin @xmath37 components @xmath38 expressed via pauli spin matrices @xmath39 jones vector propagating polarization direction quasispin @xmath37 depends on @xmath29-coordinate dependence described by bloch equation dimensionless coordinate @xmath42 time expressed as @xmath43 magnetic field vector expressed via linear birefringence gyration @xmath44 quantities @xmath13 @xmath12 depend on @xmath42 gyration sinusoidal dependence on @xmath42 dependence removed by passing to rotating frame in bloch equation ( 10)@xcite monochromatic beam vacuum wavelength @xmath16 propagating in medium with linear birefringence @xmath12 average refractive index @xmath7 fig.1 interested in dynamics polarization wave _ optical _ wave other monochromatic wave signal wave falling at medium at angle @xmath45 magnetic field has @xmath29- component @xmath46 magnetic field signal to gyration polarization optical wave increment @xmath36 vacuum wavelength signal wave @xmath47 refractive index @xmath18 medium lengththickness medium smaller than @xmath36 magnetic field signal wave homogeneous setup corresponds to planar waveguide optical wave propagating irradiated signal wave angle @xmath45 to plane distribution of gyration medium signal wave written as @xmath48\ ] ] @xmath49 @xmath50 verdet constant medium @xmath51 amplitude magnetic field @xmath30 frequency of field oscillations consider distribution pulse @xmath26 optical wave express @xmath32 from ( 5 ) substitute in ( 11 ) dimensionless coordinate pulse @xmath26 spatial distribution gyration denote optical wave quasispin vector on entrance medium by @xmath54 temporal behaviour quasispin pulse @xmath26 calculated from bloch equation ( 10 ) with effective magnetic field @xmath55 initial condition @xmath56 equation ( 10 ) solved within interval @xmath57 $ ] solution pass to frame rotating with frequency @xmath60 denote matrix of coordinate transformation by @xmath61 effective magnetic field '' in rotating @xmath62 -frame form : @xmath63 \3rotation around @xmath29-axis @xmath62 -frame angle : @xmath64 matrix transformation by @xmath65 @xmath66 -frame magnetic field components @xmath67 @xmath68 solution bloch equation rotation around @xmath69-axis frequency @xmath70 matrix form @xmath71 @xmath72 quasispin light at @xmath73 @xmath66 -frame arbitrary @xmath42 quasispin @xmath74 @xmath75 final result pass back to initial frame quasispin dynamics calculated as @xmath76 expressions matrices @xmath77 calculate quasispin exit medium set @xmath79 calculations polarization pulse @xmath26 pulse out medium at @xmath80 calculation temporal dynamics quasispin exit set @xmath81 formula ( 13 ) example incident optical wave eigen polarization linear medium initial quasispin entrance directed along @xmath69-axis arbitrary pulse optical wave : @xmath85\cr \cos^2\theta\cos(\tilde{\omega}d)+\sin^2\theta}\right) @xmath86 no temporal dependencetemporal behaviour @xmath87 rotation vector @xmath86 around @xmath69-axis frequency signal wave @xmath88 @xmath89 polarization state optical wave maximum change quasispin vector runs over cone angle @xmath90 smaller oscillations polarization plane @xmath91 faraday rotation optical wave unsuppressed linear birefringence calculation amplitude @xmath92 faraday rotation @xmath94 @xmath95 resonance changing frequency changing @xmath45 dependence @xmath92 on @xmath45 fig.2 resonant behaviour sharpness resonance @xmath96
| 0.499777
| 3,157
| 1,672
|
, Saving $0.1 in GPT-4.
|
18,467
|
in this paper we present an approach for the generalization of adsorption of light gases in crystalline porous materials .
our approach allows the determination of gas uptake considering only geometrical constrains of the porous framework and interaction energy of the guest molecule with the framework .
the derivation of this general equation for the uptake of any crystalline porous framework is presented .
based on this theory , we calculated optimal values for the adsorption enthalpy at different temperatures and pressures .
we also present the use of this theory to determine the optimal linker length for a topological equivalent framework series .
we validate this theoretical approach by comparing the predicted uptake to experimental values for mof-5 , mof-14 , mof-177 , mof-200 , snu-77h and li - metalated mof-177 and mof-200 .
we obtained the universal equation for optimal linker length given a topology of a porous framework .
this work applies the general equation to metal - organic frameworks ( mofs ) but it can be used for other crystalline materials such as covalent - organic frameworks ( cofs ) and zeolitic imidazolate frameworks ( zifs ) .
these results will serve to design new porous materials that exhibit high net storage capacities , in particular for molecular hydrogen ( @xmath0 ) .
|
we present an approach that allows the determination of gas uptake in crystalline porous materials considering only geometrical constraints for the crystal and its interaction energy with the guest molecule .
the derivation of this general equation for the uptake of crystalline porous frameworks was validated with experimentally available data for metal - organic frameworks ( mof ) .
we applied this general equation to calculate the net storage capacity of molecular hydrogen storage ( h@xmath1 ) in mofs . in this work
we propose the ideal interaction energy and the ideal linker length for metal - organic frameworks ( mof ) given a topology ( or crystalline lattice figure [ fig : topology ] ) , however , in principle , this approach can be extended to any crystalline porous material .
currently there are not simple guidelines for the optimal design of the linker length and the storage capacity of porous frameworks .
these results will serve to design materials that maximize net gas storage capacity .
this paper is organized into several sections . in subsections
iia and iib , we derive the general equation for adsorption in any framework , given its geometric properties ( i.e. void volume , pore volume , surface area and pore size ) and enthalpy of adsorption with the guest molecule ( i.e. interaction energy with the surface ) .
we also describe an approach to find the effective number of layers in the more realistic restricted multilayer theory ( rmt ) .
frameworks with several types of topologies ( cells ) are also considered . in subsection iiia
, we compare our predictions of adsorption isotherm to experimental measurements for system temperatures @xmath2 k. in subsection iiib we derive the optimal enthalpy of adsorption and linker - length / void - volume for the highest net gas storage capacity between atmospheric pressure and the maximum pressure a tank can achieve .
the derivation of the general formula for the adsorption process is solely restricted to the topology of the framework .
we define the topology of a framework as the connectivity in all directions to make a periodic structure .
a simple example is shown in figure [ fig : topology ] .
this topology is going to determine the number of absorption sites available for our system .
the first set of theories available to estimate the adsorption properties of surfaces were the langmuir theory , published in 1916 , followed by the brunauer - emmett - teller ( bet ) theory , published in 1938 @xcite .
however these two theories , though very useful , have limited application to crystalline porous materials .
the langmuir theory assumes that only one layer of sorbate molecules can be formed on the surface , whereas the bet theory assumes that an infinite number of layers can exist .
both assumption are unphysical for a crystalline porous material , which can usually host more than one layer , but not an infinite number .
thus , a more appropriate approach is needed to treat the case of adsorption in crystalline porous materials , which we call restricted multilayer theory ( rmt ) in this work .
the derivation of the langmuir and bet theories can be found in the suplementary information ( section [ sup_info : sorptionderivation ] ) or elsewhere @xcite .
we will show below that the equation for a restricted number of multilayers is a more general equation that gives the langmuir and the bet theory as solutions .
[ [ restricted - multilayer - theory - rmt ] ] restricted multilayer theory ( rmt ) + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + for the general system presented in figure [ fig : multi ] we posit that there are @xmath3 equivalent sites , and @xmath4 molecules can be distributed in them .
we assume that there are only three types of interactions in the system , which are + 1 .
those between the surface ( @xmath5 = 0 ) and first layer molecules ( @xmath5 = 1 ) , with partition function @xmath6 + 2 .
those between first layer molecules ( @xmath5 = 1 ) and second layer molecules ( @xmath5 = 2 ) , with partition function @xmath7 , and + 3 . those between @xmath8 ( @xmath5 @xmath9 1 ) layer molecules and @xmath10 layer molecules , with partition function @xmath11 . +
this creates a columnar structure of bound molecules .
additionally , we assume that there are no interactions between molecules of neighboring columns and the partition function @xmath7 is equal to @xmath11 .
given the total number of molecules , @xmath4 , then @xmath12 of them are in the first layer and @xmath13 are in higher layers .
from these set of assumptions , we can derive the adsorption behavior for a restricted number of multilayers ( @xmath5 layers ) . using the grand canonical partition function
, we have @xmath14 \ ; q(n , b , t ) \nonumber \\ \!\!\!\!\ ! & = & \!\!\!\!\ ! \sum_{n_1=0}^{b } \sum_{n_2=0}^{n_1 } \sum_{n_3=0}^{n_2 } \ldots \sum_{n_n=0}^{n_{n-1 } } \frac{b!}{(b - n_1)!n_1 ! } \nonumber\\ & & \!\!\!\!\
! \times \frac{n_1!}{(n_1-n_2)!n_2 ! }
\ldots \nonumber\\ & & \times \frac{n_{n-1}!(cx)^{n_1}x^{n_2+\ldots+n_n}}{(n_{n-1}-n_n)!n_n!}. \nonumber \end{aligned}\ ] ] in the preceding equations , @xmath15 is chemical potential , @xmath16 is temperature and @xmath17 is boltzmann constant . summing in turn over @xmath18 , @xmath19 , @xmath20 , @xmath12
we find @xmath21^{b } \nonumber \\ & = & \left[1+cx\left(\frac{1-x^n}{1-x}\right)\right]^{b } \nonumber \end{aligned}\ ] ] where we have defined , @xmath22 using this equation in conjunction with the identity , @xmath23 we find the equation for the _ adsorption of a restricted number of multilayers _ : @xmath24}{(1-x)(1-x+cx - cx^{n+1})}.\ ] ] this equation is more general because the substitution of @xmath25 or @xmath26 gives the langmuir and bet equations , respectively ( sup .
[ sup_info : sorptionderivation ] ) .
similar results were obtained earlier @xcite , however in these treatments , the topology of the framework , along with other geometrical constraints and the specific gas properties were not taken into account .
we do this in the following section . here
we derive a general equation for the uptake , @xmath27 , defined as the total mass of gas that can be incorporated per unit volume of porous framework ( in units of g / l ) .
this equation applies for any framework based on the rmt of adsorption and the geometric constraints of the framework .
given that the molar mass of hydrogen @xmath28
g / mol , the uptake per @xmath29 equals @xmath30 where @xmath31 is the volume of a pore , @xmath3 is the number of sites per pore , @xmath4 is a number of adsorbed hydrogen molecules per 1 l of adsorbent and @xmath32 is the avogadro constant .
the factor @xmath33 corresponds to the fraction of free ( or void ) volume for the framework , i.e. void volume @xmath34 .
@xmath35 is the effective number of layers ( supl .
section [ section : derivationofeffectivelayers ] ) .
we also consider @xmath36 as the effective diameter of the absorbed molecule which equals @xmath37 for hydrogen ( see sup . info . ) . using this model it is possible to estimate the number of adsorption sites @xmath3 as @xmath38 where @xmath39 is a surface area of one cell . strictly speaking we should also consider edge effects when one hydrogen molecule occupies two or more different sites .
these considerations will be accounted for elsewhere .
however , we should note that edge effects are significant only for nets for which the linker length is nearly the same as the diameter of guest gas molecule .
most known synthesized frameworks have linker lengths that are significantly larger than the hydrogen molecule diameter , thus the edge effects should be negligible for current synthesized materials . finally , we obtain the equation for uptake , which can be applied to any type of framework with only one type of conventional unit cell .
@xmath40 @xmath41 and @xmath31 in equation are pore surface area and pore volume , respectively .
the occupancy ratio @xmath42 is defined using the rmt by assuming that @xmath6 and @xmath11 are linked with enthalpies of adsorption on the first @xmath43 layer and higher layers @xmath44 as follows ( for more details see supp .
info vi b ) .
@xmath45 let us derive a more general equation for frameworks which have @xmath46 types of the conventional unit cells with volumes and surface areas @xmath47 and @xmath48 , respectively .
we also introduce factors @xmath49 for the fraction of volume occupied by every type of the cell . @xmath50 applying equation to every type of cell separately , we get the total uptake @xmath51 this equation is very general .
in fact , it can be used for the challenging problem of predicting the uptake of multivariate metal - organic frameworks ( mtv - mofs ) where the pore volume changes due to the different functionalities of its linkers @xcite , thus generating a supercell of different types of cells where the uptake is not the average , but a more complex relationship .
the application of this equation to the different mtv - mofs is beyond the scope of the current work .
in order to validate our results , we compared our predictions to experimental data for different mofs at @xmath53 k. we took 6 reported frameworks , namely mof-5 , mof-177 , mof-14 , snu-77h and mof-200 for this comparison .
data over geometric properties and adsorption enthalpy was taken from published data .
we used the restricted multilayer adsorption equation eq .
for the calculations .
we present the results we obtained for these framework in table [ tab : final_tab ] .
the agreement between experimental and theoretical uptake is within 4 % at this temperature . in figure
[ fig : init_isotherm_mof_5_177 ] , we also compared the experimental and theoretical full isotherm at @xmath53 k for mof-5 and mof-177 .
the agreement is fairly good , however there are some discrepancies in the pressure range of 5 - 30 bar .
this can be explained by the slight decrease of adsorption enthalpy reported in @xcite , thus suggesting that an effective @xmath54 should be used rather that the one at low coverage as reported in experiments ( see sup .
[ supinfo : comparisontoexperiments ] ) .
we also compare our theory with grand canonical monte carlo ( gcmc ) simulations for li - metalated frameworks .
han et al . in @xcite
considered li - metalated frameworks with high enthalpy of adsorption at room temperature .
this enthalpy decreases significantly with increasing uptake .
we took this change in enthalpy into account and defined an effective enthalpy ( see suppl .
[ supinfo : comparisontoexperiments ] ) for every considered pressure .
we made an assumption that introducing lithium does not significantly influence the geometric properties of the framework , as suggested in @xcite , and therefore we used the same geometric parameters of the non - metalated frameworks .
the theoretical results for the three different temperatures @xmath55 k , @xmath56 k and @xmath57 k were compared with simulations ( see figure [ fig : isotherms_comparison_high_temp ] ) .
the theoretical predictions are in good agreement with the gcmc results in the entire pressure range .
the average absolute deviation for two compounds are reported in table [ tab : li_comparison ] ; this error does not exceed 2.2 % .
.experimental and theoretical _ excess _
uptake for different mofs given their geometrical properties .
@xmath54 is given as the enthalpy of adsorption , @xmath58 is the characteristic length of the cell in a framework , and @xmath59 is the surface area . [
cols="^,^,^,^,^,^,^,^,^,^,^",options="header " , ]
|
present approach determination gas uptake in crystalline porous materials considering geometrical constraints crystal interaction energy with guest molecule derivation equation for uptake frameworks validated with data metal - organic frameworks applied to calculate net storage capacity molecular hydrogen storage in mofs propose ideal interaction energy linker length for metal - organic frameworks given topology approach can extended to any crystalline porous material guidelines for optimal design linker length storage capacity porous frameworks results design materials net gas storage capacity paper organized into sections subsections iia iib derive general equation for adsorption in framework given geometric properties void volume pore volume enthalpy adsorption with guest molecule describe approach effective number of layers in restricted multilayer theory frameworks topologies considered subsection iiia compare predictions adsorption isotherm to experimental measurements for system temperatures subsection iiib derive optimal enthalpy of adsorption linker - length / void - volume for highest net gas storage capacity between atmospheric pressure maximum pressure tank derivation formula adsorption restricted to topology framework topology as connectivity directions periodic structureexample shown in figure [ topology ] topology absorption sites for our system first theories adsorption properties were langmuir theory published 1916 brunauer - emmett - teller bet theory 1938 these two theories useful limited application to crystalline porous materials langmuir theory assumes one layer of sorbate molecules on surface bet theory assumes infinite layers both unphysical for crystalline porous material host more than one layer not infinite more appropriate approach needed adsorption in restricted multilayer theory ( rmt ) derivation of langmuir and bet theories found in suplementary information ( section sorptionderivation equation for restricted number of multilayers is general equation gives langmuir and bet theory as solutions restricted - multilayer - theory - rmt ] theory for general system in figure posit @xmath3 equivalent sites and @xmath4 molecules distributed in them assume three types of interactions in system between surface ( @xmath5 = 0 ) and first layer molecules ( @xmath5 = 1 ) with partition function @xmath6 + 2 .between first @xmath5 = 1 second layer @xmath5 = 2 ) partition function @xmath7 + 3 between @xmath8 @xmath9 1 @xmath10 partition function @xmath11 creates columnar structure molecules no interactions between molecules neighboring columns partition function @xmath7 equal to @xmath11 total number molecules @xmath4 @xmath12 first layer @xmath13 higher layers derive adsorption behavior restricted number multilayers ( @xmath5 layers ) canonical partition function @xmath14 q(n b t ) \nonumber \\\sum_{n_1=0}^{b{n_2=0}^{n_1{n_3=0}^{n_2{n_n=0}^{n_{n-1 }{b{(b - n_1)!n_1{n_1{(n_1-n_2)!n_2{n_{n-1^{n_1}x^{n_2++n_n}}{(n_{n-1}-n_n)!n_n\nonumber\end{aligned} preceding equations @xmath15 chemical potential @xmath16 temperature boltzmann constant summing @xmath18 find @xmath21^{b } \nonumber = \left[1+cx\left(\frac{1-x^n}{1-x}\right)]^{b }\nonumber\end{aligned} defined @xmath22 equation identity @xmath23 equation adsorption restricted number multilayers @xmath24}{(1-x)(1-x+cx - cx^{n+1})} equation general substitution of @xmath25 @xmath26 gives langmuir bet equations_info sorptionderivation similar results obtained earlier @xcite topology framework geometrical constraints specific gas properties not following section derive general equation for uptake @xmath27 total mass of gas per unit volume porous framework units g / l ) equation applies any framework based adsorption geometric constraints frameworkmolar mass hydrogen @xmath28 g / mol uptake per @xmath29 equals @xmath30 @xmath31 volume pore @xmath3 number sites per pore @xmath4 adsorbed hydrogen molecules per 1 l adsorbent @xmath32 avogadro constant factor @xmath33 corresponds free void volume framework void volume @xmath34 @xmath35 effective number of layers derivationofeffectivelayers @xmath36 effective diameter absorbed molecule equals @xmath37 for hydrogen estimate adsorption sites @xmath3 as @xmath38 @xmath39 surface area of one cell edge effects when hydrogen molecule occupies two sites edge effects significant for nets linker length same as diameter guest gas molecule synthesized frameworks have linker lengths larger than hydrogen molecule diameter edge effects negligible for materials equation for uptake applied to framework one conventional unit cell @xmath40 @xmath41 @xmath31 are pore surface area volume occupancy ratio @xmath42 defined @xmath6 and @xmath11 linked with enthalpies adsorption on first @xmath43 layer higher layers @xmath44@xmath45 general equation for frameworks @xmath46 types conventional unit cells volumes surface areas @xmath47 @xmath48 introduce factors @xmath49 for fraction volume occupied every cell @xmath50 equation every cell total uptake @xmath51 equation general used for predicting uptake of multivariate metal - organic frameworks mtv - mofs ) pore volume changes functionalities linkers generating supercell cells uptake not average complex relationship application equation to mtv - mofs beyond scope current work compared predictions to experimental data for mofs at @xmath53 k 6 frameworks mof-5 mof-177 mof-14 snu-77h mof-200 data geometric properties adsorption enthalpy from published data used restricted multilayer adsorption equation for calculations present results in table agreement between experimental theoretical uptake within 4 % at temperature figure_mof_5_177 compared experimental theoretical full isotherm at @xmath53 k for mof-5 mof-177 agreement good discrepancies in pressure range 5 - 30 bar slight decrease of adsorption enthalpy @xcite effective @xmath54 used low coveragesupinfo comparisontoexperiments compare theory with carlo gcmc simulations for li - metalated frameworks han et al @xcite considered li - metalated frameworks with high enthalpy adsorption at room temperature enthalpy decreases with increasing uptake defined effective enthalpy for every pressure assumption introducing lithium influence geometric properties framework used same geometric parameters of non - metalated frameworks theoretical results for three temperatures @xmath55 k k compared with simulations figure isotherms_comparison_high_temp theoretical predictions agreement with gcmc results in entire pressure range average absolute deviation for two compounds reported in table error exceed 2.2 % .experimental theoretical excess uptake for different mofs geometrical properties @xmath54 enthalpy of adsorption @xmath58 characteristic length of cell @xmath59 surface area
| 0.438328
| 2,814
| 1,444
|
, Saving $0.1 in GPT-4.
|
18,469
|
with the new viscous hydrodynamic + hadron cascade hybrid code vishnu , a rather precise ( @xmath0 ) extraction of the qgp shear viscosity @xmath1 from heavy - ion elliptic flow data is possible _ if _ the initial eccentricity of the collision fireball is known with @xmath2 accuracy . at this point ,
eccentricities from initial state models differ by up to 20% , leading to an @xmath3 uncertainty for @xmath1 .
it is shown that a simultaneous comparison of elliptic and triangular flow , @xmath4 and @xmath5 , puts strong constraints on initial state models and can largely eliminate the present uncertainty in @xmath1 .
the variation of the differential elliptic flow @xmath6 for identified hadrons between rhic and lhc energies provides additional tests of the evolution model .
* prologue how to measure @xmath7 : * hydrodynamics converts the initial spatial deformation of the fireball created in relativistic heavy - ion collisions into final state momentum anisotropies .
viscosity degrades the conversion efficiency @xmath8 of the fluid ; for given initial fireball ellipticity @xmath9 , the viscous suppression of the dynamically generated total momentum anisotropy @xmath10 is monotonically related to the specific shear viscosity @xmath11 .
the observable most directly related to @xmath10 is the total charged hadron elliptic flow @xmath12 @xcite .
its distribution in @xmath13 depends on the chemical composition and @xmath13-spectra of the various hadron species ; the latter evolve in the hadronic stage due to continuously increasing radial flow ( and so does @xmath6 ) , even if ( as expected at top lhc energy @xcite ) @xmath10 fully saturates in the qgp phase .
when ( as happens at rhic energies ) @xmath10 does not reach saturation before hadronization , dissipative hadronic dynamics @xcite affects not only the distribution of @xmath10 over hadron species and @xmath13 , but even the final value of @xmath10 itself , and thus of @xmath12 from which we want to extract @xmath11 . to isolate the qgp viscosity @xmath1 we therefore need a hybrid code that couples viscous hydrodynamics of the qgp to a realistic model of the late hadronic stage , such as urqmd @xcite , that describes its dynamics microscopically .
vishnu @xcite is such a code . * extraction of @xmath7 from 200@xmath14gev au+au collisions at rhic : * the left panel in fig .
[ f1 ] shows that such an approach yields a universal dependence of the ellipticity - scaled total charged hadron elliptic flow , @xmath15 , on the charged hadron multiplicity density per overlap area , @xmath16 , that depends only on @xmath1 but not on the details of the initial state model that provides @xmath9 and @xmath17 @xcite .
pre - equilibrium flow and bulk viscous effects on these curves are small @xcite . the qgp viscosity can be extracted from experimental @xmath12 data by comparing them with these universal curves .
the right panels of fig .
[ f1 ] show this for mc - glauber and mc - kln initial state models @xcite . in both cases the slope of the data @xcite is correctly reproduced ( not true for ideal nor viscous hydrodynamics with constant @xmath11 ) . due to the @xmath18 larger ellipticity of the mc - kln fireballs ,
the magnitude of @xmath19 differs between the two models .
consequently , the value of @xmath1 extracted from this comparison changes by more than a factor 2 between them .
relative to the initial fireball ellipticity all other model uncertainties are negligible . without constraining @xmath9
more precisely , @xmath1 can not be determined to better than a factor 2 from elliptic flow data alone , irrespective of any other model improvements . taking the mc - glauber and mc - kln models to represent a reasonable range of initial ellipticities , fig .
[ f1 ] gives @xmath20 for temperatures @xmath21 probed at rhic .
ebe-cmp-pion-proton-kaon-glauber.eps ebe-cmp-pion-proton-kaon-cgc.eps vishnu with @xmath22 for mc - glauber and @xmath23 for mc - kln provides an excellent description of all aspects of soft ( @xmath24gev ) hadron production ( @xmath13-spectra and differential @xmath6 for all charged hadrons together as well as for individual identified species ) in 200@xmath25gev au+au collisions at all but the most peripheral collision centralities @xcite .
such a level of theoretical control is unprecedented .
* event - by - event hydrodynamics of fluctuating fireballs : * in fig .
[ f1 ] we evolved a smooth averaged initial profile ( `` single - shot hydrodynamics '' ) .
this overestimates the conversion efficiency @xmath26 @xcite .
fig .
[ f2 ] shows that event - by - event ideal fluid dynamical evolution of fluctuating fireballs reduces @xmath26 by a few percent @xcite .
the effect is only @xmath27 for pions
but larger for heavier hadrons .
we expect it to be less in viscous hydrodynamics which dynamically dampens large initial fluctuations . a reduced conversion efficiency @xmath26 from event - by - event evolution will reduce the value of @xmath1 extracted from @xmath12 ; based on what we see in ideal fluid dynamics , the downward shift for @xmath1 will at most be of order 0.02 - 0.03 . * predictions for spectra and flow at the lhc : * the successful comprehensive fit of spectra and elliptic flow at rhic @xcite allows for tightly constrained lhc predictions . fig .
[ f3 ] shows such predictions for both pure viscous hydrodynamics vish2 + 1 @xcite and vishnu @xcite .
inte-v2.eps a straightforward extrapolation with fixed @xmath1 overpredicts the lhc @xmath12 values by 10 - 15% ; a slight increase of @xmath1 from 0.16 to 0.20 ( for mc - kln ) gives better agreement with the alice data @xcite .
however , at lhc energies @xmath4 becomes sensitive to details of the initial shear stress profile @xcite , and no firm conclusion can be drawn yet whether the qgp turns more viscous ( i.e. less strongly coupled ) at higher temperatures .
the right panel shows that , at fixed @xmath28gev , @xmath6 increases from rhic to lhc for pions but decreases for all heavier hadrons .
the similarity at rhic and lhc of @xmath29 for the sum of all charged hadrons thus appears accidental . * constraining initial state models by simultaneous measurement of @xmath30 and @xmath31 : * while the ellipticities @xmath32 differ by about 20% between mc - kln and mc - glauber models , their triangularities @xmath33
( which are entirely due to event - by - event fluctuations ) are almost identical @xcite .
this suggests to use triangular flow @xmath5 ( which is almost entirely @xcite driven by @xmath33 ) to obtain a model - independent measurement of @xmath1 .
fig .
[ f4 ] shows @xmath34 and @xmath35 for deformed gaussian fireballs with average eccentricities @xmath32 and @xmath33 ( with random relative angle ) taken from the fluctuating glauber ( `` mc - glauber - like '' ) and kln ( `` mc - kln - like '' ) models .
it demonstrates that a given set of flow data requires shear viscosities that differ by a factor 2 to reproduce @xmath6 and but the same shear viscosities in both models to reproduce @xmath36 .
a good fit by both models to @xmath6 produces dramatically different curves for @xmath36 , and _
vice versa_. the figure illustrates the strong discriminating power for such simultaneous studies and gives hope for a much more precise extraction of @xmath1 in the near future .
0.8 * acknowledgments : * this work was supported by the u.s .
department of energy under grants no .
de - ac02 - 05ch11231 , de - fg02 - 05er41367 , de - sc0004286 , and ( within the framework of the jet collaboration ) de - sc0004104 ; by the japan society for the promotion of science through grant - in - aid for scientific research no . 22740151 ; by the extreme matter institute ( emmi ) ; and by bmbf under project no .
06fy9092 .
we gratefully acknowledge extensive computing resources provided to us by the ohio supercomputer center . c. shen thanks the _ quark matter 2011 _ organizers for support .
|
99 heinz u 2005 _ preprint _ nucl - th/0512051 hirano t , heinz u , kharzeev d , lacey r and nara y 2007 _ j. phys .
_ g * 34 * s879 .
hirano t , heinz u , kharzeev d , lacey r and nara y 2006 _ phys .
lett . _ * b636 * 299 bass s a _
_ 1998 _ prog . part .
phys . _ * 41 * 255 song h , bass s a and heinz u 2011 _ phys .
_ c * 83 * 024912 song h , bass s a , heinz u , hirano t and shen c 2011 _ phys .
lett . _ * 106 * 192301 ollitrault j y , poskanzer a m and voloshin s a 2009 _ phys .
_ c * 80 * 014904 song h , bass s a , heinz u , hirano t and shen c 2011 _ phys .
_ c * 83 * 054910 andrade r _
_ 2006 _ phys .
lett . _ * 97 * 202302 ; andrade r _
_ 2008 _ ibid . _ * 101 * 112301 qiu z and heinz u 2011 _ preprint 1104.0650 _ shen c , heinz u , huovinen p and song h 2011 _ preprint 1105.3226 _ song h , bass s a and heinz u 2011 _ phys .
_ c * 83 * 054912 aamodt k _ et al .
_ [ alice collaboration ] 2010 _ phys
. rev .
lett . _ * 105 * 252302
|
heinz u 2005 preprint hirano heinz kharzeev lacey nara y 2007 phys 34 s879 hirano heinz kharzeev lacey nara 2006 phys b636 299 bass s 1998 phys 41 * 255 song h bass s heinz u 2011 83 * 024912 heinz hirano shen c 2011 106 * 192301 ollitrault j poskanzer voloshin s 2009 80 * 014904 song h bass heinz u hirano shen c 2011 83 054910 andrade r 2006 97 * 202302 andrade r 2008 101 * 112301 qiu z heinz u 2011 preprint 1104.0650 shen c heinz u huovinen p song h 2011 preprint 1105.3226 song h bass s heinz u 2011 83 * 054912 aamodt k alice collaboration 2010 phys . 105 * 252302
| 0.074482
| 411
| 234
|
, Saving $0.0 in GPT-4.
|
18,470
|
we compare n - body simulations performed in mond with analogs in newtonian gravity with dark matter ( dm ) . we have developed a code which solves the poisson equation in both gravity models .
it is a grid solver using adaptive mesh refinement techniques , allowing us to study isolated galaxies as well as interacting galaxies .
galaxies in mond are found to form bars faster and stronger than in the dm model . in newton dynamics , it is difficult to reproduce the observed high frequency of strong bars , while mond appears to fit better the observations .
galaxy interactions and mergers , such as the antennae , are also simulated with newton and mond dynamics . in the latter , dynamical friction is much weaker , and merging time - scales are longer .
the formation of tidal dwarf galaxies in tidal tails are also compared in mond and newton+dm models .
|
to approach the missing mass problem , two ways are nowadays seriously considered .
the first makes the hypothesis that newtonian gravity or einstein s general relativity is the good theory of gravitation , which leads to introduce dark matter : it is the @xmath0cdm model .
the second consists in considering only the existence of baryonic matter , implying a breaking of the usual gravitation law , which is called mond ( modified newtonian dynamics ) . in highly symmetric geometries ( spherical for example ) ,
the modification of the gravity can be written like this ( milgrom , 1983 ) : @xmath1 where @xmath2 is the critical acceleration of mond , and @xmath3 an interpolating function between the mondian and newtonian regimes , which has the following properties : @xmath4 through this formulation of the gravitation , mond has the ability to fit a large number of rotation curves , fixing the value of @xmath5 and choosing the same @xmath3-function whatever the galaxy ( sanders & mcgaugh , 2002 ) . we propose to test mond on galaxy dynamics using n - body simulations . to do that we had to develop a solver for the mond poisson equation ( bekenstein & milgrom , 1984 ) : @xmath6=4\pi g \rho.\ ] ]
it is a grid solver using multigrid techniques .
the code is described in tiret & combes ( 2007 ) , hereafter tc07 .
each simulation is run in the mond model and its analogue in newtonian gravity with dm .
in the dm model , the galaxy disc feels the gravitational potential from the disc itself , plus from the dark matter halo . inside the disc ,
the stars are dominated by ordered motions , in nearly circular rotation , thus the disc is sensitive to gravitational instabilities . on the contrary ,
the dm particles in the halo are dominated by random motions , which maintain the halo stable and spheroidal .
the contribution of the halo is then to produce a stable background potential , and hence to stabilize the galaxy disc , in reducing its self - gravity . in mond ,
the potential comes only from the disc , so that the galaxy disc is completely self - gravitating . in pure stellar simulations ( tc07 ) , we found that galaxies in mond are more unstable in the sense that they form bars stronger and faster than in the analog dm model .
new simulations have been carried out , adding a cold gas disc ( tiret & combes in prep . ) . in mond , it does not change significantly the stability of galaxies , except for late - types where the fraction of gas is about @xmath7 inside the visible radius , sufficient to destroy bars by the effect of gravity torques ( bournaud et al . ,
otherwise , the introduction of gas affects more the dm model , where bar strengths were not yet saturated .
galaxies are more unstable and form bars sooner . diagrams of bar frequency are then comparable in the mond and dm models ( fig . [ fig : bar_freq ] ) .
it is essential to test mond on scales where it has not been built for . after studying isolated galaxies ,
the next step is to apply mond on interacting galaxies .
we are interested to simulate a system like the prototypical antennae galaxies .
the observations ( hibbard et al . , 2001 ) show quite extended tidal tails .
this system has been simulated many times in newtonian gravity ( barnes , 1988 , or dubinski et al . 1996 ) where the dm halo mass and shape were constrained by the length of the tidal tails .
the question here is to know whether these extended tidal tails could also form with mond . using our code in its adaptive resolution version , we run the simulation , and show that the morphology of the antennae galaxies is well reproduced with mond ( fig .
[ fig : ant_morpho ] ) .
we compare also the kinematics of the simulated system to the observations ( tiret & combes in prep . ) . from one point ,
the two models differ radically : the dynamical friction . in the dm model
, the two galaxies quickly lose their orbital momentum which is transferred to the dark halo , the time - scale to obtain the merger is of the order of a few gigayears . in mond , the dynamical friction which tends to decrease the distance between the galaxies until the coalescence , is much weaker , in the absence of extended massive haloes .
all the orbital momentum is converted in angular momentum of the outer discs .
the time - scale of the merger could be a few gigayears if the impact parameter is about equal to the visible radius of the galaxies . otherwise , the galaxies decay without merging in a hubble time ( see also nipoti et al .
2007 ) .
we also show that tidal dwarf galaxies can be naturally formed at the tip of the tidal tails , in mond . while it requires extended dark matter halo in a dm model ( bournaud et al .
numerical simulations offer a powerful tool to test galaxy dynamics with mond . we have developed an efficient potential solver for the modified poisson equation . with this ,
the stability of galaxy discs can be studied and compared to newtonian gravity with dm .
simulation of interacting galaxies have also been performed .
we show that mond can reproduce the morphology as well as the kinematics of the antennae galaxies . at this stage , we are not able to discriminate between the two models .
but some points have to be explored , in particular the fact that mergers in mond are more difficult to obtain because of the weaker dynamical friction .
so we expect large differences in the cosmic merger history between the mond and dm model .
however it is possible that we observe the same proportion of galaxies showing signs of interaction whatever the model considered . in the dm model ,
the duration of each merger is short , but their number is high , while in mond the number of mergers is small but each lasts a longer time . a possible test is to determine observationally the number of mergers that galaxies experience during their life time , still an uncertain quantity .
barnes , j. 1988 , apj 331 , 699 bekenstein , j. , milgrom , m. , 1984 , apj , 286 , 7b bournaud , f. , combes , f. , semelin , b. , 2005 , mnras , 364 , 18 bournaud , f. , duc , p .- a . , masset , f. 2003 , a&a , 411 , 469 dubinski , j. , m. , j. c. , hernquist , l. , 1996 , apj , 462 , 576 hibbard , j. e. , van der hulst , j. m. , barnes , j. e. , rich , r. m. , 2001 , aj , 122 , 2969 milgrom , m. , 1983 , apj , 270 , 365 nipoti , c. , londrillo , p. , ciotti , l. , 2007 , mnras , 381 , 104 sanders , r. h. , mcgaugh , s. , 2002 ara&a , 40 , 263 tiret , o. , combes , f. 2007 , a&a , 464 , 517 ( tc07 )
|
approach missing mass problem two ways considered first newtonian gravity relativity good theory gravitation dark matter @xmath0cdm model second considering baryonic matter breaking gravitation law called mond ( modified newtonian dynamics ) symmetric geometries modification gravity written milgrom 1983 ) @xmath1 @xmath2 critical acceleration mond @xmath3 interpolating function between mondian newtonian regimes properties @xmath4 mond rotation curves fixing value @xmath5 choosing same @xmath3-function galaxy sanders mcgaugh 2002 test mond galaxy dynamics n - body simulations solver mond poisson equation bekenstein milgrom 1984 ) @xmath6=4\pi g \rho.\ ] grid solver multigrid techniques code described in tiret & combes ( 2007 ) tc07 simulation run mond model analogue newtonian gravity with dm galaxy disc feels gravitational potential from disc dark matter halo disc stars dominated ordered motions circular rotation disc sensitive to gravitational instabilities dm particles in halo dominated random motions maintain halo stable spheroidalcontribution halo stable background potential galaxy disc reducing self - gravity in mond potential from disc galaxy disc self - gravitating stellar simulations galaxies in mond more unstable form bars stronger faster than analog dm model new simulations adding cold gas disc in mond change stability galaxies except for late - types where fraction gas about @xmath7 inside visible radius to destroy bars by gravity torques introduction gas affects more dm model bar strengths not saturated galaxies more unstable form bars sooner diagrams bar frequency comparable in mond and dm models fig . bar_freq essential to test mond on scales not built for after studying isolated galaxies next step apply mond on interacting galaxies interested to simulate system like prototypical antennae galaxies observations show extended tidal tails system simulated in newtonian gravity dm halo mass shape constrained by length tidal tails question extended tidal tails could form with mond using our code adaptive resolution version simulation morphology of antennae galaxies well reproduced with mond ( fig . ant_morphocompare kinematics simulated system to observations two models differ dynamical friction in dm model two galaxies lose orbital momentum transferred to dark halo time - scale merger few gigayears in mond dynamical friction distance galaxies until coalescence weaker extended massive haloes orbital momentum converted in angular momentum outer discs time - scale merger few gigayears if impact parameter equal to visible radius galaxies otherwise galaxies decay without merging in hubble time nipoti et al . 2007 tidal dwarf galaxies formed at tip tidal tails in mond requires extended dark matter halo dm model numerical simulations test galaxy dynamics with mond developed efficient potential solver for modified poisson equation stability of galaxy discs studied compared to newtonian gravity with dm simulation of interacting galaxies performed mond reproduce morphology kinematics antennae galaxies not discriminate between two models mergers in mond difficult weaker dynamical friction expect large differences in cosmic merger history between mond and dm model possible same proportion of galaxies showing signs interaction modeldm model duration merger short number high mond small longer test determine mergers galaxies life time uncertain barnes j. 1988 apj 331 , 699 bekenstein milgrom 1984 apj, 286 , 7b bournaud combes semelin 2005 mnras 364 , 18 bournaud duc masset 2003 a&a , 411 , 469 dubinski j. hernquist l 1996 apj 462 , 576 hibbard van der hulst barnes rich r. m. 2001 122 , 2969 milgrom 1983 apj 270 , 365 nipoti londrillo ciotti l. 2007 mnras 381 , 104 sanders mcgaugh s. 2002 ara&a, 40 , 263 tiret combes. 2007 a&a , 464 , 517
| 0.266293
| 1,577
| 797
|
, Saving $0.0 in GPT-4.
|
18,471
|
the relationship between cosmic ray intensity decreases and solar events is still an open field of space research . in this work a complete study of solar events occurred from january 2003 to december 2005 , is considered .
this three - years time period characterized by an unexpected activity of the sun was divided into 27-day intervals starting from br 2313 ( 06.01.2003 ) to 2353 ( 21.12.2005 ) , generating diagrams of the cosmic ray intensity data recorded at the athens neutron monitor station .
this station is working at an altitude of 260 m and cut - off rigidity 8.53gv provided to the internet high - resolution data in real - time .
a mapping of all available solar and interplanetary events , such as solar flares with importance m and x , coronal mass ejections ( halo and partial ) was done .
as we are going down from the solar maximum to the declining phase of the 23rd solar cycle , a statistical overview of the corresponding relationship among these phenomena , the significant percentage of the connection of halo cmes and solar flares and the respective connection to forbush decreases on yearly and monthly basis are discussed .
the close association , as well as a probable quantitative analysis , between solar events is being denoted .
the role of extreme solar events occurred in october / november 2003 and january 2005 is also discussed .
obtained results may be useful for predictions of transient solar events and space weather forecasting .
|
as the sun is the driver of space weather , solar events such as solar flares , coronal mass ejections etc .
are close related to the forbush decreases ( fds ) recorded at the ground based neutron monitor stations @xcite .
recent studies verified this aspect @xcite .
cosmic ray measurements in athens initiated in november 2000 with a standard super 6nm-64 neutron monitor @xcite .
athens nm data are available in the on - line database at : http://cosray.phys.uoa.gr .
cme lists of the u.s . naval research laboratory ( nrl ) on the large angle and spectrometric coronagraph ( lasco ) are used .
these lists represent a subset of the final lasco dataset and can be accessed through the web at the site : http://cdaw.gsfc.nasa.gov/. data for solar flares were taken from : http://www .
+ ngdc.noaa.gov/stp/solar/ftpsolarflares.html .
on the constructed diagrams all available data , such as : time of first observation , date the event occurred and its co - ordinates are recorded ( fig .
[ papaioannou_a_fig1 ] ) . in this way
an overall statistical picture of the relation between cmes , sfs and fd is presented .
all major events as those of october - november 2003 , january 2005 , july 2005 @xcite and august - september 2005 @xcite were succesfully recorded . in most of these cases
cosmic rays revealed crusial information on the development of the events .
cane h. , 2000 , space scie .
, 93 , 55 mavromichalaki h. , papaioannou a. , petrides a. , assimakopoulos v. , sarlanis c. , souvatzoglou g. , 2005 , jimpa , 1 , 6714 mavromichalaki h. , gerontidou m. , mariatos g. , papailiou m. , papaioannou a. , plainaki c. , sarlanis c. , souvatzoglou g. , 2009 , adv .
space res . , 44 , 1237 papaioannou a. , mavromichalaki h. , erosheno e. , belov a. , oleneva v. , 2009a , an .
geophys . , 27 , 1 papaioannou a. , belov a. , mavromichalaki h.,eroshenko e. , oleneva v. , 2009b , adv .
space res . , 43 , 582
|
sun driver space weather solar events flares coronal mass ejections related forbush decreases recorded neutron monitor stations @xcite studies verified cosmic ray measurements athens initiated november 2000 super 6nm-64 neutron monitor @xcite athens nm data available - http://cosray.phys.uoa.gr cme lists u.s . naval research laboratory large angle spectrometric coronagraph used lists subset final lasco dataset accessed http://cdaw.gsfc.nasa.gov/ data solar flares from http://www ngdc.noaa.gov/stp/solar/ftpsolarflares.html constructed diagrams data time first observation date event co - ordinates recorded fig_fig1 statistical picture relation between cmes sfs fd presented major events october - november 2003 january 2005 july 2005 @xcite august - september 2005 @xcite recorded cosmic rays revealed information development events cane h. , 2000 space scie ., 93 , 55 mavromichalaki petrides assimakopoulos sarlanis souvatzoglou. 2005 jimpa 1 , 6714 plainakisarlanis c souvatzoglou g 2009 space 44 , 1237 papaioannou mavromichalaki erosheno belov oleneva v 2009a geophys 27 , 1 papaioannou belov mavromichalaki e oleneva 2009b 43, 582
| 0.127984
| 581
| 311
|
, Saving $0.0 in GPT-4.
|
18,481
|
classical simulations of noisy stabilizer circuits are often used to estimate the threshold of a quantum error - correcting code .
physical noise sources are efficiently approximated by random insertions of pauli operators . for a single qubit ,
more accurate approximations that still allow for efficient simulation can be obtained by including clifford operators and pauli operators conditional on measurement in the noise model .
we examine the feasibility of employing these expanded error approximations to obtain better threshold estimates .
we calculate the level-1 pseudothreshold for the steane [ [ 7,1,3 ] ] code for amplitude damping and dephasing along a non - clifford axis .
the expanded channels estimate the actual channel action more accurately than the pauli channels before error correction .
however , after error correction , the pauli twirling approximation yields very accurate estimates of the performance of quantum error - correcting protocols in the presence of the actual noise channel .
|
the threshold theorem of quantum error correction promises the accurate implementation of arbitrary size quantum algorithms if the underlying physical errors are below certain values .
the error thresholds depend strongly on the specific quantum error correcting code , how errors are detected and fixed @xcite , and what errors are assumed @xcite .
most codes have been designed to fix random pauli errors and error correction procedures can be simulated efficiently using the stabilizer formalism @xcite . a broader class of errors including clifford operations @xcite and pauli measurements @xcite
can also be included in this formalism . for a single qubit
, this extended error set has been shown to yield improved approximations of realistic error models including amplitude damping @xcite . here
we examine whether these improved approximations also lead to more accurate threshold estimates .
specifically , we calculate the level-1 pseudothreshold for the steane [ [ 7,1,3 ] ] code @xcite for two non - stabilizer errors , amplitude damping and a depolarization channel along a magic - state axis , and compare the exact solution to approximations based on pauli errors or clifford and pauli measurement errors .
the steane code has been well studied theoretically @xcite and a logically encoded state has been recently demonstrated experimentally @xcite . the code is small enough to allow for exact simulation similar to recent work on distance-3 surface codes , which compared a realistic error model corresponding to t@xmath0 ( amplitude damping ) and t@xmath1 ( dephasing ) processes and an approximate pauli error model based on twirling @xcite .
in addition to the pseudothreshold , we are interested in two other qualities of the approximation , the accuracy and the honesty .
the accuracy is a measure of how close is the state generated by the approximate evolution to the state generated by the exact evolution .
we describe an approximation as honest if the final state after the approximate evolution is further from the initial state than the final state after the exact evolution . in other words ,
an approximation is honest if it upper - bounds the error of the exact evolution . as pointed out by puzzuoli _
the composition of honest approximations is not necessarily honest @xcite .
this implies that an approximation that is honest at the 1-qubit physical level might lead to a dishonest representation of the overall error produced on the system .
if our goal is to employ our approximate channels to infer the performance of error - correcting strategies under realistic non - stabilizer noise , then we need to be cautious and be sure that they compose in an honest fashion .
we provide numerical evidence that , in the context of an error - correcting circuit , an honest approximation at the physical level remains honest at the logical level .
furthermore , we show that , for the error models studied , physically dishonest approximations based on the pauli channel might lead to approximations at the logical level that are both approximately honest and very accurate , in agreement with similar results obtained by geller and zhou @xcite .
this suggests that it might not be necessary for the approximations to be honest at the physical level .
the paper is organized as follows . in section [ sec : channels ] , we describe the target realistic error channels and our method for generating approximate channels @xcite . in section [ sec : hon_and_acc ]
, we review the important concepts of honesty and accuracy of an approximate channel . in section [ sec : threshold_method ] we explain our procedure for calculating the pseudothreshold . in section [ sec : results ] , we present our results before concluding in section [ sec : conclusions ] .
we review all the error channels introduced in @xcite . we start with the stabilizer expansions to the pauli channel ( pc ) that are used as models to approximate realistic non - stabilizer error channels .
next we discuss two important cases of these error channels that lie outside the stabilizer formalism .
finally we review two different constraints under which the approximations are performed .
all the error channels introduced in this section will be expressed in the operator - sum representation . throughout the paper we use @xmath2 , @xmath3 , and @xmath4 to represent the pauli matrices with associated eigenvectors
@xmath5 , @xmath6 , and @xmath7 respectively . one of the main ideas introduced in @xcite was that the pc can be greatly expanded without becoming non - stabilizer .
we do this by adding kraus operators that correspond to either clifford operations or pauli measurements followed by conditional pauli operations . for the 1-qubit case ,
the clifford channel ( cc ) , which corresponds to the first expansion , is composed of the 24 operators that maintain the symmetry of the chiral clifford octahedron @xcite .
another expansion to the pc can be obtained by introducing pairs of operators that effectively produce a measurement in a pauli basis followed by a conditional pauli operation , such that all states are mapped to the same state .
we refer to these pairs of operators as measurement - induced translations . for each pauli state ,
@xmath8 , these operations can be represented by the following pairs : @xmath9 the addition of these measurement - induced translations to the pc gives rise to the pauli + measurements channel ( pmc ) , while their addition to the cc produces the clifford + measurements channel ( cmc ) .
as in @xcite , we use the efficiently simulable channels to approximate realistic non - stabilizer channels . in particular
, we focus on the amplitude damping channel ( adc ) and the polarization along an axis in the x - y plane of the bloch sphere ( pol@xmath10c ) , shown on equations [ eq : adc ] and [ eq : polc ] , respectively : @xmath11 @xmath12 \end{cases } \label{eq : polc}\ ] ] the free parameters in the pc and its expansions correspond to the probabilities associated with the kraus operators .
previously , we have obtained stabilizer approximations to the realistic non - stabilizer channels by minimizing the hilbert - schmidt distance @xcite over the parameter space of the models . as we do not want to underestimate the deleterious effect of the target channel on quantum information ( i.e. we want our approximation to be `` honest '' @xcite ) , we perform the minimizations such that the approximate channels constitute an upper bound on the error induced on the system .
mathematically , this condition can be enforced in a variety of ways , by employing different fidelity or distance measures . from the constraints that we have studied
, the most lenient one corresponds to the average fidelity constraint , in which we enforce the following condition : @xmath13 the average fidelity between a unitary transformation @xmath14 and a quantum channel @xmath15 is given by : @xmath16 where @xmath17 is the dimension of the hilbert space and @xmath18 are these kraus operators of the error channel @xmath15 .
on all the approximations that we have performed , the average fidelity constraint has always given the same results as if no constraint had been applied .
on the other hand , the most stringent constraint corresponds to the worst trace distance one , in which we enforce that for every initial pure state its trace distance to the resulting state after the target transformation is not greater than its trace distance to the resulting state after the model approximation : @xmath19 where the trace distance is calculated using the following expression : @xmath20 this worst trace distance constraint results in approximate channels that are honest , in the sense that the deleterious effect of the target error channel on any pure quantum state will never be underestimated , as pointed out by magesan @xmath21 @xcite and puzzuoli @xmath21 @xcite .
we could think of an even tighter constraint in which we enforce this condition on every initial state , pure or mixed . however , if the target and the model transformations have different fixed points , this condition is impossible to satisfy .
we compare results for both constraints and label them `` a '' ( average fidelity constraint ) and `` w '' ( worst trace distance constraint ) .
for each approximate channel , we study two properties : honesty and accuracy .
an approximate channel is honest if it does not underestimate the detrimental effect of the target error channel .
the accuracy of an approximate channel refers to how closely it can mimic the effect of the target channel on an initial state .
more explicitly , if a target error channel @xmath22 maps a pure state @xmath23 to @xmath24 and an approximate channel @xmath25 maps the same state to @xmath26 , then @xmath25 is honest if @xmath27 for every pure state in the initial physical or logical space .
the accuracy is measured by the average trace distance between the resulting states : @xmath28 notice that for both properties , our measure of choice is the trace distance .
a good approximate channel will be honest ( or as least dishonest as possible ) and as accurate as possible , not only at the physical level , but also at the various logical levels .
we distinguish 4 different scenarios to compare honesty and accuracy : ( a ) the physical ( 1-qubit ) level , ( b ) the uncorrected logical level , ( c ) the logical level with perfect ec , and ( d ) the logical level with faulty ec , as depicted in fig .
[ fig : the_levels ] . for each target non - clifford error channel ,
we study two kinds of approximations : ( a ) the pauli channels ( pc ) , which employ only 1-qubit pauli operators , and ( b ) the expanded channels or clifford+measurements channels ( cmc ) , which include all the 1-qubit clifford operators and the measurement - induced translations @xcite . in turn , each kind of approximation is performed with the average fidelity constraint ( `` a '' ) and the worst trace distance constraint ( `` w '' ) , resulting in four approximate channels . notice that the unconstrained pc is equivalent to the pauli twirled approximation @xcite , the channel obtained by removing the off - diagonal elements from the target channel s process matrix in the pauli basis @xcite .
we also analyze the completely isotropic pauli channel or depolarizing channel ( dc ) , the most common error model used when calculating thresholds . in this paper
we are comparing single qubit error channels and we only use the single qubit depolarizing channel .
this channel is a version of the pc a where the coefficients corresponding to each pauli matrix are forced to have the same value .
this error model serves as a reference .
the approximations are summarized in table [ table : channels_summary ] .
.summary of the various target and approximate channels . [ cols="^,^,^ " , ] [ table : summarysteanepolxy ] the results for the adc and the pol@xmath29c are summarized in tables [ table : summarysteaneadc ] and [ table : summarysteanepolxy ] , respectively . for the adc ,
the pseudo - thresholds are expressed in terms of the damping strength , @xmath30 , while for the pol@xmath29c , they are expressed in terms of the noise strength , @xmath31 . in both cases , the standard deviation of the pseudo - thresholds
is included inside parentheses .
notice that the code - capacity pseudo - thresholds are about 3 orders of magnitude higher than the circuit - based ones .
the latter ones are on the range expected for the steane code @xcite .
although the code - capacity pseudo - thresholds are unrealistically high , they show similar trends with respect to their circuit - based counterparts . in general , the target non - clifford channels and their cmc approximations result in high standard deviations of the pseudo - thresholds around its average values .
this implies that for these channels the pseudo - thresholds are much more dependent on the initial state than for the pcs .
it is interesting that the pauli channels always result in pseudo - thresholds that are lower than the real ones .
this trend has also been observed by tomita and svore on the surface code @xcite and suggests that anistropic pauli channel approximations to realistic noise models are pessimistic
. the cmc w approximations also result in lower pseudothresholds .
this is in contrast to the isotropic pauli channel approximation ( dc ) that yields optimistic pseudothresholds .
the cmcs give more accurate pseudo - threshold estimates than the pcs , as can be seen by comparing their rms values . although we might expect the `` a '' channels to result in better approximations than the `` w '' channels , in general this is not the case .
the most important variation is between the cmcs and the pcs . in general
, however , the `` w '' channels result in lower pseudo - thresholds than the `` a '' channels , which implies that honest approximations at the physical level generate conservative estimates of the threshold .
finally , we notice that the circuit - based pseudothresholds are quite comparable yielding pseudothresholds within a factor of two for all of the error models . the dc model representing isotropic depolarizing noise yields the least accurate results and the highest thresholds . in the previous section , we noticed that the pc a , one of the simplest approximations at the physical level , and one that is not even honest , results in very accurate and practically honest approximations at the corrected logical levels . in the context of our level-1 pseudo - threshold estimation
, this result suggests that we can take a different strategy . instead of using the approximate channel at both the physical and logical level to calculate the pseudo - threshold
, we can use the target channel at the physical level and the pc a approximation at the logical level .
more generally , we can simulate the realistic noise model in an exact way whenever it is feasible , and in the encoded cases just use the pc a. if we take this approach , we obtain more accurate state by state pseudo - thresholds for the circuit - based case as seen in tables [ table : summarysteaneadc ] and [ table : summarysteanepolxy ] .
we have studied the feasibility of using approximate error channels at the physical level to simulate the performance of qec protocols under the influence of non - stabilizer errors .
we have selected the steane [ [ 7,1,3 ] ] code as a model qec protocol and have calculated the honesty and accuracy of the pauli and expanded approximations to realistic non - stabilizer errors .
we have also computed the code s pseudothreshold under the different error models . similarly to results recently obtained for distance-3 surface codes @xcite , the pc approximations result in lower pseudothreshold values than the realistic error channels .
in contrast , the isotropic dc approximation yields higher pseudothresholds than the target channels in the circuit - based model . since most thresholds in the literature use two - qubit and one - qubit depolarizing channels
, we expect that realistic error models with equivalent fidelity will have slightly lower pseudothresholds in practice .
we have also found that physically honest approximations compose well : they result in honest approximations at the logical level .
perhaps more interestingly , for both realistic noise models analyzed , the dishonesty of the pc a gets greatly reduced at the corrected logical levels and its accuracy becomes extremely high .
this suggests that , if our goal is to estimate thresholds , then the best protocol is to model the error as realistically as possible at the physical level and use the pc a at the logical level . as explained by puzzuoli _
@xcite , single qubit errors can be separated into errors that deform the bloch sphere and errors that preserve the bloch sphere .
both target error models analyzed in our work deform the bloch sphere where the pc a yields effectively honest approximations at the logical level for small errors .
_ found that when the errors are unitary , the pc a generally results in a poor approximation . in future work , we will compute the level-1 pseudothreshold for the steane and other codes under unitary errors , to determine if pauli and expanded approximations still result in pessimistic pseudothreshold estimates .
this work was supported by the office of the director of national intelligence - intelligence advanced research projects activity through aro contract w911nf-10 - 1 - 0231 .
.all statements of fact , opinion , or conclusions contained herein are those of the authors and should not be construed as representing the official views or policies of iarpa , the odni , or the us government .
|
threshold theorem quantum error correction promises accurate implementation arbitrary size quantum algorithms if physical errors below values error thresholds depend on specific quantum error correcting code errors errors assumed codes designed to fix pauli errors simulated using stabilizer formalism @xcite broader class errors including clifford operations pauli measurements included in formalism extended error set improved approximations of realistic error models including amplitude damping examine improved approximations lead to accurate threshold estimates calculate level-1 pseudothreshold for steane [ 7 ] code @xcite for two non - stabilizer errors amplitude damping depolarization channel - axis compare exact solution to approximations based on pauli errors clifford pauli measurement errors steane code studied theoretically logically encoded state demonstrated experimentally code small for exact simulation similar to work distance-3 codes compared realistic error model approximate pauli error model based twirling interested in approximation accuracy honesty accuracy approximate evolution to exact evolutionapproximation honest if final state after approximate evolution further from initial state than exact evolution approximation honest if upper - bounds error exact evolution composition honest approximations not necessarily honest @xcite honest at level might lead to dishonest representation overall error system goal to employ approximate channels infer error - correcting strategies under realistic non - stabilizer noise need be cautious compose honest numerical evidence error - correcting circuit honest approximation at physical level remains honest at logical level physically dishonest approximations pauli channel might lead to approximations logical level approximately honest and accurate agreement with results by geller and zhou @xcite suggests might not necessary for approximations to be honest at physical level paper organized section channels target realistic error channels method for generating approximate channels @xcite review concepts honesty accuracy approximate channel threshold procedure for calculating pseudothreshold results present results before concluding review all error channels introduced in @xcite start with stabilizer expansions to pauli channel used as models approximate realistic non - stabilizer error channelsdiscuss two cases error channels outside stabilizer formalism review two constraints approximations error channels expressed in operator - sum representation use @xmath2 @xmath3 @xmath4 represent pauli matrices with eigenvectors @xmath5 @xmath6 @xmath7 @xcite pc expanded without non - stabilizer adding kraus operators clifford operations or pauli measurements conditional pauli operations 1-qubit case clifford channel ( cc ) first expansion 24 operators maintain symmetry chiral clifford octahedron expansion pc introducing pairs operators produce measurement pauli basis followed conditional pauli operation states measurement - induced translations each pauli state @xmath8 operations represented by pairs @xmath9 addition measurement - induced translations to pc pauli + measurements channel ) addition to cc produces clifford + measurements channel ) @xcite use efficiently simulable channels approximate realistic non - stabilizer channelsfocus on amplitude damping channel ( adc ) polarization axis x - y plane bloch sphere ( pol@xmath10c ) shown on equations [ eq : adc eq : polc ] : @xmath11 @xmath12 polc free parameters in pc expansions correspond to probabilities kraus operators obtained stabilizer approximations to non - stabilizer channels minimizing hilbert - schmidt distance over parameter space models deleterious effect target channel on quantum information approximation honest perform minimizations approximate channels constitute upper bound on error system condition enforced different fidelity distance measures most lenient average fidelity constraint condition @xmath13 average fidelity between unitary transformation @xmath14 quantum channel @xmath15 given by @xmath16 @xmath17 dimension hilbert space @xmath18 kraus operators of error channel @xmath15 approximations average fidelity constraint same results as no constraintstringent constraint worst trace distance every initial pure state distance after target transformation not greater than model approximation : @xmath19 trace distance calculated expression @xmath20 worst trace distance constraint results in approximate channels honest deleterious effect of target error channel on pure quantum state never underestimated pointed by magesan @xmath21 @xcite puzzuoli tighter constraint condition on every initial state pure or mixed if target and model transformations different fixed points condition impossible to satisfy compare results for both constraints label a average fidelity constraint and w worst trace distance constraint each approximate channel study two properties honesty accuracy channel honest if not underestimate detrimental effect of target error channel accuracy effect target channel on initial state if target error channel @xmath22 maps pure state to @xmath24 approximate channel @xmath25 maps to @xmath26 @xmath25 honest for every pure state accuracy measured by average trace distance between states : @xmath28 measure of choice is trace distance good approximate channel honest least dishonest accurate at physical logical levelsdistinguish 4 scenarios compare honesty accuracy physical ( 1-qubit level uncorrected logical level logical perfect ec faulty ec depicted in fig . each target non - clifford error channel study two approximations pauli channels only 1-qubit pauli operators expanded channels clifford+measurements channels include 1-qubit clifford operators measurement - induced translations @xcite each approximation performed with average fidelity constraint worst trace distance constraint w ) resulting in four approximate channels unconstrained pc equivalent to pauli twirled approximation @xcite obtained removing off - diagonal elements from target channel s process matrix pauli basis @xcite analyze completely isotropic pauli channel or depolarizing channel ( dc ) common error model calculating thresholds comparing single qubit error channels use single qubit depolarizing channel channel version of pc a coefficients each pauli matrix forced same value error model serves as reference approximations summarized in table [ channels_summary ] target results for adc pol@xmath29c summarized in tables summarysteaneadcadc pseudo - thresholds expressed damping strength @xmath30 pol@xmath29c noise strength @xmath31 standard deviation - thresholds included inside parentheses code - capacity pseudo - thresholds 3 orders higher than circuit - based ones latter range steane code @xcite code - capacity pseudo - thresholds high show similar trends circuit - based counterparts target non - clifford channels cmc approximations result high standard deviations pseudo - thresholds pseudo - thresholds dependent on initial state than pcs pauli channels result pseudo - thresholds lower real trend observed tomita svore surface code @xcite suggests anistropic pauli channel approximations noise models pessimistic cmc w approximations lower pseudothresholds contrast to isotropic pauli channel approximation optimistic pseudothresholds cmcs more accurate pseudo - threshold estimates than pcs rms values `` a '' channels better approximations than `` w '' channels not case important variation between cmcs pcs `` w '' channels result lower pseudo - thresholds than `` a '' honest approximations generate conservative estimatescircuit - based pseudothresholds comparable within factor of two for error models dc model isotropic depolarizing noise yields least accurate results highest thresholds pc a , simplest at physical level not honest results in accurate approximations at corrected logical levels result suggests different strategy instead approximate channel physical logical use target channel physical pc a approximation logical level simulate realistic noise model cases use pc a more accurate state by state pseudo - thresholds for circuit - based case in tables summarysteaneadc summarysteanepolxy studied feasibility of using approximate error channels at physical level to simulate performance qec protocols under non - stabilizer errors selected steane [ [ 7,1,3 ] ] code as model qec protocol calculated honesty accuracy of pauli expanded approximations to realistic non - stabilizer errors computed code s pseudothreshold under different error models pc approximations result in lower pseudothreshold values than realistic error channels isotropic dc approximation yields higher pseudothresholds than target channels in circuit - based modelthresholds use two - one - qubit depolarizing channels expect realistic error models fidelity lower pseudothresholds physically honest approximations compose well result in honest approximations at logical level dishonesty of pc a reduced at corrected logical levels accuracy high suggests estimate thresholds best protocol model error realistically at physical level use pc a at logical level single qubit errors separated into deform bloch sphere preserve bloch sphere both target error models deform bloch sphere pc a yields honest approximations logical level for small errors when errors unitary pc a results in poor approximation future work compute level-1 pseudothreshold for codes under unitary errors determine if expanded approximations result in pessimistic pseudothreshold estimates work supported by director of national intelligence research projects aro contract w911nf-10 - 1 - 0231 statements of fact opinion conclusions authors not official views policies of iarpa odni us government
| 0.570054
| 3,466
| 1,700
|
, Saving $0.1 in GPT-4.
|
18,487
|
we algorithmically solve the maximal contact number problem for finite congruent lattice sphere packings in @xmath0 and show that in @xmath1 this problem is equivalent to determining the maximal coordination of a monatomic crystal .
* keywords : * sphere packings , lattices , crystal chemistry , applied discrete geometry + * msc 2010 subject classifications : * primary 52c99 , secondary 92e10 .
|
there has been recent interest in the condensed matter physics and solid state chemistry community in constructing finite sphere packings with the maximal number of touching pairs ( also known as the maximal contact number ) , as there are applications of small cluster geometry in nucleation , gelation , glass formation pathways , minimal clusters in colloids , and many other topics in soft matter physics , chemistry , and materials science . with this motivation , in 2011 , n. arkus , v. manoharan , and m. brenner at harvard university provided various constructions of finite sphere packings with maximal contacts up to @xmath2 spheres @xcite , and in 2014 , m. holmes - cerfon at new york university provided constructions up to @xmath3 spheres @xcite which improved the lower bounds from 2013 of k. bezdek and s. reid which are derived from the octahedral construction @xcite .
when @xmath4 the lower bound corresponds to a fully constructed octahedron ( see figure [ fig1 ] for @xmath5 ) and when @xmath6 the lower bound corresponds to a partially constructed octahedron .
recent work by k. bezdek and m. khan @xcite in 2016 has reviewed the contact number problem for sphere packings and discussed explicit constructions for @xmath7 and the complexity of recognizing contact graphs ; furthermore , the topic of totally separable sphere packings is emphasized , as it is in @xcite .
regular totally separable sphere packings were enumerated in for @xmath8 in @xcite by s. reid in 2015 , which have a chemical interpretation .
[ fig1 ] in light of this recent research interest at the interface of discrete geometry and materials science , we construct a formalism for understanding all molecular geometries that translates theorems from discrete geometry into existential bounds on the realizability and structure of chemical compounds . in particular , we provide a comprehensive theory for understanding the structure of chemical compounds with discrete geometry and abstract algebra using sphere packings and free @xmath9-modules of rank 3 .
we study the case of congruent sphere packings ( which are applicable for monatomic compounds ) and leave the topic of noncongruent sphere packings ( which are applicable for polyatomic compounds ) for future research .
traditionally , discrete geometry has been almost exclusively studied by pure mathematicians , with only recent notice by chemists , physicists , biologists , materials scientists , computer scientists , and other scientists . for this reason
, we introduce the following definition : a new interdisciplinary field of science that describes the structure and combinatorics of matter and information with discrete geometry . in this paper
we provide some initial remarks on applied discrete geometry through crystal chemistry , e.g. , we focus on finite congruent lattice sphere packings , rather than finite congruent sphere packings which are not based on a lattice ; these two cases correspond to monatomic crystals and amorphous monatomic compounds , respectively .
the monatomic sphere packing correspondence provides a translation between an arbitrary monatomic compound @xmath10 , where @xmath11 is the atomic concentration of the atom @xmath12 , and a congruent sphere packing @xmath13 which encodes the relevant structural and combinatorial information about the compound .
the translation is provided by replacing atoms with spheres and replacing chemical bonds with contact points .
let @xmath10 be an arbitrary monatomic compound .
then there exists a congruent sphere packing @xmath14 where @xmath15 is the position of the @xmath16 atom @xmath12 with radius @xmath17 .
we remark that the radius @xmath18 can be chosen to be the ionic radius of the @xmath19 ion with a particular coordination and charge , with roman numeral subscripts to denote the coordination number of that atom , e.g. , @xmath20 is the 4-coordinated radius of the @xmath21 ion . from an arbitrary monatomic compound @xmath10
there are two major cases to distinguish and treat using the monatomic sphere packing correspondence : 1 .
monatomic crystals , which correspond to congruent lattice sphere packings .
monatomic amorphs , which correspond to congruent non - lattice sphere packings .
a three - dimensional lattice @xmath22 has a basis , say @xmath23 where @xmath24 , so that any point on the lattice @xmath22 can be written as an integer linear combination of the basis elements .
then @xmath25 is a free @xmath9-module of rank 3 which is a candidate for representing the underlying structure of a monatomic crystal @xmath10 if the lattice basis is sufficiently spread out to accomodate for the size of @xmath19 ; i.e. , if @xmath26 .
we now characterize the combinatorial features of the coordination structure associated with a monatomic compound @xmath10 in terms of the contact graph of the congruent sphere packing @xmath13 .
the contact graph @xmath27 is defined by a vertex set @xmath28 with size @xmath29 and an edge set @xmath30 then the size @xmath31 determines the number of chemical bonds @xmath32 in the monatomic compound @xmath10 , and we can use sphere packing bounds from discrete geometry to characterize this quantity in terms of @xmath29 . to see how
the contact graph can be used to understand the coordination structure of the crystal , we use the following theorem of k. bezdek and s. reid @xcite . [ bezdekreidtheorem ] 1 .
the number of touching pairs in an arbitrary packing of @xmath33 unit balls in @xmath1 is always less than @xmath34 2 .
the number of touching pairs in an arbitrary lattice packing of @xmath33 unit balls in @xmath1 is always less than @xmath35{18 \pi}}{\pi}n^{2/3 } = 6n - 3.665 ... n^{2/3}.\ ] ] we can then obtain a relevant corollary regarding the maximum number of chemical bonds in a monatomic compound , with improved bounds in the case of a monatomic crystal .
[ bezdekreidcorollary ] for any atom @xmath12 , the number of chemical bonds in an amorphous @xmath10 compound is always less than @xmath36 , and the number of chemical bonds in a crystal @xmath10 compound is always less than @xmath37 .
let @xmath38 be a packing of @xmath39 congruent @xmath40-spheres in @xmath41-space placed over the lattice @xmath22 , i.e. , @xmath42 .
we define the maximal contact number of @xmath38 by @xmath43 in terms of this terminology we can restate theorem [ bezdekreidtheorem].2 as @xmath44{18 \pi}}{\pi}n^{2/3 } = 6n - 3.665 ... n^{2/3 } , \forall n > 2.\ ] ] let @xmath49 and assume that @xmath45 . observe that @xmath50 is an upper bound on the necessary number of elements in every submodule @xmath51 required to construct @xmath52 with @xmath53 . for , if a submodule @xmath54 contained more than @xmath50 elements , the packing could be rearranged to decrease the number of elements of @xmath54 and increase the number of elements of a distinct submodule @xmath55 in a way which increases the contact number , contradicting that @xmath45 .
we now use the above corollary to write an algorithm for obtaining the value of @xmath61 over any three - dimensional lattice @xmath22 .
chemically , this algorithm tells us the maximum number of chemical bonds between any crystalline formation of @xmath39 atoms of the same size .
|
recent interest in condensed matter physics solid state chemistry constructing finite sphere packings with maximal touching pairs maximal contact number applications small cluster geometry in nucleation gelation glass formation minimal clusters in colloids soft matter physics chemistry materials science 2011 n. arkus v. manoharan m. brenner harvard university provided constructions finite sphere packings maximal contacts @xmath2 spheres 2014 m. holmes - cerfon new york university constructions @xmath3 spheres improved lower bounds from 2013 k. bezdek reid octahedral construction @xmath4 lower bound fully constructed octahedron @xmath6 partially constructed octahedron work by k. bezdek m. khan 2016 reviewed contact number problem discussed constructions for @xmath7 recognizing contact graphs totally separable sphere packings emphasized sphere packings enumerated @xmath8 s. reid 2015 chemical interpretation research geometry materials science formalism for understanding molecular geometries theorems into existential bounds on realizability structure chemical compoundsprovide comprehensive theory understanding structure chemical compounds discrete geometry abstract algebra using sphere packings free @xmath9-modules 3 study congruent sphere packings monatomic compounds noncongruent sphere packings polyatomic compounds future research discrete geometry studied by mathematicians recent notice chemists physicists biologists materials scientists computer scientists scientists introduce definition new interdisciplinary field science structure combinatorics matter information with discrete geometry initial remarks applied discrete geometry crystal chemistry focus on finite congruent lattice sphere packings correspond monatomic crystals amorphous monatomic compounds monatomic sphere packing correspondence provides translation between arbitrary monatomic compound @xmath10 atomic concentration @xmath12 congruent sphere packing @xmath13 structural combinatorial information translation replacing atoms with spheres chemical bonds with contact points @xmath10 arbitrary monatomic compound congruent sphere packing @xmath14 @xmath15 position @xmath16 atom @xmath12 with radius @xmath17 radius @xmath18 ionic radius of @xmath19 ion coordination charge roman numeral subscripts coordination number atom@xmath20 4-coordinated radius @xmath21 ion arbitrary monatomic compound @xmath10 two major cases monatomic sphere packing correspondence monatomic crystals congruent lattice sphere packings monatomic amorphs non - lattice sphere packings three - dimensional lattice @xmath22 basis @xmath23 @xmath24 point lattice integer linear combination basis elements @xmath25 free @xmath9-module rank 3 candidate structure monatomic crystal @xmath10 if lattice basis spread size @xmath19 characterize combinatorial features coordination structure monatomic compound @xmath10 contact graph congruent sphere packing @xmath13 contact graph @xmath27 defined by vertex set @xmath28 size @xmath29 edge set @xmath30 size @xmath31 determines number chemical bonds @xmath32 in monatomic compound @xmath10 sphere packing bounds characterize quantity @xmath29 coordination structure theorem of k. bezdek s. reid number touching pairs arbitrary packing @xmath33 unit balls @xmath1 less than @xmath34touching pairs in lattice packing @xmath33 balls @xmath1 less than @xmath35 = 6n - 3.665 ... n^{2/3} obtain corollary maximum chemical bonds in monatomic compound improved bounds crystal bonds amorphous @xmath10 compound less than @xmath36 crystal @xmath10 compound less than @xmath37 @xmath38 packing @xmath39 @xmath40-spheres @xmath41-space over lattice @xmath22 @xmath42 define maximal contact number @xmath38 by @xmath43 restate theorem as @xmath44{18}n{2/3 } = 6n - 3.665 ... n^{2/3 } > 2. @xmath49 @xmath45 @xmath50 upper bound necessary number elements submodule @xmath51 construct @xmath52 with @xmath53 if submodule @xmath54 more than @xmath50 elements packing rearranged decrease elements @xmath54 increase submodule @xmath55 contact number contradicting @xmath45 use corollary algorithm value @xmath61 over - dimensional lattice @xmath22algorithm maximum chemical bonds between crystalline formation @xmath39 atoms same size
| 0.310052
| 1,683
| 892
|
, Saving $0.0 in GPT-4.
|
18,507
|
the discreteness of permitted state spectrum postulated on atomic level can be macroscopic in nanostructures and larger structures because of macroscopic quantum phenomena such as superconductivity .
the change by jump of measured parameters because of the macroscopic discreteness may be used for some applications .
a device is proposed measured parameters of which can change by jump at a weak change of external parameters .
the devise consists of two superconductor loop connected with two josephson junctions .
the macroscopic parameter - maximum value of the super - current through the two josephson junctions - can change with the quantum number determining macroscopic angular momentum of superconducting pairs in one of the two loops .
|
the distinctive feature of quantum mechanics is discreteness .
its scale on the atomic level is determined with the planck s constant @xmath0 . for example , the discrete values of measured projection of angular momentum of atom and spin differ on @xmath0 .
discreteness in nanostrucrures may have much larger scale because of macroscopic quantum phenomena such as superconductivity . according to the bohr s quantization @xmath1 the difference of angular momentum @xmath2 between adjacent permitted states
, @xmath3 and @xmath4 , of a free electron in a nano - ring with a radius @xmath5 equals @xmath0 as well as in atom .
the energy difference @xmath6 is much smaller than in atom . because of the latter
the persistent current , the quantum phenomenon observed because of the discreteness of spectrum , can be observed only at very low temperature in semiconductor and normal metal rings with realistic radius from @xmath7 [ 1 ] to @xmath8 [ 2 ] .
this phenomena can not be practically observed in the ring with the radius @xmath9 .
in contrast to the semiconductor and normal metal rings , in superconductor ring with such radius the persistent current is observed in the whole temperature region corresponding to the superconducting state @xmath10 and even in some region above it @xmath11 [ 3 ] .
the energy difference @xmath12 between adjacent permitted states in superconductor ring in @xmath13 times higher [ 4 ] then in the non - superconductor one because of the same @xmath14 angular momentum of all @xmath15 superconducting pairs containing in the ring with the volume @xmath16 , the radius @xmath17 and the section area @xmath18 .
the angular momentum difference between adjacent permitted states of superconductor rings with uniform section area @xmath18 increases also in @xmath13 times , @xmath19 .
the density of pairs @xmath20 in superconducting state @xmath10 is equal in order of value 1/2 electron density in the metal .
therefore the number @xmath13 is enormous in any ring with realistic size .
the great discreteness may be useful for applications .
nanostructures may be more useful for some applications because of too great discreteness of macroscopic superconductor structures . in order to the discreteness
can be used it should become apparent in measurable parameters
. a device measurable parameters of which is strongly discrete is proposed in this work .
the enormous discreteness in superconductor is describe very well with the ginzburg - landau wave function @xmath21 . where @xmath22 and @xmath23 are the density and the total number of superconducting pairs in the ring .
but @xmath24 is canonical momentum of single pair with the charge @xmath25 . because of the requirement that the complex pair wave function closed in the loop must be single - valued at any its point @xmath26 the phase @xmath27 must change by integral multiples of @xmath28 @xmath29 following a complete turn along the path of integration @xmath30 . because of the quantization ( 1 ) and the relation @xmath31 the minimum value of the permitted velocity @xmath32 of superconducting pairs in a loop is periodic function of magnetic field @xmath33 with the period @xmath34 corresponding to the flux quantum @xmath35 inside the loop with the area @xmath36 .
the two permitted states @xmath37 and @xmath38 have equal minimum energy @xmath39 at @xmath40 . because of the great number of pairs @xmath41 the energy difference between these states becomes high @xmath42 at small deviation @xmath43 of magnetic field value @xmath33 from @xmath44
. the angular momentum and other parameters can change by jump at small variation @xmath45 of the magnetic field @xmath33 . a sketch of the device consisting of two superconductor loop connected with two josephson junctions @xmath46 and @xmath47 . the maximum value of the super - current @xmath48 changes by jump from @xmath49 to @xmath50 at the change the the quantum number @xmath51 or @xmath52 in one of the loops .
this jump can be observed as voltage @xmath53 jump at applying of an external current @xmath54 as shown on the figure . ]
this change can be detected with help of the device , sketch of which is shown on fig.1 .
the device consists of two superconductor loops @xmath55 and @xmath56 with equal area @xmath36 .
the velocity of superconducting pairs in the loops @xmath57 and @xmath58 depends on the quantum numbers @xmath51 and @xmath52 , i.e. the phase @xmath27 change ( 1 ) at complete turn along each of the loops .
the loops are connected with two josephson junctions in two points , as it is shown on fig.1 . according to the current - phase relationship @xmath59 between the super - current @xmath48 through the josephson junction and the phase difference @xmath60 between
the junction boundaries the maximum value of the super - current @xmath61 \eqno{(2)}\ ] ] through two josephson junction should depend on the relation between the phase differences @xmath62 and @xmath63 .
according to the quantization relation ( 1 ) along the path of integration @xmath55 , @xmath64 and @xmath65 the value @xmath66 is determined only with the quantum numbers @xmath51 and @xmath52 , at any external magnetic field @xmath33 and the equal area @xmath36 of the loops .
the maximum value of the super - current ( 2 ) @xmath67 \eqno{(3)}\ ] ] should have discrete values equal @xmath68 when the sum @xmath69 is an even number and @xmath50 when @xmath69 is an odd number .
the persistent current @xmath70 in the states @xmath37 and @xmath38 with minimum energy at @xmath40 has the same direction in the loops when the sum @xmath69 is an even number and the directions are opposite when @xmath69 is odd .
the change of the persistent current direction , for example , in the first loop at the change from @xmath71 to @xmath72 can be detected as the voltage @xmath73 jump , at an external current @xmath54 applied as shown on fig.1 .
the voltage jump can mount up to the value @xmath74 [ 5 ] .
for example , the maximum jump can equal @xmath75 in the case on niobium loops with the critical temperature @xmath76 .
this jump may be observed at very weak variation @xmath43 of the external magnetic field @xmath33 .
the energy @xmath77 difference between adjacent permitted states , for example @xmath78 and @xmath79 at @xmath80 , @xmath81 increases with the loop area @xmath36 and the amplitude @xmath82 of the oscillations @xmath83 .
the value @xmath84 of the magnetic field variation , at which the probability @xmath85 $ ] of the @xmath79 state , for example , changes between 0 and 1 , decreases with the increase of the loop sizes , because of the relation @xmath86 .
this value is enough low already in a loop with nano - size .
for example , the persistent current amplitude @xmath87 observed in the aluminum ring with diameter @xmath88 and circumference section @xmath89 [ 6 ] corresponds to the value @xmath90 at @xmath91 .
the jump from @xmath92 to @xmath93 should by observed with variation @xmath94 and @xmath95 at this value of the persistent current , @xmath96 and @xmath97 .
the magnetic flux variation @xmath98 can be induced with a current @xmath99 circulating in an additional loop with @xmath100 having the inductance @xmath101 [ 5 ] .
the value of the switching current @xmath102 should not depend on the loop length @xmath30 , because of the proportionality @xmath103 and @xmath104 .
the loop with a small @xmath30 can be used as a bit , the two states @xmath78 and @xmath79 of which can be read in the way shown on fig.1 .
the devise fig.1 with a large loop length @xmath105 can be used for measurement of very weak magnetic field @xmath106 .
this very sensitive magnetometer has some advantages in comparison with the well known squid ( superconducting quantum interference devices ) [ 7 ] .
the possibility of the voltage jump at the quantum number @xmath51 , @xmath52 change in one of the loop of the devise shown on fig.1 was corroborated experimentally in the work [ 8 ] .
the voltage @xmath73 ( or the resistance @xmath107 measured in [ 8 ] ) changes by jump with magnetic field @xmath33 at the change of the persistent current direction , i.e. the @xmath51 number in one of the loop and returns to the initial value at the same change in the other loop .
the quantum numbers @xmath51 and @xmath52 change in [ 8 ] at different magnetic field values because of different section @xmath18 of the loops . this circumstance may be used in the devise proposed in the present work .
this work has been supported by a grant `` possible applications of new mesoscopic quantum effects for making of element basis of quantum computer , nanoelectronics and micro - system technic '' of the fundamental research program of itcs department of ras and the russian foundation of basic research grant 08 - 02 - 99042-r - ofi .
|
distinctive feature quantum mechanics is discreteness scale determined with planck s constant @xmath0 discrete values of angular momentum atom and spin differ on @xmath0 discreteness in nanostrucrures larger scale phenomena superconductivity bohr s quantization difference of angular momentum @xmath2 between states free electron in nano - ring radius @xmath5 equals @xmath0 atom energy difference @xmath6 smaller atom persistent current at low temperature in semiconductor normal metal rings with radius from @xmath7 to @xmath8 not observed in ring with radius @xmath9 superconductor ring with radius persistent current observed in temperature region superconducting state @xmath10 region above @xmath11 energy difference @xmath12 between states in superconductor ring @xmath13 times higher then non - superconductor same @xmath14 angular momentum of all @xmath15 superconducting pairs radius angular momentum difference between superconductor rings with uniform section area @xmath18 increases in @xmath13 times @xmath19density of pairs @xmath20 in superconducting state equal 1/2 electron density in metal number @xmath13 enormous in ring realistic size great discreteness useful for applications nanostructures useful great discreteness macroscopic superconductor structures discreteness apparent in measurable parameters device strongly discrete proposed enormous discreteness in superconductor with ginzburg - landau wave function @xmath21 @xmath22 density total number of superconducting pairs in ring @xmath24 canonical momentum of single pair with charge @xmath25 complex pair wave function single - valued phase @xmath27 change by integral multiples of @xmath28 @xmath29 following turn integration quantization minimum value permitted velocity of superconducting pairs loop periodic function of magnetic field period @xmath34 flux quantum @xmath35 loop states @xmath37 equal minimum energy @xmath40 great number of pairs energy difference between states high at small deviation of magnetic field value angular momentum parameters change by at small variation of magnetic fieldsketch device two superconductor loop josephson junctions @xmath46 @xmath47 maximum value super - current @xmath48 changes by jump from @xmath49 to @xmath50 at change quantum number @xmath51 or @xmath52 jump observed as voltage @xmath53 jump at external current @xmath54 change detected with device sketch.1 device two superconductor loops @xmath55 @xmath56 equal area @xmath36 velocity superconducting pairs loops @xmath57 @xmath58 depends on quantum numbers @xmath51 @xmath52 phase @xmath27 change at complete turn loops connected with two josephson junctions two points fig.1 current - phase relationship super - current phase difference maximum value super - current @xmath61 on phase differences @xmath62 and @xmath63 quantization relation value @xmath66 determined with quantum numbers @xmath51 and @xmath52 external magnetic field @xmath33 equal area @xmath36 loops maximum value super - current @xmath67 should values equal @xmath68 when @xmath69 even @xmath50 when oddpersistent current @xmath70 states minimum energy @xmath40 same direction loops when sum even opposite when odd change current direction first loop from @xmath71 to @xmath72 detected as voltage @xmath73 jump at external current @xmath54 fig.1 voltage jump to @xmath74 maximum jump equal @xmath75 niobium loops critical temperature @xmath76 jump observed at weak variation @xmath43 external magnetic field @xmath33 energy @xmath77 difference between adjacent states @xmath78 increases with loop area @xmath36 amplitude @xmath82 oscillations @xmath83 value @xmath84 magnetic field variation probability decreases with loop sizes relation @xmath86 value low in loop nano - size persistent current amplitude @xmath87 in aluminum ring diameter @xmath88 circumference section @xmath89 corresponds to value @xmath90 at @xmath91 jump from @xmath92 to @xmath93 observed with variation @xmath94 @xmath95 at current magnetic flux variation @xmath98 induced with current @xmath99 circulating additional loop @xmath100 inductance @xmath101value switching current @xmath102 depend on loop length @xmath30 proportionality @xmath103 @xmath104 loop small @xmath30 used as states @xmath78 and @xmath79 read fig.1 devise large loop length @xmath105 for measurement weak magnetic field @xmath106 sensitive magnetometer advantages squid superconducting quantum interference devices voltage jump at quantum number @xmath51 @xmath52 change corroborated experimentally voltage @xmath73 resistance @xmath107 changes by jump with magnetic field @xmath33 at change persistent current direction @xmath51 returns to initial value quantum numbers @xmath51 @xmath52 change at different magnetic field values different section @xmath18 loops circumstance used in devise proposed work supported by grant applications new mesoscopic quantum effects quantum computer nanoelectronics micro - system technic fundamental research program itcs department russian foundation basic research grant 08 - 02 - 99042-r - ofi
| 0.315185
| 2,135
| 1,097
|
, Saving $0.1 in GPT-4.
|
18,510
|
the ho@xmath0(aq ) ion participates in myriad aqueous phase chemical processes of biological and chemical interest .
a molecularly valid description of its hydration state , currently poorly understood , is a natural prerequisite to modeling chemical transformations involving ho@xmath0(aq ) .
here it is shown that the statistical mechanical quasi - chemical theory of solutions predicts that @xmath1_3{}^-}$ ] is the dominant inner shell coordination structure for ho@xmath0(aq ) under standard conditions .
experimental observations and other theoretical calculations are adduced to support this conclusion .
hydration free energies of neutral combinations of simple cations with ho@xmath0(aq ) are evaluated and agree well with experimental values .
hydroxide ion , aqueous solution , quasi - chemical theory , coordination number , hydration free energy 61.20.gy , 61.20.q , 61.25.em
|
in this letter , we consider the hydration state of ho@xmath0(aq ) from the perspective of the quasi - chemical theory .
then we draw upon earlier calculations on h@xmath2(aq ) @xcite , li@xmath2(aq ) @xcite , and na@xmath2(aq ) @xcite and demonstrate that the predicted hydration state provides a satisfactory description of the pair hydration free energies for hoh , lioh , and naoh .
the involvement of ho@xmath0(aq ) in the speciation of be@xmath3(aq ) has been studied recently by the same methods @xcite .
the h@xmath2(aq ) and ho@xmath0(aq ) ions are undoubtedly the most important ions in aqueous phase chemistry , and particularly biological chemistry .
this is due largely to the fact that they are intrinsic to the aqueous media and common extrinsic occupants of those phases encounter these species .
the be@xmath3(aq ) example noted above provides a specific motivation for the present work .
beryllium is an technologically important metal , but inhaled beryllium dust is toxic and causes chronic beryllium disease in a subset of exposed individuals .
this disease eventually leads to lung failure and is presently incurable .
it is well - established that the ho@xmath0 ions can cross - link be@xmath3 ions @xcite .
these colloidal beryllium - hydroxide clusters might ultimately trigger chronic beryllium disease .
understanding the hydration state of ho@xmath0(aq ) is also a key to understanding its anomalously high diffusivity @xcite . indeed both h@xmath2 and ho@xmath0 are thought to diffuse by a proton / hole - hopping mechanism , and this has implications that extend from biological transport of these ions to the transport mechanisms in the polyelectrolyte membranes @xcite involved in some fuel cell designs .
in the quasi - chemical approach @xcite , the region around the solute of interest is partitioned into inner and outer shell domains . for the case of ho@xmath0 ,
the inner shell comprises the water molecules directly coordinated with the ion .
this domain can be treated treated quantum mechanically , while the outer shell contributions can be assessed using classical force - fields or dielectric continuum models .
the theory permits a variational check of the inner - outer partition @xcite , but this aspect has not been pursued here . in the present study outer shell contributions have been evaluated with a dielectric continuum model and the trends confirmed by molecular dynamics calculations using classical interatomic potentials .
the inner shell reactions are : @xmath4}_n{}^- \label{rxn}\end{aligned}\ ] ] the free energy change for these reactions were calculated using the gaussian programs @xcite .
the @xmath1_n{}^-}$ ] ( n = 0@xmath54 ) clusters were geometry optimized in the gas phase using the b3lyp hybrid density functional@xcite and the 6 - 31+g(d , p ) basis set .
frequency calculations confirmed a true minimum , and the zero point energies were computed at the same level of theory .
single point energies were calculated with the 6 - 311+g(2d , p ) and the aug - cc - pvtz basis sets , although most of our results pertain to the former basis . for estimating the outer shell contribution , the chelpg method @xcite was used to obtain partial atomic charges
. then with the radii set developed by stefanovich et al.@xcite , surface tessera were generated @xcite , and the hydration free energies of the clusters were calculated using a dielectric continuum model @xcite . with this information and the binding free energies for the chemical reactions , a primitive quasi - chemical approximation to the excess chemical potential of ho@xmath0(aq ) in water is : @xmath6 where @xmath7 $ ] .
@xmath8 is the equilibrium constant for the reaction eq .
[ rxn ] in an ideal gas state , @xmath9 is the hydration number of the most probable inner shell cluster , and @xmath10 .
the density factor @xmath11 appearing in eq . [ eq : regrouped ] reflects the actual density of liquid water and its effect is included by a replacement contribution of @xmath12 = @xmath13 , where @xmath14gm/@xmath15 and @xmath16 .
( a detailed discussion on standard states and this replacement contribution can be found in grabowski et al .
note eq .
[ eq : regrouped ] is a simplification of the broader theory , and approximations enter at that stage . but all these approximations are available for scrutiny and improvement @xcite . in table
[ tb : ener ] the relevant energies are collected , and fig .
[ fg : hoqca ] gives the hydration free energy of the hydroxide anion for various hydration states . in order of decreasing stability @xmath1_3{}^- }
> \mathrm{ho\cdot[h_2o]_2{}^- } \sim \mathrm{ho\cdot[h_2o]_1{}^- } > \mathrm{ho\cdot[h_2o]_4{}^-}$ ] is found .
the greater stability of @xmath1_3{}^-}$ ] is independent of the level of theory ; calculations with the much larger aug - cc - pvtz basis give the same trends . clearly ( fig .
[ fg : hoqca ] ) including the @xmath1_4{}^-}$ ] contribution to the sum does not appreciably alter the final excess chemical potential of ho@xmath0(aq ) : the whole effect is due accurately to the @xmath1_3{}^-}$ ] quasi - component .
.electronic energy ( a.u . ) , corrections ( a.u . ) to the free energy for zero - point and thermal motions , and excess chemical potential ( kcal / mole ) using dielectric continuum approximation with charges obtained at b3lyp/6 - 311+g(2d , p ) .
[ cols="<,>,>,>",options="header " , ] the agreement shown in table [ tb : pair ] is excellent .
the minor discrepancies are attributable to neglect of a variety of secondary effects : anharmonicity of the quasi - component structures , packing effects , and dispersion interactions .
an assumption that @xmath1_4{}^-}$ ] was the dominant form would have predicted these hydration free energies to be significantly more positive than the experimental results .
the present quasi - chemical theory applied to ho@xmath0(aq ) leads to the conclusion that @xmath1_3{}^-}$ ] is the dominant inner shell coordination structure for the ho@xmath0(aq ) ion in liquid water under standard conditions .
the @xmath1_4{}^-}$ ] is less favorable by nearly 7 kcal / mole ( @xmath17 ) .
the prediction of @xmath1_3{}^-}$ ] as the dominant form has been successfully used in predicting the hydration free energies of neutral ion combinations hoh , lioh , and naoh . thus based on different lines of investigation
, we conclude that ho@xmath0 is predominantly @xmath1_3{}^-}$ ] in liquid water .
the work at los alamos was supported by the us department of energy , contract w-7405-eng-36 , under the ldrd program at los alamos .
la - ur-03 - 3473 .
l. r. pratt , s. b. rempe , quasi - chemical theory and implicit solvent models for simulations , in : l. r. pratt , g. hummer ( eds . ) , simulation and theory of electrostatic interactions in solution .
computational chemistry , biophysics , and aqueous solutions , vol .
492 of aip conference proceedings , american institute of physics , melville , ny , 1999 , pp . 172201 .
l. r. pratt , h. s. ashbaugh , self consistent molecular field theory for packing in classical liquids , tech .
la - ur-03 - 311 , los alamos national laboratory , http://www.arxiv.org/abs/physics/0305054 ( 2003 ) . c. m. breneman , k. b. wiberg , determining atom - centered monopoles from molecular electrostatic potentials - the need for high sampling density in formamide conformational - analysis , j. comp .
( 1990 ) 361 373 . c. chaudhuri ,
wang , j. c. jiang , y. t. lee , h. c. chang , g. niedner - schatteburg , infrared spectra and isomeric structures of hydroxide ion - water clusters @xmath18 : a comparison with @xmath19 , mol . phys . 99 ( 2001 ) 11611173 .
w. h. robertson , e. g. diken , e. a. price , j. w. shin , m. a. johnson , spectroscopic determination of the oh@xmath0 solvation shell in the oh@xmath21(h@xmath22o)@xmath23 clusters , science 299 ( 2003 ) 1367 1372 .
s. s. iyengar , h. b. schlegel , j. m. millam , g. a. voth , g. e. scuseria , m. j. frisch , _ ab initio _ molecular dynamics : propogating the density matrix with gaussian orbitals .
generalizations based on mass - weighting , idempotency , energy conservation and choice of initial conditions , j. chem .
( 2001 ) 1029110302 .
j. e. bartmess , negative ion energetics data , in : p. j. linstrom , w. g. mallard ( eds . ) , nist chemistry webbook , nist standard reference database number 69 , nist , gaithersburg , md ( http://webbook.nist.gov ) , 2001 .
m. d. tissandier , k. a. cowen , w. y. feng , e. gundlach , m. h. cohen , a. d. earhart , j. v. coe , t. r. tuttle jr , the proton s absolute aqueous enthalpy and gibbs free energy of solvation from cluster - ion solvation data , j. phys .
a 102 ( 1998 ) 7787 7794 .
|
consider hydration state of ho@xmath0(aq ) quasi - chemical theory draw calculations on h@xmath2 li@xmath2 na@xmath2 demonstrate predicted hydration state description hydration free energies for hoh lioh naoh involvement ho@xmath0(aq ) in speciation be@xmath3(aq ) studied h@xmath2 ho@xmath0 ions important in aqueous phase chemistry biological chemistry intrinsic to aqueous media occupants encounter species be@xmath3(aq ) example motivation work beryllium technologically important metal inhaled beryllium dust toxic causes chronic beryllium disease disease leads to lung failure incurable ho@xmath0 ions cross - link be@xmath3 ions @xcite trigger chronic beryllium disease understanding hydration state of ho@xmath0(aq ) key to high diffusivity @xcite both h@xmath2 and ho@xmath0 diffuse by proton / hole - hopping mechanism implications biological transport to transport mechanisms polyelectrolyte membranes fuel cell designs quasi - chemical approach region around solute interest partitioned into inner outer shell domainsho@xmath0 inner shell water molecules coordinated with ion treated quantum mechanically outer shell assessed force - fields dielectric continuum models theory permits variational check inner - outer partition not pursued outer shell contributions evaluated dielectric continuum model trends confirmed molecular dynamics calculations interatomic potentials inner shell reactions @xmath4}_n{}^- free energy change calculated gaussian programs @xmath1_n{}^-}$ ] ( n = 0@xmath54 ) clusters geometry optimized gas phase b3lyp hybrid density functional@xcite 6 - 31+g(d ) basis set frequency calculations confirmed minimum zero point energies computed theory single point energies calculated with 6 - 311+g(2d , p ) aug - cc - pvtz basis sets results pertain former basis outer shell contribution chelpg method partial atomic charges radii set surface tessera generated hydration free energies calculated dielectric continuum model excess chemical potential of ho@xmath0 in water @xmath6 @xmath7 $ @xmath8 equilibrium constant for reactionrxn ideal gas state @xmath9 hydration number probable inner shell cluster @xmath10 density factor @xmath11 eq . reflects density liquid water effect included replacement contribution @xmath12 = @xmath13 @xmath14gm@xmath15 @xmath16 detailed discussion standard states replacement contribution grabowski et al . eq . simplification theory approximations enter approximations available for scrutiny improvement @xcite table ener relevant energies collected fig . hoqca hydration free energy hydroxide anion hydration states decreasing stability @xmath1_3{}^- } > \mathrm{ho\cdot[h_2o]_2{}^-{}^-_4{}^-}$ found greater stability @xmath1_3{}^-}$ independent level theory calculations larger aug - cc - pvtz basis same trends @xmath1_4{}^-}$ contribution sum alter final excess chemical potential ho@xmath0(aq effect due @xmath1_3{}^-}$ quasi - component .electronic energy correctionsfree energy zero - point thermal motions excess chemical potential kcal / mole dielectric continuum approximation charges b3lyp/6 - 311+g(2d agreement table excellent minor discrepancies neglect secondary effects quasi - component structures packing effects dispersion interactions assumption @xmath1_4{}^-}$ dominant form hydration free energies positive quasi - chemical theory ho@xmath0 @xmath1_3{}^-}$ dominant structure liquid water standard conditions @xmath1_4{}^-}$ less favorable 7 kcal / mole @xmath17 ) prediction @xmath1_3{}^-}$ dominant form hydration free energies neutral ion combinations hoh lioh naoh ho@xmath0 predominantly @xmath1_3{}^-}$ ] in liquid water work los alamos supported us department energy contract w-7405-eng-36 ldrd program los alamos - l. r. pratt s. b. rempe quasi - chemical theory implicit solvent models simulations. pratt g. hummer simulation theory electrostatic interactions solution computational chemistry biophysics aqueous solutionsaip conference proceedings american institute physics melville ny 1999 172201 pratt ashbaugh molecular field theory packing classical liquids - ur-03 - 311 los alamos national laboratory.arxiv/abs/physics/0305054 2003 breneman wiberg determining atom - centered monopoles molecular electrostatic potentials high sampling density formamide conformational analysis j comp. 1990 ) 361 373 chaudhuri wang jiang lee chang niedner schatteburg infrared spectra isomeric structures hydroxide ion - water clusters @xmath18 comparison @xmath19 . 99 2001 ) 11611173 robertson diken price shin johnson spectroscopic determination@xmath0 solvation shell clusters science 299 2003 ) 1367 1372 iyengar schlegel millam voth scuseria frisch molecular dynamics density matrix gaussian orbitals generalizations mass - weighting idempotency energy conservation initial conditions j chem. 2001 ) 1029110302 bartmess negative ion energetics datalinstrom mallard eds nist chemistry webbook standard reference database 69 gaithersburg md.nist.gov 2001 tissandier cowen feng gundlach cohen earhart j v. coe t tuttle jr proton s enthalpy gibbs free energy solvation cluster - ion solvation data j.. 102 1998 ) 7787 7794
| 0.351358
| 2,329
| 1,177
|
, Saving $0.1 in GPT-4.
|
18,515
|
since 2006 wasp - south has been scanning the southern sky for transiting exoplanets . combined with geneva observatory
radial velocities we have so far found over 30 transiting exoplanets around relatively bright stars of magnitude 913 .
we present a status report for this ongoing survey .
|
by 2004 several groups were pursuing systematic surveys for transiting exoplanets , including hat ( bakos etal .
2004 ) , ogle ( udalski etal . 2002 ) , tres ( odonovan etal .
2006 ) and xo ( mccullough etal .
2006 ) , and the wasp consortium had begun operating a `` superwasp '' camera array on la palma in the northern hemisphere ( pollacco etal .
2006 ) . in the south
the ogle project were finding planets around stars of magnitude 1516 , but there was a clear opportunity for wasp s wide - field , bright - sky strategy , aimed at stars of magnitude 913 .
funding from consortium universities was secured in 2004 , leading to the construction of wasp - south at the south african astronomical observatory , closely copying pollacco s design for the la palma superwasp .
routine robotic operations commenced in march 2006 .
wasp - south is based around an array of 8 cameras , each with a 200-mm f/1.8 canon lens backed by a _
2048@xmath02048 peltier - cooled chip .
each camera covers 7.8@xmath17.8@xmath2 , with 14@xmath3 pixels , so that the array covers 15@xmath130@xmath2 .
a broad - band filter gives a 400700 nm bandpass .
lllllll name ' '' '' & position & star & @xmath4 mag & period & mass & radius + & & & & ( days ) & ( jup ) & ( jup ) + [ 1 mm ] wasp-4 ' '' '' & 233442 & g7v & 12.6 & 1.34 & 1.12 & 1.42 + wasp-5 & 235741 & g4v & 12.3 & 1.63 & 1.64 & 1.17 + wasp-6 & 231222 & g8 & 12.4 & 3.36 & 0.50 & 1.22 + wasp-7 & 204439 & f5v & 9.5 & 4.95 & 0.96 & 0.92 + wasp-8 & 235935 & g6 & 9.9 & 8.16 & 2.24 & 1.04 + wasp-15 & 135532 & f5 & 10.9 & 3.75 & 0.54 & 1.43 + wasp-16 & 141820 & g3v & 11.3 & 3.12 & 0.86 & 1.01 + wasp-17 & 155928 & f6 & 11.6 & 3.74 & 0.49 & 1.74 + wasp-18 & 013745 & f9 & 9.3 & 0.94 & 10.4 & 1.17 + wasp-19 & 095345 & g8v & 12.3 & 0.79 & 1.15 & 1.31 + wasp-20 & & & 10.7 & 2.4 & + wasp-22 & 033123 & & 12.0 & 3.53 & 0.56 & 1.12 + wasp-23 & 064442 & k1v & 12.7 & 2.94 & 0.87 & 0.96 + wasp-25 & 130127 & g4 & 11.9 & 3.76 & 0.58 & 1.22 + wasp-26 & 001815 & g0 & 11.3 & 2.76 & 1.02 & 1.32 + wasp-28 & 233401 & f9 & 12.0 & 3.41 & 0.91 & 1.12 + wasp-29 & 235139 & k4v & 11.3 & 3.92 & 0.24 & 0.79 + wasp-30 & 235310 & f8v & 11.9 & 4.16 & 61.0 & 0.89 + wasp-31 & 111719 & f7 & 11.7 & 3.41 & 0.47 & 1.56 + wasp-32 & 0015 + 01 & & 11.3 & 2.72 & 3.60 & 1.18 + wasp-34 & 110123 & g5 & 10.4 & 4.32 & 0.59 & 1.22 + wasp-35 & & & 11 & 3.2 + wasp-36 & & & 12 & 1.5 & + wasp-37 & 1447 + 01 & g2 & 12.7 & 3.58 & 1.70 & 1.14 + wasp-40 & & & 12 & 3 & + wasp-41 & 124230 & g8v & 11.6 & 3.05 & 0.93 & 1.21 + for the first two years wasp - south covered a `` zenith strip '' centred at 32@xmath2 , but skipping fields in the galactic plane that are too crowded .
we typically raster 810 fields at a time with a cadence of @xmath510 mins , taking two 30-sec exposures at each pointing . for the next two years wasp - south covered an equatorial strip centred at , partially overlapping with the northern superwasp , while we are currently covering the far south with fields centred at 56@xmath2 . the data ( approx 40 gb per night ) are transferred on magnetic tape to keele to be processed with the wasp pipeline .
the data are then accumulated in an archive at leicester where they are searched for candidate transits ( see collier - cameron etal . 2006 ; 2007 ) .
the main limitations of the wasp design are the large pixels , often leading to blending , and the `` red noise '' , which usually exceeds photon noise at magnitudes brighter than 12 .
red noise is introduced by changes in focus , and by drift of the images over the chips through the night , by colour effects owing to the wide bandpass , and by variations in sky brightness such as through moonlight .
for this reason the lightcurves are de - trended prior to the transit search .
follow - up of wasp - south transit candidates involves a major and ongoing collaboration with the geneva observatory , whose coralie spectrograph on the 1.2-m euler telescope at la silla is well matched to the @xmath4 = 913 brightness of wasp candidates .
euler can also be switched rapidly to a ccd camera , enabling us to obtain photometry of candidates to confirm the reality of transits , and particularly to check for possible blends with nearby stars .
table 1 lists wasp - south planets as far as wasp-41 .
wasps 35 , 37 & 40 were joint discoveries from combined southern and northern wasp data , with radial - velocity followup from ohp and the not in addition to coralie .
notable finds include the most bloated planet known and the first found in a retrograde orbit , wasp-17b ( anderson etal .
2010a ) ; the shortest - period transiting planet , wasp-19b ( hebb etal .
2010 ) ; the planet with the strongest known tidal interaction , wasp-18b ( hellier etal . 2009 ) ; the highly eccentric 8-day system wasp-8b ( queloz etal .
2010 ) ; and the transiting brown - dwarf wasp-30b ( anderson etal .
2010b ) . of the first 485 wasp candidates that were forwarded to euler ,
30 were found to be planets , 54 are still under investigation , and 401 have been eliminated .
thus our overall hit rate is 1-in-14 .
the rejected candidates are overwhelmingly astrophysical transit mimics , or blends with stars too close to be resolved in wasp data .
some stars prove to be too hot or fast rotating for coralie radial velocities , while for a small number of candidates the transit signal in the wasp data has turned out to be a false alarm .
the selection of candidates has evolved over time , and balances hit rate against the desirability of finding unusual planets .
for example fig .
1 shows , for each wasp - south candidate , the planet radius predicted from the wasp data and the q value , a measure of whether the dip s width and depth is consistent with a planetary transit around a main - sequence star ( collier - cameron etal .
both values are only estimates , owing to the low s / n and red noise of wasp data .
candidates with predicted planet radii above 1.6 r@xmath6 are nearly all transit mimics , as expected , and so have a low hit rate .
however , planets such as wasp-17b ( anderson etal .
2010a ) , with a radius near 2 r@xmath6 , are among our most interesting finds .
candidates with large q values are also poor candidates , however a handful do turn out to be planets , for example if the host star is evolved or if the wasp search algorithm has fitted a wrong impact parameter . fig . 2 compares the period distribution of the wasp - south candidates with the resulting planets , showing that most of the planets that we find have periods of 25 days
. the lower hit rate at periods 0.72.0 days is likely a real phenomenon , since these should be among the easiest planets for wasp to find ( and note that hat has similarly found only one planet below 2 d ) . above 5 days
there are fewer candidates , since the likelihood of covering several transits of any object declines rapidly .
the quality of the candidates also declines , since with fewer transits we will be biased towards deeper transits , which have a lower hit rate .
wasp-18b is an example of a planet that is relatively easy for wasp to find : with its short , 0.94-d period , wasp - south covered 16 full or partial transits in its first season , and at v = 9.3 the data quality is high ( fig .
in contrast , the discovery of the 8.16-d planet wasp-8b was based on only one fairly full and one partial transit ( fig . 4 ) , but , given that it was early days with few wasp - south candidates , that was considered sufficient to justify coralie followup , even though the period was uncertain and only found from the radial - velocity data . as another example
we show in fig . 5 the discovery data for the brown - dwarf system wasp-30 , which has the shallowest transit of the wasp - south discoveries .
both the transit data and the accompanying periodogram are highly marginal , which illustrates the art of selecting candidates from the thousands thrown up by automatic search routines , especially in the presence of red noise which can often mimic transit features .
+ [ -6 mm ] +
wasp - south discoveries are ongoing , with 180 candidates currently `` in play ''
. clearly it would be possible to markedly improve our hit - rate for finding hot jupiters , by using plots such as figs . 1 & 2 to select optimum candidates , and by rejecting those with insecure transits or transit periods ; however the interest will increasingly be not just in accumulating more 1-m@xmath6 systems in 4-day orbits , but in pushing the envelope of planet parameters , especially by looking for smaller planets that will produce the most marginal transit signals .
although we are running out of virgin sky we expect to continue re - observing the previous regions .
multiple seasons on the same regions of sky will help to overcome red noise , pushing down to shallower transits , while also increasing the likelihood of finding longer - period systems .
the distribution of known transiting exoplanets around bright stars ( fig .
6 ) shows that the surveys are far from complete : the concentration of known systems near the _ kepler _ field results from the greater concentration of surveys on that region .
extrapolating to the rest of the sky implies that there are several hundred more transiting exoplanets within the discovery capabilities of wasp - like surveys .
anderson , d.r .
2010a , apj , 709 , 159 anderson , d.r . etal . 2010b , arxiv:1010.3006 bakos , g.a .
2004 , pasp , 116 , 266 collier cameron , a. etal .
2006 , mnras , 373 , 799 collier cameron , a. etal .
2007 , mnras , 380 , 1230 hebb , l. etal .
2007 , 2010 , apj , 708 , 224 hellier , c. etal .
2009 nature , 460 , 1098 mccullough p.r . etal .
2006 , apj , 648 , 1228 odonovan , f.t .
2006 , apj , 644 , 1237 pollacco , d.l .
2006 , pasp , 118 , 1407 queloz , d. etal .
2010 , a&a , 517 , l1 udalski a. etal . 2002 , acta astron . , 52 , 1
|
2004 groups surveys exoplanets hat bakos ogle udalski tres odonovan xo mccullough wasp consortium superwasp camera array la palma northern hemisphere pollacco 2006 south ogle project planets around stars magnitude 1516 opportunity wasp s strategy stars magnitude 913 funding consortium universities secured 2004 construction wasp - south south african astronomical observatory copying pollacco s design la palma superwasp operations commenced march 2006 wasp - south 8 cameras 200-mm f/1.8 canon lens 2048@xmath02048 peltier - cooled chip each camera covers 7.8@xmath17.8@xmath2 14@xmath3 pixels array covers 15@xmath130@xmath2 broad - band filter 400700 nm bandpass name position star mag period mass radius jup wasp-4 233442 g7v 12.6 1.34 1.12 1.42 wasp-5 235741 g4v 12.3 1.63 1.64 1.17 wasp-6 231222 g8 12.4 3.36 0.50 1.22 wasp-7 204439 f5v 9.5 4.95 0.96 0.wasp-8 235935 8.16 2.24 1.04 135532 3.75 0.54 1.43 wasp-16 141820 11.3 3.12 0.86 1.01 wasp-17 155928 11.6 3.74 0.49 1.74 wasp-18 013745 9.3.94 10.4 1.17 wasp-19 095345 12.3 0.79 1.15 1.31 wasp-20 10.7 2.4 wasp-22 033123 12.0 3.53 0.56 1.12 wasp-23 064442 12.7 2.94 0.87.96 wasp-25 130127 11.9 3.76 0.58 1.22 wasp-26 001815 11.3 2.76 1.02 1.32 wasp-28 233401 12.0 3.41 0.91 1.12 wasp-29 235139 11.3 3.92 0.24 0.79 wasp-30 235310 11.9 4.16 61.0 0.89 wasp-31 111719 3.41 0.47 1.56 wasp-32 11.3 2.72 3.60 1.18 wasp-34 110123 10.4 4.32 0.59 1.22 wasp-35 3.2 wasp-36 1.5 wasp-37 1447 12.7 3.58 1.70 1.14 wasp-40 wasp-41 124230 11.6 3.05 0.93 & 1.21 + first two years wasp - south covered zenith strip at 32@xmath2 skipping fields galactic crowded 810 fields cadence @xmath510 mins two 30-sec exposures each next two years covered equatorial strip overlapping with northern superwasp covering far south fields at 56@xmath2 data approx 40 gb per night transferred tape to processed with wasp pipeline data accumulated archive at leicester searched for candidate transits collier - cameron 2006 ; 2007 limitations wasp design large pixels blending red noise exceeds photon noise magnitudes brighter than 12 red noise introduced changes focus drift images colour effects wide bandpass variations sky brightness lightcurves de - trended prior transit search follow - up south transit candidates collaboration with geneva observatory coralie spectrograph matched to @xmath4 = 913 brightness wasp candidates euler switched to ccd camera photometry candidates confirm transits check blends with stars table 1 lists wasp - south planets wasp-41 .wasps 35 37 40 joint discoveries from southern northern wasp data radial - velocity followup from ohp not addition to coralie notable finds include most bloated planet first in retrograde orbit wasp-17b anderson shortest - period transiting planet wasp-19b strongest tidal interaction wasp-18b hellier 8-day system wasp-8b queloz 2010 transiting brown - dwarf wasp-30b anderson 2010b first 485 wasp candidates forwarded to euler 30 found planets 54 under investigation 401 eliminated overall hit rate 1-in-14 rejected candidates astrophysical transit mimics blends with stars close some stars too hot or fast for coralie radial velocities small number transit signal false alarm selection of candidates evolved balances hit rate against desirability finding unusual planets fig . 1 shows each wasp - south candidate planet radius data q value transit around main - sequence star values estimates low s / n red noise wasp data candidates with planet radii above 1.6 r@xmath6 transit mimics low hit rate planets wasp-17b2010a ) radius near 2 r@xmath6 interesting finds large q values poor handful planets if host star evolved or wasp search algorithm wrong impact parameter fig . 2 compares period distribution wasp - south candidates planets most planets periods 25 days lower hit rate at periods 0.72.0 days likely real phenomenon easiest planets for wasp find hat found one planet below 2 d ) above 5 days fewer candidates likelihood transits declines quality candidates declines fewer transits biased towards deeper transits lower hit rate wasp-18b easy for wasp find short 0.94-d period covered 16 full or partial transits first season v = 9.3 data quality high discovery 8.16-d planet wasp-8b one full one partial transit fig . 4 early days few wasp - south candidates sufficient justify coralie followup period uncertain found radial - velocity data fig . 5 discovery data for brown - dwarf system wasp-30 shallowest transit wasp - south discoveries transit data periodogram marginal selecting candidates from thousands automatic search routines red noise transit features-6 mm wasp - south discoveries ongoing 180 candidates in play improve hit - rate hot jupiters using plots figs . 1 2 select candidates rejecting insecure transits interest not just in accumulating 1-m@xmath6 systems 4-day orbits pushing envelope planet parameters for smaller planets marginal transit signals running out of virgin sky continue re - observing previous regions multiple seasons same regions overcome red noise shallower transits likelihood longer - period systems distribution transiting exoplanets around bright stars fig . 6 ) shows surveys complete concentration systems near kepler field results from greater concentration surveys extrapolating several hundred more transiting exoplanets within discovery capabilities wasp - like surveys anderson , d.r . 2010a apj , 709 , 159 2010b arxiv:1010.3006 bakos 2004 pasp 116 , 266 2006 373 , 799 2007 380 , 1230 2010 apj 708 , 224 2009 nature 460 , 1098 2006 apj 648 , 1228 odonovan2006 apj 644 1237 pollacco pasp 118 1407 queloz 2010 a&a 517 l1 udalski 2002 acta astron 52 1
| 0.429681
| 3,000
| 1,650
|
, Saving $0.1 in GPT-4.
|
18,519
|
a relativistic description of the structure of heavy alkali atoms and alkali - like ions using s - spinors and l - spinors has been developed .
the core wavefunction is defined by a dirac - fock calculation using an s - spinors basis .
the s - spinor basis is then supplemented by a large set of l - spinors for the calculation of the valence wavefunction in a frozen - core model .
the numerical stability of the l - spinor approach is demonstrated by computing the energies and decay rates of several low - lying hydrogen eigenstates , along with the polarizabilities of a @xmath0 hydrogenic ion .
the approach is then applied to calculate the dynamic polarizabilities of the @xmath1 , @xmath2 and @xmath3 states of sr@xmath4 .
the magic wavelengths at which the stark shifts between different pairs of transitions are zero are computed .
determination of the magic wavelengths for the @xmath5 and @xmath6 transitions near @xmath7 nm ( near the wavelength for the @xmath8 transitions ) would allow a determination of the oscillator strength ratio for the @xmath9 and @xmath10 transitions .
|
this paper describes the development and application of a relativistic model for atomic structure .
the basic strategy of the model is to partition the atom into valence and core electrons .
the core electrons will be represented by orbitals obtained from dirac - fock calculations .
the wave function for the valence electrons will be computed by expanding the wave function as a linear combination of laguerre function spinors ( l - spinors ) and slater function spinors ( s - spinors ) @xcite .
the direct and exchange interactions between the core and valence electrons can be computed without approximation .
core - valence correlations can be represented by simply introducing semi - empirical core polarization potentials which are tuned to ensure that the energies for the valence electrons agree with experiment @xcite .
the motivation for this methodology is based on the success of similar methodologies in computing atomic properties of light atoms , namely non - relativistic configuration interaction with a semi - empirical core potential method ( cicp ) @xcite . as a recent example , the dipole polarizability of the si@xmath11 ion computed with a similar methodology is @xmath12 @xmath13 @xcite .
an analysis of a resonant excitation stark ionization spectroscopy ( resis ) @xcite experiment give @xmath14 @xmath13 @xcite while a very sophisticated relativistic configuration interaction with many body perturbation theory calculation ( mbpt ) gave @xmath15 @xmath13 @xcite .
numerous other examples of very good agreement of the semi - empirical method with the most advanced _ ab - initio _ theoretical models for oscillator strengths and polarizabilities can be found in ref .
@xcite .
there are a number of reasons for the success of the relativistic semi - empirical approach .
firstly , this approach is based on the _ ab - initio _ dirac - fock ( df ) calculation to define the core .
secondly , tuning energies to experimental values leads to wave functions that have the correct asymptotic decay at long distances from the nucleus .
the multipole matrix elements needed for oscillator strength and polarizability calculations tend to be dominated by the large-@xmath16 form of the wave function .
finally , partitioning the wave function into frozen - core electrons and an active valence electron reduces the equation for the wave function and energies into one equation that admits a close to exact numerical solution , here using a large ( orthogonal ) laguerre basis .
it should be noted that the df+core - polarization method adopted here has been extensively used by migdalek and co - workers to calculate the oscillator strengths of many atoms @xcite .
they solved the radial equations numerically @xcite , and they typically restricted their transitions to between those of the low - lying states . here , we employ basis sets which enables the calculation of transition matrix elements between both the bound states and the continuum ( pseudostates ) .
this enables us here to compute atomic polarizabilities @xcite , where the continuum makes a significant contribution @xcite .
the present work gives a brief description of the strategy adopted to convert an existing non - relativistic hartree - fock ( hf ) program @xcite into a relativistic df program .
next , the technical details for performing calculations for one valence electron atoms and ions are discussed .
these methods are then applied to the solution of hydrogen and hydrogenic atoms as a test for evaluation .
the main results presented are the oscillator strengths , and static and dynamic polarizabilities for the low - lying states of sr@xmath4 ions .
in addition some of the magic wavelengths for @xmath17 and @xmath18 transitions are presented , at which the ac - stark shift of the transition energy is zero .
the static polarizabilities of sr@xmath4 can be used to estimate frequency shifts of @xmath18 clock transitions due to background fields such as blackbody radiation shifts @xcite .
the magic wavelengths can be used , for example , for high - precision trapping measurements @xcite
the single - electron dirac equation can be written as , @xmath19 where the hamiltonian @xmath20 @xmath21 is the momentum operator , @xmath22 and @xmath23 are @xmath24 matrices of the dirac operators @xcite .
the @xmath25 represents the valence electron - core electrons interaction , and is described shortly .
we have two separate codes that we present the first results from here .
the first is the df calculation , which generates the closed - shell orbitals using purely slater - type orbitals .
the second code solves for a single valence electron orbiting the closed - shell using a mixture of the slater - type orbitals produced by the first code with additional laguerre - type orbitals to describe the valence electronic structure and continuum physics .
the starting point of a calculation involving closed shells is the df calculation for the core state of the atoms .
the df equations are closely related to the hf equations . the atomic schrdinger hamiltonian is replaced by the dirac - coulomb hamiltonian and the single particle orbitals are now 4-component spinors with a large and a small component .
the strategy used to generate a df wave function is to adapt an existing hf program @xcite which expands the orbitals as a linear combination of slater ( or gaussian ) type orbitals .
the first stage of the modification is to generate the angular representation of the orbitals from @xmath26 representation .
the next stage is to write each orbital in terms of @xmath27-spinors .
each orbital wavefunction can be written as @xmath28 where @xmath29 is the relativistic angular quantum number which is connected to the total angular momentum quantum number @xmath30 and the orbital angular momentum quantum number @xmath31 , @xmath32 @xmath33 and @xmath34 represent the large and small components of radial wavefunction , and @xmath35 and @xmath36 are the angular components . the radial wavefunctions @xmath33 and @xmath34 are expanded as @xmath37-terms in an s - spinor basis @xmath38 where the superscript @xmath39 and @xmath40 identify the
large " and small " components of the dirac spinor in a conventional way .
although it is common to formally sub - divide the basis functions into small and large type functions and explicitly recognize this when casting the df equations into operational form @xcite , that approach is not adopted in the present paper .
instead , each orbital has a label identifying it as being of a large or small component in the present code .
these labels are taken into account when computing the matrix elements of the df hamiltonian .
this approach is adopted since minimal modifications are needed for those parts of the program that construct and diagonalize the hamiltonian . in effect , information about the spinor construction is confined to those parts of the program that evaluate the matrix elements of the basis functions .
s - spinors are generalizations of slater type orbitals ( sto ) adapted to relativistic systems .
the first modification is the inclusion of a radial @xmath41 pre - factor with @xmath42 to ensure these functions have the correct asymptotic form at origin . here
, @xmath43 is the atomic number and we adopt @xmath44 as the speed of light ( in atomic units ) .
the second modification includes choosing the large and small component basis functions to approximately satisfy the kinetic balance condition @xcite .
the unnormalized radial components are written as , @xmath45 for orbitals with @xmath46 , and @xmath47 for orbitals with @xmath48 , where @xmath49 for the large components and @xmath50 for the small components . a df basis set is formed as a collection of s - spinors with positive real exponents @xmath51 and coefficients @xmath52 and @xmath53 @xmath54 . that undergo variational optimization .
the s - spinor for the orbitals with @xmath55 has a very simple form .
the radial prefactor did not allow for additional powers of @xmath16 as prefactors .
this is distinct from the related sto basis sets used for non - relativistic calculations which usually have radial prefactors with a variety of powers of @xmath16 @xcite . in our calculations , the s - spinor basis sets used
are based on non - relativistic basis sets .
an sto basis with all functions restricted to @xmath56 was optimized for the non - relativistic calculation .
once the optimization was complete , this was modified by the replacement @xmath57 @xmath58 @xmath59 for s - spinors .
this is based on the form of the exact wave functions for @xmath46 .
no further minor optimizations is undertaken as the relativistic scf calculations are time comsuming to do .
table [ tab : dfenergies ] gives df energies computed using s - spinor basis and numerical df energies computed using grasp92 @xcite .
it can be seen that the two sets of energies are in agreement with each other to at least six significant digits .
note that grasp92 uses a finite difference method , so such differences are expected .
see supplemental table i , table ii , and table iii for lists of the basis exponents .
.[tab : dfenergies ] comparison of numerical df energies ( in a.u . ) of several closed - shell atoms and ions as computed with various s - spinor basis sets using the present s - spinor program and the grasp92 program @xcite .
the notation @xmath60 $ ] indicates @xmath61 .
the underlines denote the digits which are different from the two programs . [ cols="<,<,<,<",options="header " , ]
|
paper describes development relativistic model for atomic structure strategy atom into valence core electrons core electrons represented by orbitals from dirac - fock calculations wave function for valence electrons computed by expanding function combination laguerre slater spinors direct exchange interactions between core valence electrons computed without approximation core - valence correlations introducing semi - empirical core polarization potentials tuned energies valence electrons agree with experiment motivation methodology based on success of similar methodologies in computing atomic properties light atoms non - relativistic configuration interaction semi - empirical core potential method example dipole polarizability of si@xmath11 ion computed with similar methodology analysis resonant excitation stark ionization spectroscopy relativistic configuration interaction body perturbation theory calculation examples agreement semi - empirical method with advanced theoretical models for oscillator strengths polarizabilities in reasons for success relativistic semi - empirical approach based on dirac - fock calculation define core tuning energies to experimental values leads to wave functions correct asymptotic decay at long distances from nucleusmultipole matrix elements for oscillator strength polarizability dominated by large-@xmath16 form wave function partitioning wave function into frozen - core active valence electron reduces equation wave into one equation exact numerical solution using large laguerre basis df+core - polarization method used by migdalek co - workers oscillator strengths of atoms restricted transitions to low - lying states basis sets calculation transition matrix elements between bound states continuum atomic polarizabilities continuum work strategy to non - relativistic hartree - fock program into relativistic df program technical details for calculations for one valence electron atoms ions discussed methods applied to hydrogen hydrogenic atoms results are oscillator strengths static dynamic polarizabilities for low - lying states of sr@xmath4 ions magic wavelengths for @xmath17 and @xmath18 transitions presented ac - stark shift transition energy is zero static polarizabilities of sr@xmath4 estimate frequency shifts of @xmath18 clock transitions due to blackbody radiation shiftsmagic wavelengths high - precision trapping measurements single - electron dirac equation written @xmath19 hamiltonian @xmath20 momentum operator @xmath24 matrices dirac operators @xmath25 represents valence electron - core electrons interaction two separate codes first results df calculation generates closed - shell orbitals slater - type orbitals second code single valence electron orbiting closed - shell slater - type orbitals laguerre - type orbitals valence electronic structure continuum physics starting point calculation shells df calculation core state atoms df equations related to hf equations atomic schrdinger hamiltonian replaced by dirac - coulomb hamiltonian single particle orbitals 4-component spinors large small component strategy df wave function existing hf program expands orbitals linear slater gaussian type orbitals generate angular representation orbitals from @xmath26 representation write each orbital @xmath27-spinorsorbital wavefunction written as @xmath28 @xmath29 relativistic angular quantum number connected to total angular momentum @xmath30 orbital angular momentum @xmath31 represent large small components of radial wavefunction angular components radial wavefunctions @xmath33 expanded as @xmath37-terms s - spinor basis @xmath38 superscript @xmath39 @xmath40 identify large small components of dirac spinor to sub - divide basis functions into small large df equations operational form not adopted in present paper each orbital has label large or small component labels computing matrix elements df hamiltonian minimal modifications needed for hamiltonian information about spinor construction confined to matrix elements s - spinors generalizations of slater type orbitals adapted to relativistic systems first modification radial @xmath41 pre - factor with @xmath42 functions correct asymptotic form at origin @xmath43 is atomic number @xmath44 as speed of light second modification choosing large and small component basis functions to satisfy kinetic balance conditionunnormalized radial components written @xmath45 @xmath46 @xmath47 @xmath48 @xmath49 large @xmath50 small df basis set s - spinors positive exponents @xmath51 coefficients @xmath52 @xmath53 @xmath54 variational optimization s - spinor orbitals @xmath55 simple form radial prefactor additional powers @xmath16 distinct from sto basis sets non - relativistic calculations powers s - spinor basis sets based on non - relativistic basis sets sto basis functions restricted to @xmath56 optimized for non - relativistic calculation modified @xmath57 @xmath58 @xmath59 for s - spinors based on wave functions @xmath46 no further optimizations relativistic scf calculations time comsuming table dfenergies df energies computed s - spinor basis df energies grasp92 @xcite two sets energies agreement six significant digits grasp92 uses finite difference method differences expected see supplemental table i ii iii for basis exponents comparison of numerical df energiesclosed - shell atoms ions computed s - spinor sets present program grasp92 program notation @xmath60 indicates @xmath61 underlines denote digits different two programs cols="<<",options="header "
| 0.346339
| 2,096
| 1,023
|
, Saving $0.1 in GPT-4.
|
18,531
|
we carried out intensive spectroscopic observations of two wz sge - type dwarf novae , gw lib , and v455 and during their superoutbursts in 2007 , at 6 observatories .
the observations covered the whole of both superoutbursts from the very maximum to the fading tail .
we found evidence of the winds having a speed of @xmath01000 km s@xmath1 which blew in gw lib during the rising phase .
the evolution of the hydrogen , helium , and carbon lines suggests flaring of the accretion disk and emergence of the temperature inversion layer on the disk .
|
dwarf novae are a class of cataclysmic variable stars , which show outbursts by the disk instabilities , and su uma - type dwarf novae are a subclass giving rise to two types of outburst : normal outbursts and superoutbursts ( for a review * ? ? ?
there is a small group of su uma stars , being called wz sge - type dwarf novae .
their peculiar feature is summarized as : the large outburst amplitude over 6 mag , the long recurrence cycle of the superoutburst ( several years or more ) , and no ( or few ) normal outburst . in addition
, they show curious behavior in many points , such as `` early '' superhumps , a variety of rebrightening light curves after the main superoutburst , long fading tail , and so on ( see * ? ? ?
* and references therein ) .
the driving mechanisms working in wz sge stars are still in debate ( see * ? ? ?
* ) , while the basic properties of normal su uma - type dwarf novae are generally explained by the thermal - tidal disk instability theory . for further investigation ,
we have prepared for coordinated spectroscopic observations during forthcoming superoutbursts , following a success of intensive spectroscopy during the 2001 superoutburst in wz sge itself @xcite . under this circumstances , superoutbursts of two wz sge - type dwarf novae , gw lib , and v455 and ( = hs2331 + 3905 )
were discovered in the very early phase in 2007 by eager contributors to vsnet ( about vsnet , see * ? ? ?
we succeeded in soon starting coordinated spectroscopic campaigns before or around the maximum in both stars , and here review the preliminary results and implications .
the details will be published in our forthcoming papers .
gw lib was discovered during an outburst at 9 mag as a novalike object in 1983 @xcite , and is the first cataclysmic variable where white dwarf pulsations with periods of hundreds - thousands of seconds were found @xcite . @xcite
measured its orbital period to be 0.05332(2 ) d , and estimated the inclination to be @xmath011 deg .
after dormancy of 23 years since the discovery , an outburst was caught at 13.8 mag at 2007 april 12.494 ( ut ) ( r. stubbings , vsnet - alert 9279 ) .
our spectroscopic observations started at april 12.66 ( ut ) .
the light curve of the superoutburst cut on the way of the long fading tail , and the observation date are displayed in figure 1a .
figure 1b exhibits the representative spectra , normalized to a unity continuum value , before the maximum , at the maximum , and in the plateau phase .
all the spectra had a very blue continuum before the normalization , as is often seen in dwarf novae in outburst .
before the maximum , the spectrum had only balmer absorption lines .
the central wavelength of the balmer lines are blue - shifted by @xmath01,000 km s@xmath1 , and the full width at the half maximum is about 3,000 km s@xmath1 . taking into account that gw lib is a nearly pole - on system ,
these results indicate that optically thick winds blew just after the onset of the outburst . by the maximum
, h@xmath2 turned to be a singly - peaked narrow emission line ( fwzi @xmath3 1000 km s@xmath1 ) .
there also appeared emission lines of highly excited species , he ii 4686 , c iii / n iii , and possibly c iv / n iv around 5800 , and a hint of absorption lines of na i d. these lines became weaker during the plateau phase .
these imply that a temperature inversion layer emerged on the accretion disk after switching off the winds , and this layer gradually faded away .
short - term variabilities in the line profile were not detected in our time - resolved low - resolution spectra .
we can clearly see only balmer emission lines in the spectra in the fading tail .
they mimic those in quiescence , but the equivalent widths are much smaller .
v455 and was originally found as a cv candidate in the hamburg quasar survey @xcite .
thorough observations by @xcite revealed its orbital period of 81.08 min by using eclipses , 5 - 6 min variabilities resulting from the wd pulsations , 1.12 min coherent oscillations attributable to the wd spins .
they also detected radial velocity modulations of balmer and helium lines with a period of @xmath03.5 h. based on this report , this star has attracted an attention as a candidate of wz sge stars .
first outburst of this star was detected in the very early phase at 2007 september 4.775 ( ut ) ( h. maehara , vsnet - alert 9530 ) .
we then started spectroscopy from september 5.38 ( ut ) .
the superoutburst light curve and the time when we obtained spectra are shown in figure 2 .
the light curve is cut on the way of the fading tail for a visual purpose , but we obtained several spectra during the period not shown in figure 2 .
the details of the photometric observations are reported by @xcite .
the spectral line evolution is exhibited by the representative spectra in figure 3 .
the top spectrum in figure 3a was taken just at the maximum . there
exist strong emission lines of the balmer series and he ii . we can also see the bowen blend c iii / n iii , and c iv / n iv , and he i in emission .
note that all these emission lines have singly peaked shape , while the spectrum in quiescence possesses doubly peaked emission lines @xcite .
as time passed , these emission lines became weaker during the plateau phase , and doubly peaked shapes emerged .
these line - profile variabilities imply the following scenario : 1 ) the accretion disk flared up by the outburst maximum , and the singly peaked shape we observed is formed by significant contributions of the temperature inversion layer on the disk edge , and 2 ) the flaring disk gradually settled down during the plateau phase , and the inner part of the accretion disk got observable , which resulted in the doubly peaked emission lines . during the long fading tail ( hjd 2454378 , and 2454424 ) ,
the line spectra are very similar to that in quiescence .
the equivalent width of the balmer and he i emission lines , however , grew up , as the the system gradually faded .
we here summarize the plausible disk evolution during the superoutburst in wz sge stars which are suggested by the intensive spectroscopic observations of the nearly pole - on system , gw lib , and the nearly edge - on system , v455 and during the 2007 superoutbursts . the winds with a speed of 1,000 km s@xmath1 blow just after the onset of the superoutburst , and they drop by the maximum . at the same time , the disk flares up , and the temperature inversion layer is formed on the accretion disk .
this flaring disk , and this layer gradually settle down during the plateau phase . after the rapid decline from the plateau phase
, the emissivity at the continuum gradually returns to the value in quiescence , as that in the balmer and he i lines do it more gradually .
the authors are grateful to the observers for reporting their precious data to vsnet .
this work is partly supported by a grant - in - aid from the ministry of education , culture , sports , science , and technology ( no .
17204012 , 17740105 ) .
araujo - betancor , s. , et al .
2005 , , 430 , 629 baba , h. , et al .
2002 , , 54 , l7 hagen , h .- j , et al .
1995 , a&as , 111 , 195 kato , t. , et al .
2004 , , 56 , s1 maehara , h. et al .
2008 , in this volume maza , j. , & gonzalez , l.e . 1983 , iau circ .
, 3854 nogami , d. 2007 , in proceedings of the 7th pacific rim conference on stellar astrophysics , asp conf .
362 , eds . y. w. kang et al .
( san francisco : asp ) , 195 nogami , d. , & iijima , t. 2004 , , 56 , s163 osaki , y. 1996 , , 108 , 39 thorstense , j.r .
, et al . 2002 , , 114 , 1108 uemura , m. , et al .
2008 , , 60 , 227 van zyl , l. , et al .
2004 , , 350 , 307 woudt , p.a . &
warber , b. 2002 , , 282 , 433
|
dwarf novae class cataclysmic variable stars show outbursts disk instabilities su uma - type dwarf novae subclass two types outburst normal and superoutbursts small group of su uma stars called wz sge - type dwarf novae large outburst amplitude over 6 mag long recurrence cycle no normal outburst show curious behavior early superhumps rebrightening light curves after superoutburst long fading tail driving mechanisms in wz sge stars in debate basic properties of normal su uma - type dwarf novae explained by thermal - tidal disk instability theory prepared for coordinated spectroscopic observations during forthcoming superoutbursts following intensive spectroscopy 2001 superoutburst in wz sge @xcite superoutbursts of two wz sge - type dwarf novae gw lib , v455 and hs2331 + 3905 discovered early 2007 by vsnet coordinated spectroscopic campaigns before around maximum both stars preliminary results implications details published in forthcoming papersgw lib discovered outburst 9 mag novalike object 1983 @xcite first cataclysmic variable white dwarf pulsations periods hundreds - thousands seconds found measured orbital period 0.05332(2 ) d inclination @xmath011 deg 23 years outburst caught 13.8 mag 2007 april 12.494 spectroscopic observations started april 12.66 light curve superoutburst fading tail observation date displayed figure 1a figure 1b representative spectra normalized unity continuum before maximum maximum plateau phase spectra blue continuum before normalization maximum spectrum balmer absorption lines central wavelength lines blue - shifted by @xmath01,000 km s@xmath1 full width half maximum 3,000 km s@xmath1 gw lib nearly pole - on system thick winds blew after outburst maximum h@xmath2 singly - peaked narrow emission line @xmath3 1000 km s@xmath1 emission lines highly excited species he ii 4686 c iii c iv / n around 5800 absorption lines na i d lines weaker plateau phasetemperature inversion layer emerged accretion disk after switching winds faded short - variabilities line profile not detected in time - resolved low - resolution spectra balmer emission lines in spectra fading tail mimic quiescence widths smaller v455 found cv candidate hamburg quasar survey @xcite observations orbital period 81.08 min eclipses 5 - 6 min variabilities wd pulsations 1.12 min oscillations wd spins detected radial velocity modulations of balmer helium lines period @xmath03.5 h star attracted attention candidate wz sge stars first outburst detected 2007 september 4.775 started spectroscopy from september 5.38 superoutburst light curve time obtained spectra shown in figure 2 light curve cut obtained several spectra not photometric observations reported by @xcite spectral line evolution representative spectra figure 3 top spectrum figure maximum strong emission lines of balmer series he ii bowen blend c iii / n iii c iv / n iv he i in emission emission lines singly peaked shape quiescence doubly peaked emission linestime passed emission lines weaker during plateau phase doubly peaked shapes emerged line - profile variabilities imply accretion disk flared by outburst maximum singly peaked shape formed by temperature inversion layer on disk edge flaring disk settled during plateau phase inner part disk observable resulted in doubly peaked emission lines long fading tail 2454378 2454424 line spectra similar to quiescence width balmer he i emission lines grew up system faded summarize plausible disk evolution during superoutburst in wz sge stars suggested by spectroscopic observations of nearly pole - on edge - on system 2007 superoutbursts winds speed 1,000 km s@xmath1 blow after onset superoutburst drop by maximum disk flares up temperature inversion layer formed on accretion disk flaring disk layer settle down during plateau phase after decline emissivity at continuum returns to quiescence authors grateful to observers for reporting data to vsnet work supported by grant - - aid from ministry of education culture sports science technology araujo - betancor 2005 430 , 629 baba h 2002 54 , l7 hagen 1995 111 , 195 kato 2004 56 , s1 maehara 2008 volume maza j. gonzalez 1983 3854 nogami 2007 7th pacific rim conference stellar astrophysics asp conf. 362 kang san francisco asp 195 nogami iijima 2004 56 , s163 osaki 1996 108 , 39 thorstense j.r. 2002 114 , 1108 uemura 2008 60 , 227 van zyl 2004 350 , 307 woudt p warber 2002 282 , 433
| 0.315454
| 1,972
| 1,014
|
, Saving $0.1 in GPT-4.
|
18,533
|
fscma type stars is a group of @xmath070 objects formerly known as unclassified stars with the b[e ] phenomenon .
their very strong emission - line spectra in combination with a nearly main - sequence luminosity suggest the binary nature for them .
they possess strong ir excesses due to radiation of circumstellar dust that implies a compact distribution probably in a circumbinary disk .
our long - term spectroscopic monitoring revealed neutral metal lines , which always include that of li i 6708 , in the spectra of some fscma objects indicating the presence of a cool star .
we present a summary of our results with a first overview of fscma type binaries and review possible implications for the nature and evolutionary status of the entire group .
|
one of the first optical spectroscopic and near - ir photometric surveys conducted almost 40 years ago showed that @xmath010% of @xmath0700 hot emission - line stars exhibited forbidden lines and strong ir excesses due to radiation of circumstellar dust ( allen & swings @xcite ) .
this unusual group was called `` peculiar be stars '' or bep stars to distinguish them from classical be stars which showed smaller ir excesses due to radiation from circumstellar gas .
another name for the group , b[e ] stars , proposed by conti ( @xcite ) only reflects the presence of forbidden lines and not of the ir excess , which is found in the majority of these objects .
after @xmath020 years of studies , which were not intense due to expected heterogeneity of the group members , lamers ( @xcite ) concluded that the b[e ] phenomenon is observed in four classes of stars with known evolutionary status : pre - main - sequence herbig ae / be stars , symbiotic binaries , compact planetary nebulae , and some supergiants ( e.g. , @xmath1 car ) . at the same time , 30 original group members were declared unclassified objects with the b[e ] phenomenon .
the main problems with the unclassified objects were lack of spectral lines from the b type star atmosphere due to a strong line emission and circumstellar continuum radiation as well as sparse data that hampered definite classification .
their properties were critically evaluated by miroshnichenko ( @xcite ) , who summarized the main group features as follows : 1 ) early b to early a type optical continuum with strong emission lines of hydrogen , fe ii , [ o i ] , and sometimes of [ fe ii ] and [ o iii ] ( absorption lines from the hot star atmosphere may be present as well , but they are frequently veiled by the circumstellar continuum ) ; 2 ) a large ir excess that peaks at 1030 @xmath2 m and sharply decreases longward ; 3 ) location outside of star - forming regions ; and 4 ) a secondary companion which can be a fainter and cooler star or a degenerate object .
several possibilities for their evolutionary status were rejected , and the group was renamed to fscma type objects ( after a prototype object with the b[e ] phenomenon , swings @xcite ) . in particular , the pre - main - sequence status was rejected due to their location out of star - forming regions and a steeper decrease of the mid- and far - ir flux with wavelength than that of young stars . also the fscma objects are most likely not a kind of proto - planetary nebulae , which show much smaller near - ir excesses .
below we address the current view of the fscma group as binary systems and show some recent results of our studies of individual objects .
the fscma group initially contained 23 objects from allen & swings ( @xcite ) .
seven objects remaining from the 30 unclassified ones still has an uncertain status due to lack of data .
the group was enlarged by 10 objects found in the _ iras _ database by cross - identification with catalogs of optical positions ( miroshnichenko @xcite ) .
another 20 candidates were found by miroshnichenko ( @xcite ) in the hamburg survey of emission - line stars ( kohoutek & wehmeyer @xcite ) , which was cross - correlated with the nomad catalog ( zacharias @xcite ) . currently @xmath020 more candidates found in nomad using several photometric criteria ( e.g. , miroshnichenko @xcite ) are being observed spectroscopically to confirm the presence of the b[e ] phenomenon , and the search continues .
miroshnichenko ( @xcite ) found that the h@xmath3 emission in most fscma objects is over an order of magnitude stronger than that of classical be stars of the same spectral type .
this requires mass loss rates of m @xmath4 m@xmath5yr@xmath6 considering they are single stars .
theory predicts such rates only for single supergiants with l @xmath7 l@xmath5 ( vink @xcite ) .
therefore , it is natural to assume that fscma objects are binary systems which experienced mass transfer due to a roche lobe overflow phase in at least one of the components . the mass transfer should be non - conservative to explain a large amount of circumstellar dust in the systems .
although the binary scenario seems very likely , it has been uneasy to confirm binarity of the group objects . the most obvious one is mwc623 with a composite spectrum of a mid b type primary and a k type secondary of a similar brightness ( zickgraf @xcite ) . much weaker signs of a composite spectrum have been detected in 10 other objects .
orbital periods have been measured only in two of them : cicam ( the he ii 4686 line , 19.41 days , barsukova @xcite ) and mwc728 ( b5e+g8 , metallic lines , 27.5 days , miroshnichenko @xcite ) . the other 8 objects with a cool star lines , including that of li i 6708 whose origin in evolved stars is still under debate , are : v669cep ( miroshnichenko @xcite ) , fxvel , as174 , iras00470 + 6429 , iras07080 + 0605 , iras17449 + 2320 , iras07377@xmath82523 ( miroshnichenko @xcite ) , and as386 ( miroshnichenko @xcite ) .
binarity of the three brightest fscma objects ( fscma , hd50138 , and hd85567 ) was detected by spectro - astrometry ( baines @xcite ) , but neither spectroscopy nor interferometry have confirmed that yet .
line in the spectrum of mwc728 ( left panel ) and of the h@xmath9 line in the spectrum of hd50138 ( right panel ) .
observations were obtained at the observatorio astronomico nacional san pedro martir ( baja california , mexico ) and the three college observatory ( north carolina , usa ) with spectral resolving powers of @xmath10 = 1000018000.,title="fig:",width=207,height=207 ] line in the spectrum of mwc728 ( left panel ) and of the h@xmath9 line in the spectrum of hd50138 ( right panel ) .
observations were obtained at the observatorio astronomico nacional san pedro martir ( baja california , mexico ) and the three college observatory ( north carolina , usa ) with spectral resolving powers of @xmath10 = 1000018000.,title="fig:",width=211,height=211 ]
our recent frequent spectroscopic observations of some fscma objects revealed significant variations of the balmer line profiles on a timescale of days which do not seem to be regular ( see fig.1 ) .
this implies variable mass loss from the hot component , although ongoing mass transfer due to a roche lobe overflow has not been confirmed yet .
these irregular variations may veil regular ones and hamper binarity confirmation .
nevertheless , the detected composite spectra and the measured orbital periods are consistent with non - conservative evolutionary models of binary systems ( van rensbergen @xcite ) .
one of the future goals of the fscma group investigation is to search for objects at different stages of the binary evolution to identify when the dust formation begins and evaluate the group contribution to the galactic dust production cycle .
a recent discovery of two fscma objects , which showed no signs of a cool secondary in the near - ir region , in galactic clusters ( de la fuente @xcite ) was interpreted as a consequence of binary mergers .
although this idea seems possible , the secondary may still be undetected due to its faintness with respect to the b type primary and veiling by the circumstellar continuum . in any case
, this result only enhances support for the binary nature of the fscma group .
we acknowledge support from dgapa / papiit project in100614 . am acknowledges travel support from the university of north carolina at greensboro .
allen , d.a . , & swings , j. p. 1976 , a&a , 47 , 293 baines , d. , oudmaijer , r.d . , porter , j.m . , & pozzo , m. 2006 , mnras , 367 , 737 barsukova , e.a . ,
borisov , n.v . ,
burenkov , a.n . ,
klochkova , v.g . ,
goranskij , v.p . , & metlova , n. v. 2006 , in _ `` stars with the b[e ] phenomenon '' _ , eds .
m. kraus and a.s .
miroshnichenko , asp conf .
ser . , 355 , 305 conti , p. 1976
, in _ `` be and shell stars '' _ , ed .
a. slettebak , proc .
70 , 447 de la fuente , najarro , f. , trombley , c. , davies , b. , & figer , d.f . 2015 ,
a&a , 575 , a10 kohoutek , l. , & wehmeyer , r. 1999 , a&as , 134 , 255 lamers , h.j.g.l.m . ,
zickgraf , f .- j . , de winter , d. , houziaux , l. , & zorec , j. 1998 , a&a , 340 , 117 miroshnichenko , a.s .
2007 , apj , 667 , 497 miroshnichenko , a.s .
2008 , in _ `` mass loss from stars and the evolution of stellar clusters '' _ , eds .
a. de koter , l. j. smith , and l. b. f. m. waters , asp conf .
, 388 , 205 miroshnichenko , a.s . , bjorkman , k.s . ,
chentsov , e.l .
, et al . 2002 , a&a , 388 , 563 miroshnichenko , a.s . , manset , n. , kusakin , a.v . ,
2007 , apj , 671 , 828 miroshnichenko , a.s . ,
manset , n. , polcaro , v.f . , rossi , c. , & zharikov , s.v .
2011 , in _
`` active ob stars : structure , evolution , mass loss and critical limits '' _ , eds . c. neiner , g. wade , g. meynet , & g. peters , proc .
272 , 260 miroshnichenko , a.s . ,
zharikov , s.v .
, danford , s. , et al .
2015 , apj , 809 , 129 swings , j .- p . 2006 , in _ `` stars with the b[e ] phenomenon '' _ , eds .
m. kraus and a.s .
miroshnichenko , asp conf .
ser . , 355 , 3 van rensbergen , w. , de greve , j.p . , de loore , c. , & mennekens , n. 2008 , a&a , 487 , 1129 vink , j.s . , de koter , a. , & lamers , h.j.g.l.m .
2001 , a&a , 369 , 574 zacharias , n. , monet , d.g . , levine , s.e . ,
2004 , baas , 36 , 1418 zickgraf , f .- j .
2001 , a&a , 375 , 122
|
first optical spectroscopic near - ir photometric surveys 40 years ago showed @xmath010% of @xmath0700 hot emission - line stars exhibited forbidden lines strong ir excesses due to circumstellar dust group called peculiar be stars from classical be stars smaller ir excesses name b[e ] stars proposed by conti reflects forbidden lines not ir excess majority after @xmath020 years studies lamers concluded b[e ] phenomenon observed in four classes stars pre - main - sequence herbig ae / be stars symbiotic binaries compact planetary nebulae supergiants 30 group members declared unclassified objects with b[e ] phenomenon main problems lack of spectral lines star atmosphere line emission circumstellar continuum radiation sparse data classificationproperties evaluated by miroshnichenko summarized group features early b to a type optical continuum strong emission lines of hydrogen fe ii [ o i ] fe ii ] [ o iii ] absorption lines from hot star atmosphere present veiled by circumstellar continuum large ir excess peaks at 1030 @xmath2 m decreases longward location outside star - forming regions secondary companion fainter cooler star or degenerate object evolutionary status rejected group renamed to fscma type objects after pre - main - sequence status rejected due to location out of star - forming regions steeper decrease of mid- and far - ir flux than fscma objects not proto - planetary nebulae smaller near - ir excesses current view of fscma group as binary systems recent results contained 23 objects from seven objects from uncertain status due to lack of data group enlarged by 10 objects cross - identification with catalogs optical positions 20 candidates found by in hamburg survey of emission - line stars cross - correlated with nomad catalog@xmath020 candidates in nomad photometric criteria observed spectroscopically confirm b[e ] phenomenon search continues miroshnichenko found h@xmath3 emission in fscma objects stronger than classical stars requires mass loss rates of m @xmath4@xmath5yr@xmath6 single stars theory predicts rates for single supergiants with l @xmath7 l@xmath5 assume fscma objects are binary systems mass transfer due to roche lobe overflow phase mass transfer non - conservative explain large circumstellar dust binary scenario likely uneasy to confirm binarity of group objects obvious mwc623 composite spectrum of mid b type primary k type secondary similar brightness zickgraf @xcite ) weaker signs composite spectrum detected in 10 other objects orbital periods measured in two : cicam 19.41 days and mwc728 27.5 daysother 8 objects with cool star lines including li i 6708 origin in stars under debate are : v669cep ( ) , fxvel , as174 , iras00470 + 6429 , iras07080 + 0605 iras17449 + 2320 , iras07377@xmath82523 as386 binarity of three brightest fscma objects ( fscma , hd50138 hd85567 ) detected by spectro - astrometry neither spectroscopy nor interferometry confirmed line in spectrum of mwc728 left h@xmath9 line in hd50138 right observations obtained at observatorio astronomico nacional san pedro martir three college observatory with @xmath10 = line in spectrum mwc728 h@xmath9 line in hd50138 observations recent spectroscopic observations of fscma objects revealed significant variations of balmer line profiles on days ( see fig.1 ) implies variable mass loss from hot component ongoing mass transfer due to roche lobe overflow not confirmed irregular variations may veil regular ones hamper binarity confirmationdetected composite spectra measured orbital periods consistent with non - conservative models binary systems future goals fscma group investigation search for objects at different stages binary evolution identify dust formation evaluate group contribution to galactic dust production cycle recent discovery of two fscma objects no signs cool secondary in near - ir region in galactic clusters interpreted consequence of binary mergers secondary may be undetected due to faintness b type primary veiling by circumstellar continuum result enhances support for binary nature fscma group acknowledge support from dgapa / papiit project in100614 travel support from university of north carolina greensboro allen swings. 1976, 47 , 293 baines oudmaijer porter pozzo 2006 , 367 , 737 barsukova borisov burenkov klochkova goranskij metlova 2006 stars with b[e ] phenomenon eds. kraus miroshnichenko conf ser 355 , 305 1976 be shell stars ed a. slettebak70 , 447 de la fuente najarro trombley davies figer d.f 2015 a&a 575 , a10 kohoutek l wehmeyer 1999 a&as 134 , 255 lamers h zickgraf de winter d houziaux zorec j 1998 a&a 340 , 117 miroshnichenko a.s 2007 apj , 2008 mass loss stars evolution stellar clusters eds a. de koter l. j. smith. b. waters conf 388 , 205 miroshnichenko bjorkman chentsov e 2002 a&a 388 , 563 miroshnichenko manset n kusakin a.v 2007 apj 671 , 828 manset polcaro rossi c zharikov s.v . 2011 active stars structure evolution mass loss critical limits eds c. neiner g. wade meynet. peters 272 , 260 miroshnichenko zharikov s.v.danford s 2015 apj 809 , 129 swings 2006 stars b phenomenon eds kraus miroshnichenko asp conf ser 355 , 3 rensbergen de greve j de loore mennekens n. 2008 a&a , 1129 vink koter lamers h.j.g.l.m 2001 a&a 369 , 574 zacharias monet levine s 2004 baas 36 , 1418 zickgraf j 2001 a&a 375 , 122
| 0.426921
| 2,606
| 1,303
|
, Saving $0.1 in GPT-4.
|
18,536
|
in this paper a frenkel kontorova model with a nonlinear interaction potential is used to describe a vacancy defect in a crystal . according to recent numerical results [ cuevas _ et al_. phys .
lett . a 315
, 364 ( 2003 ) ] the vacancy can migrate when it interacts with a moving breather .
we study more thoroughly the phenomenology caused by the interaction of moving breathers with a single vacancy and also with double vacancies .
we show that vacancy mobility is strongly correlated with the existence and stability properties of stationary breathers centered at the particles adjacent to the vacancy , which we will now call vacancy breathers .
discrete breathers , mobile breathers , intrinsic localized modes , vacancies , breather - kink interaction . 63.20.pw , , 63.20.ry , , 63.50.+x , , 66.90.+r
|
discrete breathers ( dbs ) are classical , spatially localized , time - periodic , numerically exact solutions which can be sustained by many non - linear lattices @xcite .
their existence , which is proven by rigorous theorems @xcite and a large amount of numerical results , is not restricted to special or integrable models . on the contrary , they can be found , in principle , in any discrete , nonlinear system and in any dimension @xcite .
they have been observed in experiments involving different systems , as josephson - junctions arrays @xcite , waveguide arrays @xcite , molecular crystals @xcite and antiferromagnetic systems @xcite .
they are also thought to play an important role in dna denaturation @xcite .
usually they are pinned to the lattice but under certain circumstances may become highly mobile @xcite . in this case ,
an interesting problem arises : the interaction between moving discrete breathers ( mbs ) and local inhomogeneities .
this problem has been addressed within different frameworks : scattering of breathers or solitons by impurities @xcite , by lattice junctions @xcite and by bending points @xcite of a given chain .
vacancies in a crystal are another type of local inhomogeneities . by using numerical methods , some of the authors found that a localized energy packet in the form of a moving discrete breather can put a vacancy into movement @xcite . this vacancy migration induced by localized excitations had already been suggested as an explanation for some experimental results @xcite . the aim of this paper is to find an explanation to the somehow qualitative results established in @xcite .
the main result is that vacancies mobility is highly dependent on the existence and stability of the breathers adjacent to the vacancy , hereafter called vacancy breathers ( vbs ) .
the simplest way to model a vacancy in a crystal consists in considering a one - dimensional chain of interacting particles submitted to a periodic substrate potential . it is known in other context as the frenkel - kontorova ( fk ) model @xcite . a vacancy can be represented by an empty well of the substrate potential as fig . 1 shows .
the hamiltonian of this system is @xcite @xmath0 being @xmath1 the absolute coordinate of the @xmath2-th particle .
we have chosen the sine - gordon potential @xmath3\ ] ] as the simplest periodic , substrate potential , with linear frequency normalized to the unity @xmath4 .
we have chosen the morse potential for the interaction between particles because its force weakens as the distance between particles grows and its hard part prevents the particles from crossing .
it is given by @xmath5 ^ 2.\]]the parameter @xmath6 is the curvature of the morse potential .
we have taken @xmath7 in order that mbs exist in this system for a breather frequency @xmath8 .
the strength of the interaction potential can be modulated , without changing its curvature , by varying @xmath9 , being @xmath10 a measure of the well width and @xmath11 the well depth .
we have also normalized the lattice period @xmath12 and the masses to the unity .
the dynamical equations are given by @xmath13=0 .
\label{eq : dyn}\ ] ] in this system , it is possible to generate dbs numerically using the standard methods from the anticontinuous limit @xcite .
we can also induce translational motion of dbs by using a simplified form of the marginal mode method @xcite .
it consists of adding a perturbation @xmath14 to the velocities of the stationary breather , with the nonzero values at the neighboring sites of the initial breather center .
the resulting db kinetics is very smooth and resembles that of a classical free particle with constant velocity .
therefore , we can consider the total energy of a mb as the sum of a the internal energy , equal to the one of the stationary breather , plus the translational energy , equal to the energy of the perturbation added @xmath15 . in order to facilitate systematic studies ,
we have introduced dissipation at the boundaries .
in order to investigate vacancy mobility , we have generated dbs far from a vacancy and then launched this breather against it .
our numerical calculations show that the outcome of the scattering is extremely sensitive to the initial conditions @xcite .
the incident breather can be reflected , trapped or transmitted ( see fig . [
fig : edp1v ] ) , always losing energy as it occurs in the interaction between a mb and an impurity @xcite , whereas the vacancy can either move forward or backward or remain at rest .
this scenario is very different to the one arising in the continuum limit where the vacancy ( anti - kink ) always moves backwards and the breather is always transmitted after the collision . [ cols="^,^ " , ] ) to move a double vacancy . ]
we have observed numerically the interaction of moving breathers with vacancies in the simplest , physically consistent model .
we have found that the breathers can be reflected , transmitted and trapped , both by the single and the double vacancy .
the single vacancy can move forward , backwards and remain and rest , but the double vacancy can not move forward , instead it can split into two single vacancies , one at rest and the other moving forwards . this phenomenology is very different from the continuous analogue , where the breather is always transmitted and the vacancy ( anti - kink ) always moves backwards . the vacancy migration is strongly correlated with the existence and stability of vacancy breathers , which we have studied in detail . in order to move the vacancy the interaction has to be strong enough and the energy of the incident mb has to be above a threshold .
this threshold disappears approximately around bifurcation points where vacancy breathers become unstable .
we think that the study of the properties of breathers next to a defect may help to understand the mobility of other class of point defects such as interstitials , which might be related with recent defect migration observed experimentally in ion - irradiated silicon .
the authors acknowledges sponsorship by the ministerio de educacin y ciencia , spain , project fis2004 - 01183 .
they also acknowledge jc eilbeck and f palmero for useful discussions .
|
discrete breathers ( dbs ) are classical spatially localized time - periodic numerically exact solutions sustained by non - linear lattices existence proven by theorems numerical results not restricted to special models can be found in any discrete nonlinear system any dimension observed in experiments josephson - junctions waveguide arrays molecular crystals antiferromagnetic systems important role in dna denaturation usually pinned to lattice under circumstances may become highly mobile problem : interaction between moving discrete breathers and local inhomogeneities addressed within scattering of breathers by impurities lattice junctions bending points of chain vacancies in crystal are local inhomogeneities found localized energy packet in of moving discrete breather can put vacancy into movement vacancy migration induced by localized excitations suggested as explanation for experimental results aim of paper is to find explanation qualitative results vacancies mobility on existence stability of breathers adjacent to vacancy to model vacancy in crystal one - dimensional chain of interacting particles to periodic substrate potentialknown as frenkel - kontorova model @xcite vacancy represented by empty well substrate potential fig . 1 hamiltonian is @xcite @xmath0 @xmath1 coordinate of @xmath2-th particle chosen sine - gordon potential @xmath3 simplest periodic substrate potential linear frequency normalized to unity @xmath4 chosen morse potential for interaction between particles force weakens distance grows prevents particles crossing given by @xmath5 parameter @xmath6 curvature morse potential taken @xmath7 for breather frequency @xmath8 strength interaction potential modulated varying @xmath9 well width depth normalized lattice period @xmath12 masses to unity dynamical equations by @xmath13=0 to generate dbs numerically standard methods anticontinuous limit @xcite induce translational motion simplified marginal mode method adding perturbation @xmath14 to velocities stationary breather nonzero values at neighboring sites initial breather center resulting db kinetics smooth resembles classical free particle with constant velocityconsider total energy of mb as sum internal energy equal to stationary breather plus translational energy equal to perturbation added @xmath15 studies introduced dissipation at boundaries investigate vacancy mobility generated dbs far from vacancy launched breather against it calculations show outcome scattering sensitive to initial conditions @xcite incident breather can be reflected trapped transmitted fig always losing energy in interaction between mb impurity @xcite vacancy can move forward or backward remain at rest scenario different to continuum limit where vacancy anti - always moves backwards breather always transmitted after collision move double vacancy observed interaction of moving breathers with vacancies in model breathers can be reflected transmitted trapped by single and double vacancy single vacancy can move forward backwards remain rest double vacancy can not move forward split into two vacancies one at rest moving forwards different from continuous analogue breather always transmitted vacancy always moves backwards vacancy migration correlated with existence stability of vacancy breathers studied in detail to move vacancy interaction strong energy incident mb above thresholdthreshold disappears around bifurcation points breathers unstable study properties breathers next to defect understand mobility point defects defect migration ion - irradiated silicon authors sponsorship ministerio de educacin ciencia spain project fis2004 - 01183 acknowledge jc eilbeck f palmero discussions
| 0.261273
| 1,342
| 635
|
, Saving $0.0 in GPT-4.
|
18,545
|
we study the evolution and observability of young and compact star clusters near the galactic center , such as the arches cluster and the quintuplet .
the star clusters are modeled with a combination of techniques ; using direct integration to calculate the motions of all stars and detailed stellar and binary evolution to follow the evolution of the stars .
the modeled star clusters dissolve within 10 to 60 million years in the tidal field of the galaxy .
the projected stellar density in the modeled clusters drops within 5% to 70% of the lifetime to a level comparable to the projected background density towards the galactic center . and
it will be very hard to distinguished these clusters at later age among the background stars .
this effect is more severe for clusters at larger distance from the galactic center but in projection at the same distance .
based on these arguments we conclude that the galactic center easily hides 10 to 40 clusters with characteristics similar to the arches and the quintuplet cluster . # 1_#1 _ # 1_#1 _ = # 1 1.25 in .125 in .25 in # 1
|
a number of compact and young star clusters have been observed within the inner few ten parsec from the galactic center .
most noticeable are the arches cluster ( object 17 , nagata et al .
1995 ) and the quintuplet cluster ( afgl2004 , nagata et al . 1990
; okuda et al .
but it is not excluded that others exist as these clusters are well hidden behind thick layers of absorbing material .
the arches and the quintuplet clusters form the galactic counterparts of ngc2070 ( or r136 ) ; the central star cluster in the 30doradus region in the large magellanic could ( massey & hunter 1998 ) . the structural parameters of these clusters , size , mass and density profile are quite similar as are their ages .
the arches and the quintuplet clusters are at a projected distance of @xmath0pc from the galactic center .
their evolution is therefore dramatically affected by the presence of the tidal field of the galactic bulge and inner disc .
in this paper we report the results of simulations of young and compact star clusters , such as the arches cluster and the quintuplet cluster in the vicinity of the galactic bulge .
these cluster are particularly interesting because a strong coupling between stellar evolution , stellar dynamics and the tidal field of the galaxy may exist .
in addition to this , excellent observational data are available .
many unusually bright and massive stars are present in both clusters which , due to the high central density of @xmath1 to @xmath2 stars pc@xmath3 are likely to interact strongly with each other .
a number of intriguing question about these clusters makes it worth to model them in great detail , these are 1 . )
are these clusters the progenitors of globular star clusters , 2 . )
what is their contribution to the star formation rate in the galaxy , 3 . ) are their mass functions intrinsically flat as has been suggested by observations , 4 . ) how far are these clusters really from the galactic center and 5 . )
how many are still hidden , waiting to be discovered .
i will address the latter two conundrums in this paper and a more detailed paper is in preparation ( portegies zwart , makino , mcmillan & hut , 2000b ) .
we study the evolution of the arches and quintuplet cluster by integrating the equations of motion of all stars and at the same time we account for the evolution of the stars and binaries .
the adopted integration algorithm , evolution of stars and binaries , and the interface between the dynamical calculations and the stellar evolution are described extensively by portegies zwart et al .
( 2000a , see also http://www.sns.ias.edu/@xmath4starlab ) .
the portion of the simulations is carried out using kira , operating within the starlab software environment ( portegies zwart et al .
time integration of stellar orbits is accomplished using a fourth - order hermite scheme ( makino & aarseth 1992 ) .
kira also incorporates block timesteps ( mcmillan 1986a ; 1986b ; makino 1991 ) special treatment of close two - body and multiple encounters of arbitrary complexity , and a robust treatment of stellar and binary evolution and stellar collisions .
the special - purpose grape-4 ( makino et al.1997 ) system is used to accelerate the computation of gravitational forces between stars . the evolution of stars and binaries are carried out by ( see portegies zwart & verbunt , 1996 , sect .
2.1 ) the binary evolution package which is combined in the starlab software toolset .
the treatment of collisions and mass loss in the main - sequence stage for massive stars are described by portegies zwart et al .
( 1998 ; 1999 ; 2000a ) .
the observed parameters for the arches and the quintuplet clusters are presented in tab.1 .
these clusters have masses of about @xmath5 and are extremely compact @xmath6pc ( figer , mclean & morris 1999 ) . the projected distance from the arches cluster to the galactic center
is about 34pc , the quintuplet cluster is somewhat farther away .
if the third component of the projected distance to the galactic center is zero then the observed distance equals the real distance . [ cols= " < , <
, > , > , > , > , > , > " , ] [ tab : n12kinit ] the tidal field is characterized by the oort ( 1927 ) constants @xmath7 and @xmath8 and the local stellar density .
the mass within the clusters orbit at a distant from the galactic center is calculated with ( mezger et al .
1999 ) @xmath9 .
\label{eq : mgal}\ ] ] and with this we can derive the appropriate oort constants .
once the tidal field , the mass of the cluster and its density profile are selected the system is fully determined .
the total mass of the stellar system determines the unit of mass in the system , the distance to the first lagrangian point in the tidal field of the galaxy sets the distance unit and the velocity dispersion together with the size of the stellar system sets the time scale . the evolution of the cluster is subsequently followed using the direct integration including stellar and binary evolution and the tidal field of the galaxy ( see portegies zwart et al .
2000b ) . for economic reasons
not all stars are kept in the system , but stars are removed when they are 3 from the center of the star cluster .
figure1 shows the evolution of the mass and number of stars of two models from table.2 .
star clusters which are located further away from the galactic center live considerably longer than the closer clusters . estimating the cluster lifetime naively via the initial relaxation time would lead to an age of 48myear ( @xmath10 ) for model r150w4 . the weaker tidal field at a distance of 150pc from the galactic center ,
however , tend to extend the cluster lifetime to about 59myear , indicating that the strength of the tidal field has a stronger effect on the cluster lifetime than mass loss from stellar evolution .
the number of stars ( solid ) in the models ( see fig.1 ) decreases more quickly than the total mass ( dashes and dots ) .
the mean mass of the stars within the cluster potential therefore increases gradually with time . near @xmath11myear for model r34w4 and @xmath12myear for model r150w4 the number of stars drops below the total cluster mass , indicating that the mean mass exceeds 1 . at these moments
both models have lost @xmath13% of their initial mass .
although the arches and quintuplet clusters are very compact , it may still be hard to notice them near the galactic center .
the local stellar density is high and we can only see these clusters in projection onto the background
. the projected density near the galactic center can be calculated by differentiating eq.1 with respect to the distance along line of sight .
portegies zwart et al.(2000b ) perform this calculation numerically and arrive at a projected density of about 3000pc@xmath3 .
figure2 shows the evolution of the density within the projected half mass radius for models r150w1 ( dotes ) , r34w4 ( left solid ) and r150w4 ( right solid ) .
the two error bars give the projected half mass densities for the observed clusters : arches ( left ) and quintuplet ( right ) .
the horizontal dotted line gives the surface density at a projected distance of 34pc from the galactic center .
the projected densities of the observed clusters are about an order of magnitude higher than the background . clusters with a lower background density may remain unnoticed among the background stars , as observers may have difficulty to distinguish the cluster from the background .
the projected density of model r34w1 barely exceeds the background and such a cluster easily remains unnoticed throughout its lifetime .
the two models which started more concentrated r34w4 and r150w4 have projected densities well above the background , at least initially .
the cluster farther away from the galactic center has a lower density because it is more extended ; its tidal radius is larger .
after the first few million years this cluster may be hard to notice among the dense stellar background .
we adopt a minimum contrast about three times the projected background density , i.e. : @xmath14pc@xmath15 required for distinguishing a star cluster among the background . in that case
the cluster at a distance of 150pc would be visible for only about 3million years ( @xmath16% of its lifetime ) , and almost 9million years ( @xmath17% of its lifetime ) for the cluster at a distance of 34pc .
although the cluster far away from the galactic center ( model r150w4 ) lives much longer , it only remains visible for a small fraction of its lifetime .
expressed in fraction of their lifetime the two models are observable for about 5% to 70% of the time for the clusters at a distance of 150pc and 34pc , respectively .
we therefore expect that a large population of clusters with characteristics similar to the arches and quintuplet may still be hidden in the direction of the galactic center . based on our calculations
we estimate that more than 40 clusters remain to be found within a projected distance of 50pc from the galactic center .
most of these will be older than the arches and quintuplet clusters but not exceeding @xmath18 years , as they dissolve on a shorter time scale .
we studied the evolution of the two young and compact star clusters near the galactic center , the arches cluster and the quintuplet . based on the background stellar density towards the galactic center and the projected density of the modeled and observed clusters we conclude that the number of such clusters must be far greater than observed .
most of these clusters remain hidden in the stellar background and they are observable only in the first few million years of their existence , when they are still very compact . within a projected distance of 50pc from the galactic center between 10 and 40 clusters with characterisitcs similar to the arches cluster and
the quintuplet may be hidden .
these hidden clusters are likely to be somewhat older and less compact than those already found .
i thank piet hut , ken janes , jun makino and steve mcmillan for discussions .
i am grateful to drexel university and tokyo university for the use of their grape hardware .
this work was supported by nasa through hubble fellowship grant hf-01112.01 - 98a awarded ( to spz ) by the space telescope science institute , which is operated by the association of universities for research in astronomy .
|
compact young star clusters observed within ten parsec from galactic center noticeable are arches cluster object 17 nagata 1995 quintuplet cluster afgl2004 nagata 1990 okuda al others exist clusters hidden behind absorbing material arches quintuplet clusters form galactic counterparts of ngc2070 r136 ) ; central star cluster in 30doradus region large magellanic could massey hunter 1998 ) structural parameters size mass density profile similar ages arches quintuplet clusters at projected distance of @xmath0pc from galactic center evolution affected by tidal field galactic bulge inner disc paper report results of simulations of young compact star clusters in vicinity galactic bulge interesting strong coupling between stellar evolution stellar dynamics tidal field excellent observational data available unusually bright massive stars present in both clusters high central density of @xmath1 to @xmath2 stars pc@xmath3 likely to interact strongly intriguing question about clusters are clusters progenitors of globular star clusters contribution to star formation rate are mass functions flat how far clusters from galactic center how many are still hidden waiting to discoveredaddress latter two conundrums paper detailed paper preparation portegies zwart makino mcmillan hut 2000b study evolution arches quintuplet cluster integrating equations motion stars account for evolution stars binaries adopted integration algorithm evolution stars binaries interface between dynamical calculations stellar evolution described by portegies zwart et al . 2000a http://www.sns.ias.edu/@xmath4starlab simulations using kira starlab software environment integration stellar orbits fourth - order hermite scheme incorporates block timesteps treatment close two - body multiple encounters complexity stellar binary evolution stellar collisions special - purpose grape-4 system computation gravitational forces between stars evolution of stars binaries by verbunt 1996 2.1 binary evolution package in starlab software toolset treatment collisions mass loss main - sequence stage for massive stars described by portegies zwart et al . 1998 1999 2000a observed parameters for arches quintuplet clusters presented in tab.1 clusters masses @xmath5 compact @xmath6pc projected distance from arches cluster to galactic center 34pc quintuplet cluster farther awaythird component projected distance to galactic center zero observed distance equals real distance cols < tab n12kinit tidal field characterized by oort ( 1927 ) constants @xmath7 @xmath8 local stellar density mass within clusters orbit distant galactic center calculated with mezger et al 1999 @xmath9 appropriate oort constants tidal field mass cluster density profile selected system determined total mass stellar system determines unit mass distance to first lagrangian point field sets distance unit velocity dispersion size stellar system sets time scale evolution cluster followed using direct integration including stellar binary evolution tidal field zwart 2000b economic reasons not all stars kept removed when 3 from center star cluster figure1 shows evolution mass number of stars of two models table star clusters further from galactic center live longer than closer estimating cluster lifetime via initial relaxation time age 48myear for model r150w4 weaker tidal field at distance 150pc from galactic center cluster lifetime to 59myear strength tidal field stronger cluster lifetime than mass loss from stellar evolution number of stars in models fig.decreases quickly than total mass mean mass stars cluster potential increases with time near @xmath11myear r34w4 and @xmath12myear r150w4 number stars drops below total cluster mass mean mass exceeds 1 models lost @xmath13% initial mass arches quintuplet clusters compact hard to notice near galactic center local stellar density high see clusters in projection background projected density near galactic center calculated by differentiating eq.1 distance line of sight portegies zwart et al. projected density about 3000pc@xmath3 figure2 shows evolution density projected half mass radius for models r150w1 r34w4 two error bars give projected half mass densities for clusters arches quintuplet horizontal dotted line surface density at distance 34pc from galactic center projected densities clusters order magnitude higher than background clusters lower background density remain unnoticed projected density of model r34w1 barely exceeds background remains unnoticed lifetime models r34w4 and r150w4 projected densities above background initially cluster farther from galactic center has lower density more extended tidal radius largerfirst million years cluster hard to notice among dense stellar background adopt minimum contrast three times projected background density @xmath14pc@xmath15 required for distinguishing star cluster cluster at distance 150pc visible 3million years ( @xmath16% lifetime almost 9million years @xmath17% cluster 34pc cluster far away from galactic center model r150w4 lives longer remains visible small fraction of lifetime two models observable 5% to 70% for clusters 150pc and 34pc expect large population of clusters similar to arches quintuplet may be hidden in galactic center estimate more than 40 clusters within projected distance 50pc from galactic center most older than arches quintuplet not exceeding @xmath18 years dissolve shorter studied evolution of two young compact star clusters arches quintuplet background stellar density galactic center projected density clusters conclude number clusters greater than observed most clusters remain hidden in stellar background observable first few million years compact within projected distance 50pc from galactic center between 10 and 40 clusters similar to arches cluster quintuplet may be hidden hidden clusters likely older less compact than foundthank piet hut ken janes jun makino steve mcmillan grateful drexel tokyo university grape hardware supported nasa hubble fellowship grant hf-01112.01 - 98a space telescope science institute association universities astronomy
| 0.349749
| 2,340
| 1,178
|
, Saving $0.1 in GPT-4.
|
18,564
|
i report on a recent determination by the alpha collaboration of the kaon @xmath0-parameter using lattice qcd with wilson type quarks .
an effort is made to control all systematic errors except for the quenched approximation .
the preliminary result for the renormalization group invariant parameter is @xmath1 , which translates to @xmath2 in the @xmath3 scheme with anticommuting @xmath4 .
|
the kaon @xmath0-parameter remains an important ingredient in current analyses of cp violation in the standard model @xcite .
it is is defined in qcd with up , down and strange quarks by the matrix element of a four - quark operator between kaon states , @xmath5 ^ 2.\end{aligned}\ ] ] while this matrix element is well - defined , its relation to the full amplitude in the standard model relies on the hypothesis that the charm quark can be treated as a heavy particle .
while the quality of this approximation is difficult to assess , it is typically assumed to be valid at the five percent level , which sets the scale for the precision to be attained by a lattice determination of @xmath6 .
despite recent progress with other fermion formulations , lattice qcd with wilson type quarks remains attractive because it is computationally cheap and does not suffer from mixing between flavour and spin degrees of freedom ( unlike staggered fermions ) . on the other hand ,
all axial symmetries are explicitly broken , which leads to mixing of operators with opposite chirality , and the possible occurence of unphysical fermion zero modes in the quenched approximation . in order to avoid the latter problem in typical quenched simulations , the masses of pseudoscalar mesons are typically heavier than the physical kaon mass .
concerning the calculation of @xmath6 , the mixing problem is particularly annoying . decomposing the operator @xmath7 the relevant piece for @xmath8-@xmath9 mixing is the parity even component , which renormalizes as follows @xcite : @xmath10_{\rm r } & = & z_{\rm vv+aa}\left[o_{\rm vv+aa}+\sum_{i=1}^4 z_i\ o_i^{d=6 } \right].\end{aligned}\ ] ]
while the mixing problem can be solved by imposing axial continuum ward identities @xcite , it represents a major obstacle for precision results . note that the parity - odd operator component @xmath11 does indeed renormalize multiplicatively @xcite
this can be exploited for the computation of @xmath6 as will be explained shortly .
axial and vector symmetries can be distinguished according to whether or not the quark mass term is left invariant .
hence , a non - standard form of the quark mass term also modifies the form of the symmetry transformations .
let us consider the continuum theory for a light quark doublet @xmath12 and the @xmath13 quark including a chirally twisted mass term , @xmath14 after a chiral rotation of the doublet fields @xmath15 and with @xmath16 chosen such that @xmath17 , the lagrangian reads @xmath18 the field rotation re - defines the symmetries and maps composite fields , e.g. @xmath19 in particular , the operators are mapped to each other at `` maximal twist '' @xmath20 , where the quark mass is determined entirely by the chirally twisted mass parameter @xmath21 .
hence , by using wilson quarks with a maximally twisted light quark doublet and a standard @xmath13 quark , the complicated operator mixing problem can be by - passed @xcite .
an additional benefit consists in the elimination of unphysical zero modes by the twisted mass term .
this allows for numerical simulations to get close to the physical situation : light , mass degenerate @xmath22 quarks and a heavier @xmath13 quark .
however , most results in lattice qcd are currently obtained in the limit where the kaon is made out of mass - degenerate @xmath23 and @xmath13 quarks . in this way
a quenched artefact is avoided @xcite , but it implies that the zero mode problem is back for the standard wilson @xmath13 quark . in order to cope with mass - degenerate quarks we also consider a different set - up , where the rles of @xmath13 and @xmath24 quarks are interchanged .
the chirally twisted doublet is now @xmath25 and after the chiral rotation one finds @xmath26 again the operators are mapped to each other provided @xmath27 . for obvious reasons we will refer to the two set - ups as @xmath28 and @xmath29 scenarios , respectively .
the latter has the advantage that both @xmath23 and @xmath13 quark masses can be decreased simultaneously without encountering unphysical zero modes .
setting @xmath16 to @xmath28 or @xmath29 requires some parameter tuning using known results for finite renormalization constants .
in addition one needs the multiplicative operator renormalization constant .
the renormalization problem has been solved non - perturbatively in @xcite , using a finite volume scheme based on the schrdinger functional and recursive finite size techniques @xcite .
the numerical simulations have been performed using the o(@xmath30 ) improved wilson quark action and the wilson s plaquette action for the gauge fields .
4 - 5 @xmath31-values have been chosen in the interval @xmath32 $ ] , corresponding to lattice spacings @xmath33 , if the scale is set by @xmath34 .
the lattice volumes range form @xmath35 to @xmath36 .
quark masses are tuned to achieve @xmath37 or @xmath38 and pseudoscalar masses around or above @xmath39 .
the analysis of excited states determined safe plateaux regions where @xmath6 could be extracted from suitable ratios of correlation functions .
finite volume effects were checked at the coarsest lattice spacing ( @xmath40 ) , and found to be below the statistical errors . in the @xmath28 scenario
chiral extrapolations were performed linearly to the physical kaon mass . in the @xmath29 scenario
the kaon mass could be reached by _ interpolation _ except at @xmath41 where finite volume effects at the physical kaon mass would have been non - negligible .
the resulting values for the @xmath6 are given in figure 1 as a function of @xmath42 .
discarding the values at the coarsest lattice the data seem to scale very well .
a continuum extrapolation of @xmath29 data linear in @xmath30 seems adequate .
we have performed a benchmark calculation of @xmath6 where , apart from the quenched approximation , all systematic errors are under control . these include cutoff effects , finite volume effects and the contamination by excited states .
a non - perturbative renormalization procedure has been employed , and the continuum limit has been taken . the preliminary result @xmath43 has the desired precision
. within errors it is compatible with results obtained by other groups using different lattice regularisations ( see @xcite for a recent review and further references ) .
hence , further progress will require the inclusion of dynamical quark flavours .
the recent progress with simulation algorithms for wilson - type quarks @xcite will soon allow to compute @xmath6 with a similar precision including the effect of light dynamical up and down quarks .
i would like to thank the organisers for the invitation to this nice conference , my collaborators p. dimopoulos , c. pena , f. palombi , a. vladikas , j. heitger for a pleasant collaboration , and the computer centre at desy zeuthen for providing the necessary cpu time on the apemille machines .
m. battaglia _ et al .
_ , arxiv : hep - ph/0304132 .
c. w. bernard , t. draper , g. hockney and a. soni , nucl .
proc . suppl .
* 4 * ( 1988 ) 483 .
s. aoki _ et al .
_ [ jlqcd collaboration ] , phys .
d * 60 * ( 1999 ) 034511 [ arxiv : hep - lat/9901018 ] .
r. frezzotti , p. a. grassi , s. sint and p. weisz [ alpha collaboration ] , jhep * 0108 * ( 2001 ) 058 [ arxiv : hep - lat/0101001 ] .
s. r. sharpe , arxiv : hep - ph/9412243 .
|
kaon @xmath0-parameter important in analyses cp violation standard model @xcite defined in qcd with quarks by matrix element four - quark operator between kaon states @xmath5 matrix element relation to full amplitude relies on hypothesis charm quark as heavy particle quality approximation difficult assumed valid at five percent level sets scale for precision lattice determination of @xmath6 progress lattice qcd with wilson type quarks attractive computationally cheap suffer from mixing between flavour spin degrees staggered fermions axial symmetries broken leads to mixing of operators opposite chirality unphysical fermion zero modes quenched approximation avoid masses of pseudoscalar mesons heavier than physical kaon mass calculation @xmath6 mixing problem annoying decomposing operator @xmath7 relevant for @xmath8-@xmath9 mixing is parity even component renormalizes @xcite : @xmath10_{\rm = z_{\rm vv+aa} vv+aa_}^4{aligned mixing problem solved axial continuum identities obstacle for precision results parity - odd operator component @xmath11 multiplicatively exploited for computation @xmath6 axial vector symmetries distinguished quark mass term invariant non - standard form quark mass term modifies symmetry transformations consider continuum theory for light quark doublet @xmath12 @xmath13 quark including chirally twisted mass term chiral rotation doublet fields field rotation re - defines symmetries maps composite fields @xmath19 operators mapped at maximal twist quark mass determined by chirally twisted mass parameter @xmath21 using wilson quarks with maximally twisted light quark doublet standard @xmath13 quark complicated operator mixing problem by - passed benefit elimination of unphysical zero modes by twisted mass term allows numerical simulations close to physical situation most results in lattice qcd obtained in limit where kaon mass - degenerate @xmath23 and @xmath13 quarksquenched artefact avoided zero mode problem standard wilson @xmath13 quark cope mass - degenerate quarks different set - up @xmath13 @xmath24 quarks interchanged twisted doublet @xmath25 rotation @xmath26 operators mapped @xmath27 set - ups @xmath28 and @xmath29 scenarios @xmath23 @xmath13 quark masses decreased without unphysical zero modes setting @xmath16 to @xmath28 @xmath29 requires parameter tuning renormalization multiplicative operator renormalization constant problem solved @xcite finite volume scheme schrdinger functional recursive finite size techniques numerical simulations wilson quark action wilson s plaquette action gauge fields 4 - 5 @xmath31-values chosen interval @xmath32 lattice spacings @xmath33 set @xmath34 lattice volumes range @xmath35 to @xmath36 quark masses tuned @xmath37 or @xmath38 pseudoscalar masses around above @xmath39 analysis determined safe plateaux regions @xmath6 extracted correlation finite volume effects checked at coarsest lattice spacing @xmath40 below statistical errors@xmath28 scenario extrapolations linearly physical kaon mass @xmath29 scenario kaon mass reached interpolation except @xmath41 finite volume effects kaon mass non - negligible resulting values @xmath6 figure 1 function @xmath42 discarding values coarsest lattice data scale well continuum extrapolation @xmath29 @xmath30 adequate benchmark calculation @xmath6 systematic errors under control include cutoff effects finite volume effects contamination excited states non - perturbative renormalization employed continuum limit taken preliminary result @xmath43 desired precision compatible with results groups lattice regularisations @xcite progress dynamical quark flavours progress simulation algorithms wilson - type quarks compute @xmath6 precision effect light dynamical quarks organisers collaborators p. dimopoulos c. pena f. palombi a. vladikas j. heitger computer centre desy zeuthen cpu time m. battaglia et al . arxiv : hep - ph/0304132 w. bernard t. draper g. hockney a. soni nucl . proc . suppl. 4 ( 1988 ) 483 aoki et alcollaboration phys . 60 1999 ) 034511 hep - lat/9901018 frezzotti grassi s sint alpha collaboration jhep 0108 2001 ) 058 hep - lat/0101001 r. sharpe hep - ph/9412243
| 0.307376
| 1,807
| 924
|
, Saving $0.1 in GPT-4.
|
18,571
|
in heavy ion collision experiments as well as in neutron stars , both baryon and isospin chemical potentials are different from zero .
in particular , the regime of small isospin chemical potential is phenomenologically important . using a random matrix model , we find that the phase diagram at non - zero temperature and baryon chemical potential is greatly altered by an arbitrarily small isospin chemical potential : there are two first order phase transitions at low temperature , two critical endpoints , and two crossovers at high temperature . as a consequence , in the region of the phase diagram explored by rhic experiments ,
there are _ two _ crossovers that separate the hadronic phase from the quark - gluon plasma phase at high temperature .
|
heavy ion collision experiments are important for our understanding of the strong interaction at nonzero temperature and density . in heavy ion collision experiments , both the baryon and the isospin densities are different from zero .
the time between the formation of the fireball and its freezeout is so short that only the strong interactions play a significant role and baryon number as well as isospin are conserved .
therefore , it is phenomenologically worthwhile to study the effects of a nonzero isospin chemical potential , @xmath0 , on the qcd phase diagram at nonzero temperature , @xmath1 , and baryon chemical potential , @xmath2 .
however , most studies at high temperature and nonzero density have been restricted to cases where either @xmath0 or @xmath2 is zero . for @xmath3 and @xmath4 ,
the phase diagram is very rich . at low @xmath1 and high @xmath2
, the ground state is believed to be a color superconductor @xcite .
if @xmath1 is increased and @xmath2 is decreased , a first order phase transition separates the hadronic phase from the quark gluon plasma phase .
if @xmath2 is further decreased , this first order critical line stops in a critical endpoint . at lower @xmath2
, there is a crossover between the hadronic phase and the quark gluon plasma phase .
these results are based on different models @xcite , as well as on exploratory lattice studies at low chemical potential @xcite . in the case of @xmath5 and @xmath6 ,
the fermion determinant is real and traditional lattice methods can be applied . in this case , the phase diagram is very rich as well . at low @xmath1 ,
an increase in @xmath0 above the pion mass leads to a superfluid phase with a pion condensate . at low @xmath1 ,
the phase transition between the hadronic phase and the pion condensation phase is second order and has mean field critical exponents .
if @xmath1 is increased , this second order phase transition becomes first order .
therefore there is a tricritical point in the phase diagram .
these results were found using both lattice simulations @xcite and effective theories @xcite . at high @xmath1 and low @xmath0 ,
a crossover separates the hadronic phase from the quark gluon plasma phase .
there also might be a critical endpoint and a first order phase transition at high @xmath1 when @xmath0 is increased @xcite .
we use a random matrix model as a schematic model for qcd to study the phase diagram at nonzero @xmath1 , @xmath2 , and @xmath0 @xcite .
this model has been previously used to study qcd at @xmath7 and @xmath8 @xcite .
we then analyze possible consequences for heavy ion collision experiments .
random matrix models were introduced in qcd to describe the correlations of low eigenvalues of the dirac operator @xcite .
it was shown that for large matrices these models are equivalent to the mass term of the chiral lagrangian that is uniquely determined by the symmetry of qcd @xcite .
therefore , in the chiral limit , random matrix theory provides an exact analytical description of the low - lying dirac spectrum . the idea is to replace the matrix elements of the dirac operator by gaussian random variables subject only to the global symmetries of the qcd partition function .
the temperature and chemical potentials enter through external fields structured according to these symmetries . for two quark flavors of mass @xmath9 and @xmath10
, the partition function of our model reads @xmath11 where @xmath12 , and @xmath13 are @xmath14 matrices , with @xmath15 .
the elements of the random matrix @xmath16 are complex .
first , we express the determinant in ( [ zrmt ] ) as a grassmann integral .
then , we perform the gaussian integration over @xmath16 .
third , the resulting four - fermion interaction is decoupled by means of a hubbard - stratonovich transformation at the expense of introducing mesonic degrees of freedom .
finally we perform the grassmann integration , and the partition function ( [ zrmt ] ) can be mapped onto @xcite @xmath17 where @xmath18 is an arbitrary complex @xmath19 matrix , and @xmath20 with @xmath21 , and @xmath22 with @xmath23 .
this is an exact mapping . in the large-@xmath24 limit
, this partition function can be evaluated by a saddle point approximation . to solve the saddle point equations
, we make an ansatz for the matrix @xmath18 based on the symmetry of the partition function .
since we have two independent chemical potentials , one for each quark flavor , the chiral condensates are not necessarily equal .
furthermore , at high enough @xmath0 , we expect a pion condensate .
we thus assume that @xmath25 in this parameterization , the chiral condensates are given by @xmath26 , @xmath27 , and the pion condensate by @xmath28 .
we thus get an effective potential that can be studied in the usual way .
we limit ourselves to the case @xmath29 .
we are particularly interested in the phase diagram in the @xmath2-@xmath1 plane at @xmath0 small enough so that the superfluid phase is never reached , because it corresponds to the conditions of heavy ion collision experiments .
the phase diagram in the @xmath2-@xmath1-plane for zero @xmath0 has been studied in @xcite . in the chiral limit
, the chiral restoration transition extends as a second order line from the @xmath30 axis , changes order at a tricritical point , and intersects the @xmath31 axis as a line of first order transition .
for nonzero quark mass , the first order transition ends in a critical point , and the second order transition becomes a crossover .
-@xmath1-plane for quark mass @xmath32 and @xmath0 as shown .
first order transitions are denoted by full curves , and crossovers by dotted curves .
the condensates @xmath33 and @xmath34 are omitted where @xmath35.,title="fig : " ] 0.2 cm -@xmath1-plane for quark mass @xmath32 and @xmath0 as shown .
first order transitions are denoted by full curves , and crossovers by dotted curves .
the condensates @xmath33 and @xmath34 are omitted where @xmath35.,title="fig : " ] [ rmtphased ] figure [ rmtphased ] shows the phase diagram in the @xmath2-@xmath1-plane at finite quark mass @xmath32 for zero isospin chemical potential , @xmath8 , and for @xmath36 .
we observe that the first order curve splits into two first order curves that are separated by @xmath37 .
this can be understood as follows . below the threshold for pion condensation
, the free energy separates into a sum over the two flavors . for @xmath8 ,
the chiral phase transition lines for both flavors coincide .
a nonzero @xmath0 breaks the flavor symmetry , and the first order transition lines for the two flavors split and shift in opposite directions .
the temperature of the critical endpoints is not affected by @xmath0 .
we have used a random matrix model for qcd at nonzero @xmath1 , @xmath2 , and @xmath0 . we have found that in the region of high @xmath1 and small @xmath2 , an arbitrarily small @xmath0 greatly alters the phase diagram in the @xmath2-@xmath1 plane : there are two crossovers , two critical endpoints , and two first order phase transition lines that separate the hadronic phase from the quark gluon plasma phase @xcite .
this could have important consequences for heavy ion collision experiments , since they are done at @xmath3 _ and _ @xmath6 .
if our random matrix model gives an accurate description of the phase diagram , it might also be interesting to use different isotopes in heavy ion collision experiments in order to vary @xmath0 at constant @xmath2 .
these results have been confirmed by other models , albeit with some constraints in one case @xcite .
finally , recent lattice studies at small nonzero @xmath2 can also be used at nonzero @xmath2 _ and _ @xmath0 , and will provide an important test for our results . for a review
see , k. rajagopal and f. wilczek , arxiv : hep - ph/0011333 .
a. barducci _ et al .
_ , phys .
d * 41 * , 1610 ( 1990 ) ; j. berges and k. rajagopal , nucl .
* b538 * , 215 ( 1999 ) . m. a. halasz _ et al . _ , phys . rev .
d * 58 * 096007 ( 1998 ) .
z. fodor and s. d. katz , jhep * 0203 * , 014 ( 2002 ) ; c. r. allton _ et al .
_ , phys .
d * 66 * , 074507 ( 2002 ) ; p. de forcrand and o. philipsen , nucl .
b * 642 * , 290 ( 2002 ) ; m. delia and m. p. lombardo , phys .
d * 67 * , 014505 ( 2003 ) .
j. b. kogut and d. k. sinclair , phys .
d * 66 * , 034505 ( 2002 ) ; arxiv : hep - lat/0407041 .
j. b. kogut _ et al .
_ , nucl .
b * 582 * , 477 ( 2000 ) ; d. t. son and m. a. stephanov , phys .
lett . * 86 * , 592 ( 2001 ) ; k. splittorff _ et al .
_ , nucl .
b * 639 * , 524 ( 2002 ) .
b. klein _ et al .
_ , phys .
d * 68 * , 014009 ( 2003 ) .
e. v. shuryak and j. j. m. verbaarschot , nucl .
a * 560 * , 306 ( 1993 ) ; j. j. m. verbaarschot , phys . rev . lett . * 72 * , 2531 ( 1994 ) . j. c. osborn _ et al .
_ , nucl . phys .
b * 540 * , 317 ( 1999 ) ; p. h. damgaard _ et al . _ , nucl .
b * 547 * , 305 ( 1999 ) ; d. toublan and j. j. m. verbaarschot , nucl .
b * 560 * , 259 ( 1999 ) .
|
ion collision experiments strong interaction at nonzero temperature density baryon isospin densities different from zero time fireball freezeout short strong interactions baryon isospin conserved study effects nonzero isospin potential qcd phase diagram at temperature baryon chemical potential studies high temperature nonzero density restricted to @xmath0 or @xmath2 zero @xmath3 @xmath4 phase diagram rich at low @xmath1 high @xmath2 ground state color superconductor if @xmath1 increased @xmath2 decreased first order phase transition separates hadronic phase from quark gluon plasma phase @xmath2 decreased line stops in endpoint lower @xmath2 crossover between hadronic phase quark gluon plasma phase results based on models exploratory lattice studies at low chemical potential @xmath5 @xmath6 fermion determinant real traditional lattice methods applied phase diagram rich low @xmath1 increase in @xmath0 above pion leads to superfluid phase with pion condensate low @xmath1 phase transition between hadronic second order mean field critical exponents if @xmath1 increased transition becomes first ordertricritical point in phase diagram results found using lattice simulations effective theories at high low @xmath0 crossover separates hadronic phase from quark gluon plasma phase critical endpoint first order phase transition at high @xmath1 when @xmath0 increased random matrix model for qcd phase diagram at nonzero @xmath1 used qcd at @xmath7 @xmath8 analyze consequences for heavy ion collision experiments random matrix models introduced in qcd correlations low eigenvalues dirac operator @xcite large matrices models equivalent to mass term chiral lagrangian determined by symmetry qcd random matrix theory provides description low - lying dirac spectrum replace matrix elements by gaussian random variables global symmetries qcd partition function temperature chemical potentials enter through external fields symmetries quark flavors mass @xmath9 @xmath10 partition function reads @xmath11 @xmath14 matrices elements random matrix @xmath16 complex express determinant as grassmann integral perform gaussian integration over @xmath16four - fermion interaction decoupled hubbard - stratonovich transformation mesonic freedom grassmann integration partition function mapped @xcite @xmath17 @xmath18 @xmath19 matrix @xmath20 @xmath21 @xmath23 exact mapping large-@xmath24 limit partition function evaluated by saddle point approximation ansatz for matrix @xmath18 symmetry partition function two independent chemical potentials one each quark flavor chiral condensates not equal high @xmath0 pion condensate assume @xmath25 chiral condensates by @xmath26 @xmath27 pion condensate by @xmath28 effective potential studied limit to case @xmath29 interested in phase diagram @xmath2-@xmath1 plane at @xmath0 superfluid phase corresponds conditions heavy ion collision experiments phase diagram @xmath2-@xmath1-plane for zero @xmath0 studied in @xcite chiral limit restoration transition extends second line from @xmath30 axis changes order tricritical point intersects @xmath31 axis first order transition nonzero quark mass first order transition ends in critical point second order transition becomes crossover@xmath1-plane quark mass @xmath32 @xmath0 transitions full curves crossovers dotted curves condensates @xmath33 omitted @xmath35@xmath1-plane quark mass @xmath32 @xmath0 transitions full curves crossovers dotted curves condensates @xmath33 omitted figure phase diagram @xmath2-@xmath1-plane finite quark mass @xmath32 zero isospin chemical potential @xmath8 @xmath36 first order curve splits into two separated @xmath37 below threshold pion condensation free energy separates sum two flavors @xmath8 phase transition lines flavors coincide nonzero @xmath0 breaks flavor symmetry transition lines split shift opposite temperature critical endpoints not affected @xmath0 random matrix model qcd nonzero @xmath1 @xmath0 high @xmath1 small @xmath2 arbitrarily small @xmath0 alters phase diagram @xmath2- plane two crossovers two critical endpoints two first order phase transition lines separate hadronic phase from quark gluon plasma phaseconsequences heavy ion collision experiments at @xmath3 @xmath6 random matrix model phase diagram use different isotopes vary @xmath0 @xmath2 results confirmed by models constraints lattice studies at nonzero @xmath2 used @xmath0 important test results review k. rajagopal f. wilczek arxiv hep - ph/0011333 barducci . d * 41 * 1610 ( 1990 ) j. berges k rajagopal b538 215 ( 1999 ) m halasz phys . d 58 096007 ( 1998 ) z. fodor d. katz 0203 014 ( 2002 ) r. allton phys . d 66 074507 ( 2002 ) p. de forcrand o. philipsen 642 290 ( 2002 ) m. delia p. lombardo phys . d 67 014505 ( 2003 ) j b. kogut k. sinclair phys . d 66 * 034505 ( 2002 ) arxiv hep - lat/0407041 kogut 582 477 ( 2000 ) t son m stephanov phys . 86 * 592 ( 2001 )splittorff nucl b 639 524 ( 2002 ) klein phys d * 68 * 014009 ( 2003 ) shuryak j j m verbaarschot nucl a 560 306 ( 1993 ) verbaarschot phys 72 2531 ( 1994 ) osborn nucl b 540 317 ( 1999 ) damgaard nucl b 547 305 ( 1999 ) toublan j m verbaarschot nucl b * 560 * 259 ( 1999 )
| 0.348358
| 2,509
| 1,279
|
, Saving $0.1 in GPT-4.
|
18,575
|
we study a @xmath0 symmetric scalar field model in four and three dimensions .
first , using our data in four dimensions in the weak coupling region , we demonstrate explicitly that the observed first order phase transition is induced by quantum fluctuations . next , based on the renormalization group and our new simulation results in three dimensions we argue that even if the @xmath1 symmetry is restored _ below _ the critical temperature the qcd finite temperature chiral phase transition for two flavor could be extremely weak first order .
|
let us consider a scalar field model with action @xmath2 where @xmath3 is a @xmath4 complex matrix and @xmath5 is space - time dimension .
it has @xmath0 global symmetry under transformation : @xmath6 , where @xmath7 and @xmath8 are @xmath9 unitary matrices .
in contrast to a @xmath10 scalar model , the symmetry breaking phase transition ( pt ) for eq .
( [ eq : model ] ) can be first order due to the well known coleman - weinberg phenomenon @xcite .
a qualitative argument for the coleman - weinberg phenomenon has been developed based on the effective potential and the renormalization group ( rg ) @xcite .
essentially first order pt occurs due to the existence of run - away rg trajectories . however , physical applications of eq .
( [ eq : model ] ) rely on the rg flow obtained in perturbation @xcite or @xmath11 expansion extrapolated to @xmath12@xcite .
it is important to extend these arguments in a nonperturbative study .
our first numerical results in 4d are reported in ref .
@xcite , which we refer to for details of the lattice simulations and discussions of their relevance to the continuum physics . as an illustration for the quantum fluctuation induced first order pt , we plot in fig .
1 a comparison of the one - loop perturbative calculation with mc data in the weak coupling region . here
the one - loop effect changes the second order pt at the tree level to first order .
first order pt were also found in the strong coupling region @xcite , indicating the absence of a stable infrared fixed point there .
in three dimensions , eq .
( [ eq : model ] ) can be used to describe the qcd finite temperature chiral phase transition ( chpt ) @xcite . here
the order of pt depends crucially on the number of fermion flavor @xmath13 and the pattern of symmetry . for @xmath14 chpt
is in general expected to be first order @xcite . for @xmath15 , if the axial @xmath1 anomaly remains effective up to the chpt temperature @xmath16 , the symmetry of the system will be @xmath17 and the transition can be second order . however ,
@xmath1 symmetry could be restored below @xmath16 , the symmetry becomes @xmath18 and chpt would be first order @xcite . so far there is no numerical evidence for a first order chpt for @xmath15 @xcite .
does this imply that the @xmath1 symmetry is not restored below @xmath16 ?
the answer can not be conclusive .
in fact , as we will show in the following using the effective action in eq .
( [ eq : model ] ) : even if we _
assume _ the @xmath1 symmetry is restored below @xmath16 , chpt can be very weakly first order . for @xmath19 the rg flow for eq .
( [ eq : model ] ) is plotted in fig . 2 where the @xmath20-functions are obtained in @xmath21 expansion with @xmath22 .
there is a uv fixed point at @xmath23 ( solid circle ) and a unstable ir fixed point at @xmath24 ( solid square ) .
the dotted lines in fig .
2 indicate the `` stability line '' ( sl ) .
qualitatively , for a renormalized theory located to the left side of sl , pt will be first order @xcite . however , pt can be weakly or strongly first order depending on the choice of the bare lagrangian .
the rg running of @xmath25 is very slow in the weak coupling region and becomes fast in the strong @xmath26 region .
a weak coupling bare action chosen to the right side of sl will need many decades of running in energy scale in order to cross sl .
therefore , even though the pt will be first order , the jump in the vacuum expectation value ( vev ) , @xmath27 , at the transition point can be many orders of magnitude smaller than the `` cut - off '' scale @xmath28 and the transition can be very weakly first order @xcite .
as an example , we plot @xmath29 in fig . 3 for @xmath30 . obviously , it is almost impossible to decide numerically at this point if the pt is second order or weakly first order . here
we wish to correct an error appeared in the literature @xcite .
the point at @xmath31 ( solid circle in fig .
3 ) which was claimed to be the critical point of a first order pt @xcite is actually deeply in the broken phase . the search for a first order pt is further complicated on a finite lattice .
the running of @xmath25 is controlled by the correlation length @xmath32 , which is limited by the box size @xmath33 .
therefore , a bare action fixed to the right of sl will only be able to run across sl in a large enough box @xcite .
the first order nature of the pt will not appear until the simulation is performed on a large lattice .
there is an interesting example of this phenomenon in the literature @xcite . in the simulation of @xmath0 nonlinear sigma model , which is in the same universality class as eq .
( [ eq : model ] ) , it was found that for @xmath19 the first order nature of the pt could be exposed only on lattices larger than @xmath34 .
we should also point out that for the same initial values of @xmath35 , the rg running is faster with increasing @xmath36 .
this explains the stronger first order pt for @xmath37 in ref .
@xcite . to observe the first order pt in a small box , one either has to move the bare action close to sl in the weak coupling region , or move to the strong @xmath26 region where the speed of running is fast @xcite .
we give an example in fig .
4 where the bare action is set to be very close to sl .
we are able to observe clear signal for a first order pt on the @xmath38 lattice .
what are the implications for finite temperature qcd ?
let us assume that eq .
( [ eq : model ] ) becomes a good effective theory for qcd at energy scale @xmath39 .
then the strength of first order pt crucially depends on the values of the effective coupling at scale @xmath28 . as discussed above ,
if @xmath40 fall into the weak coupling region , finding the first order pt will become a tough job .
while it is not possible to determine @xmath41 for qcd , it was found in a large color ( @xmath42 ) approximation for the nambu - jona - lasinio ( njl ) model that @xmath43 @xcite where @xmath44is the cut - off for njl model and @xmath28 is the scale when the linear sigma model becomes a good effective theory .
although njl model is a poor approximation of qcd , we might believe that it is at least qualitatively correct .
then @xmath26 can be strong or weak depending on the ratio @xmath45 ( one might take @xmath46 ) . since @xmath26 does not depend on @xmath13 ,
the only feature that distinguishes flavor is the speed of rg flow .
we could immediately draw a conclusion that it would be easier to observe the first order pt for @xmath47 than @xmath15 , which agrees with well known simulation results @xcite . even in the case of @xmath48 and @xmath26
is very large ( eq .
( [ eq : model ] ) becomes effectively the nonlinear sigma model ) , results of ref .
@xcite indicate that one may need a quite large lattice to expose the first order nature of pt . beyond large @xmath42 limit ,
one in principle can not eliminate the possibility of a stronger @xmath13 dependence for qcd .
then for @xmath15 , @xmath49 could fall in the very weak coupling region such that pt is extremely weak first order .
|
consider scalar field model action @xmath2 @xmath3 complex matrix @xmath5 space - time dimension @xmath0 global symmetry transformation @xmath6 @xmath7 @xmath9 unitary matrices contrast @xmath10 scalar model symmetry breaking phase transition pt eq . first order coleman - weinberg phenomenon @xcite qualitative argument effective potential renormalization group rg ) @xcite first order pt run - away rg trajectories physical applications eq. rely rg flow perturbation @xcite @xmath11 expansion @xmath12@xcite extend arguments nonperturbative study first numerical results 4d ref. @xcite lattice simulations relevance continuum physics illustration quantum fluctuation induced first order pt fig . 1 comparison one - loop perturbative calculation mc data weak coupling region one - loop effect changes second order pt tree level first order first order pt found strong coupling region @xcite absence stable infrared fixed point eq . describe qcd finite temperature chiral phase transition @xcite order pt depends number fermion flavor @xmath13 pattern symmetry@xmath14 chpt expected first order @xcite @xmath15 axial @xmath1 anomaly effective up to chpt temperature @xmath16 symmetry @xmath17 transition second order @xmath1 symmetry restored below @xmath16 symmetry becomes @xmath18 chpt first order @xcite no numerical evidence first order chpt @xmath15 @xcite @xmath1 symmetry not restored below @xmath16 ? conclusive @xmath1 symmetry restored below @xmath16 chpt weakly first order @xmath19 rg flow eq plotted fig . 2 @xmath20-functions @xmath21 expansion @xmath22 uv fixed point at @xmath23 circle unstable ir fixed point at @xmath24 dotted lines indicate stability line ( sl ) renormalized theory left side of sl pt first order @xcite pt weakly or strongly first order depending choice bare lagrangian rg running @xmath25 slow in weak coupling region fast in strong @xmath26 region weak coupling bare action right side of sl decades running cross sl pt first order jump in vacuum expectation value vev @xmath27 at transition point smaller than cut off scale @xmath28 transition weakly first order @xcite plot @xmath29 in fig . 3 for @xmath30 almost impossible to decide if pt second or first order error in literature point at @xmath31 solid circle fig . 3 critical point of first order pt in broken phase search for first order pt complicated on finite lattice running of @xmath25 controlled by correlation length @xmath32 limited by box size @xmath33 bare action fixed right of sl run across sl in large box first order nature pt until simulation on large lattice example literature simulation @xmath0 nonlinear sigma model for @xmath19 first order nature pt exposed only on lattices larger than @xmath34 same initial values of @xmath35 rg running faster with increasing @xmath36 explains stronger first order pt for @xmath37 to observe first order pt in small box move bare action close to sl weak region or move to strong @xmath26 region speed running fast example in fig .bare action close to sl clear signal for first order pt on @xmath38 lattice implications for finite temperature qcd ? eq . good theory for qcd at energy scale @xmath39 strength of first order pt depends on effective coupling at @xmath28 if @xmath40 weak coupling region finding first order pt tough not possible determine @xmath41 for qcd found in large color @xmath42 ) approximation for nambu - jona - lasinio model @xmath43 @xmath44is cut - off for njl model @xmath28 scale linear sigma model good effective theory njl model poor approximation of qcd qualitatively correct @xmath26 strong or weak depending on ratio @xmath45 @xmath26 depend on @xmath13 flavor speed of rg flow easier to observe first order pt for @xmath47 than @xmath15 agrees with simulation results @xcite @xmath48 and @xmath26 large eq nonlinear sigma model results large lattice to expose first order nature of pt @xmath42 limit stronger @xmath13 dependence for qcd @xmath49 could fall in weak coupling region pt weak first order
| 0.266711
| 1,763
| 906
|
, Saving $0.1 in GPT-4.
|
18,578
|
in the framework of the spacetime with torsion , we obtain the flavor evolution equation of the mass neutrino oscillation in vacuum . a comparison with the result of general relativity case
, it shows that the flavor evolutionary equations in riemann spacetime and weitzenbck spacetimes are equivalent in the spherical symmetric schwarzschild spacetime , but turns out to be different in the case of the axial symmetry .
2rr_s2r 2r2l^2r^2 2l^2a^2 2l^2b^2
|
on account of the super - kamiokande atmospheric neutrino experiment , which confirmed a nonvanishing mass for the neutrino @xcite , the neutrino oscillation problem became an even hotter topic in high energy physics , both from the experimental and from the theoretical points of view @xcite .
as a natural extension to this problem , many authors consider the neutrino oscillation in the presence of gravitation , that is , in a curved spacetime .
this means to extend the physics related to the neutrino oscillation in a minkowski spacetime with lorentz invariance , to a riemannian spacetime with the usual invariance under general coordinate transformation .
the gravitational effect on the neutrino oscillation has attracted much attention recently @xcite in the framework of general relativity , although a lot of problems concerning the understanding of the gravitationally induced neutrino oscillation still persists .
however many alternative mechanisms have been proposed to account for the gravitational effect on the neutrino oscillation ; _
e.g. _ the equivalence principle and neutrino oscillation @xcite . as a further theoretical exploration ,
more recently torsion induced neutrino oscillation in @xmath0 spacetime @xcite with both curvature and torsion is also proposed @xcite . in this article , we extend the neutrino oscillation problem into the spacetime with torsion but without curvature , _
i.e. _ in a weitzenbck spacetime @xmath1 @xcite , in the framework of new general relativity ( ngr)@xcite .
the paper is organized as follows . in sec .
ii we briefly introduce the gravitational theory in weitzenbck spacetime . in sec .
iii we compare dirac equations in riemaniann spacetime and in weitzenbck spacetime , and in sec .
we derive the evolutionary equation of the neutrino oscillation amplitude in weitzenbck spacetime .
we set @xmath2 throughout this article .
the new general relativity is a parallel tetrad gravitational theory , which is formulated on a weitzenbck spacetime @xcite .
it is characterized by the vanishing curvature tensor and by the torsion tensor formed of four parallel tetrad vector fields .
namely , the gravitational field appears as the nontrivial part of the tetrad field .
we will use the greek alphabet ( @xmath3 , @xmath4 , @xmath5 , @xmath6 ) to denote tensor indices , that is , indices related to spacetime . the latin alphabet ( @xmath7 , @xmath8 , @xmath9 , @xmath6 ) will be used to denote local lorentz ( or tangent space ) indices .
of course , being of the same kind , tensor and local lorentz indices can be changed into each other with the use of the tetrad , denoted by @xmath10 , and supposed to satisfy h^a _
h_a^ = _ ^ ; h^a
_ h_b^ = ^a_b .
[ orto ] as is known , curvature and torsion are properties of a connection@xcite , and many different connections may be defined on the same space .
for example , denoting by @xmath11 the metric tensor of the tangent space , a nontrivial tetrad field can be used to define the riemannian metric g _
= _ a b h^a _ h^b _ , [ gmn ] in terms of which the levi civita connection ^ _ = g^ [ lci ] can be introduced .
its curvature ^ _ = _ ^ _ + ^ _ ^ _ - ( ) , [ rbola ] according to general relativity , accounts exactly for the gravitational interaction . owing to the universality of gravitation , which means that all particles feel @xmath12 the same , it turns out possible to describe the gravitational interaction by considering a riemann spacetime with the curvature of the levi civita connection , in which all particles will follow geodesics .
this is the stage set of einstein s general relativity , the gravitational interaction being mimicked by a geometrization of spacetime . on the other hand , a nontrivial tetrad field
can also be used to define the linear cartan connection ^ _
= h_a^_h^a _ , [ car ] with respect to which the tetrad is parallel : _ h^a _
_ - ^ _ h^a _ = 0 .
[ weitz ] for this reason , tetrad theories have received the name of teleparallelism , or absolute parallelism . plugging in eqs.([gmn ] ) and ( [ lci ] ) , we get ^ _
= ^ _ + k^ _ , [ rel ] where ^ _ = [ conto ] is the contorsion tensor , with t^ _ = ^ _ - ^ _ [ tor ]
if now we try to introduce a spacetime with the same properties of the cartan connection @xmath13 , we end up with a weitzenbck spacetime @xcite , a space presenting torsion , but no curvature .
this spacetime is the stage set of the teleparallel description of gravitation .
considering that local lorentz indices are raised and lowered with the minkowski metric @xmath14 , tensor indices on it will be raised and lowered with the riemannian metric @xmath15 @xcite .
universality of gravitation , in this case , means that all particles feel @xmath13 the same , which in turn means that they will also feel torsion the same . from the above considerations
, we can infer that the presence of a nontrivial tetrad field induces both , a riemannian and a teleparallel structures in spacetime .
the first is related to the levi civita connection , a connection presenting curvature , but no torsion .
the second is related to the cartan connection , a connection presenting torsion , but no curvature .
it is important to remark that both connections are defined on the very same spacetime , a spacetime endowed with both a riemannian and a teleparallel structures . as already remarked , the curvature of the cartan connection vanishes identically : ^ _ = _ ^ _ + ^ _ ^ _ - ( ) 0 .
[ r ] substituting @xmath16 from eq.([rel ] ) , we get ^ _
= ^ _ + q^ _ 0 , [ eq7 ] the gravitational lagrangian density in ngr is written in the form _ g= , where @xmath17 , @xmath18 and @xmath19 are dimensionless parameters of the theory , t _ = 1 2 ( t _ + t _ ) + 1 6 ( g _ v_+g _ v _ ) -1 3 g _ v _ , + v _
= t^ _ , a _ = 1 6 _ t^ with @xmath20 being the completely antisymmetric tensor normalized as @xmath21 . by applying variational principle to the above lagrangian
, we get the field equation : i^= t^ , = 8 , with i^=2[d_f^+ v_f^+h^ -1 2 g^l_g ] , where f^ & = & 1 2 h^k l_g _ , + & = & 1 + & = & -f^ , + h^ & = & t^ f_^- 1 2 t^ f^_=h^ , + l_g & = & l_g , + t^ & = & 1 _ m _ h^k . here
@xmath22 denotes the lagrangian density of material fields and @xmath23 is the material energy - momentum tensor which is nonsymmetric in general . in order to reproduce the correct newtonian limit
, we require the parameters @xmath17 and @xmath18 to satisfy the condition a_1 + 4a_2 + 9a_1a_2=0 , called the newtonian approximation condition , which can be solved to give a_1=-1 3(1- ) , a_2=1 3(1 - 4 ) with @xmath24 being a dimensionless parameter .
the comparison with solar - system experiments shows that @xmath24 should be given by = -0.004 0.004 ,
previous to entering to our main point , we stress that the semiclassical by approximated dirac particle does not follow a geodesic exactly .
however the force aroused by the spin and the curvature coupling has little contribution to the geodesic deviation@xcite .
so here we take the neutrino as a spinless particle to go along the geodesic .
the gravitational effects on the spin are incorporated into dirac equation through the `` spin connection '' @xmath25 appearing in the dirac equation in curved spacetime @xcite , which is constructed by means of the variation of the covariant lagrangian of the spinor field . in the parallel tetrad theory of hayashi and shirafuji @xcite , considering the covariant derivative of spinor to coincide with the usual derivative ,
the dirac langrange density @xmath26 is given by l_d = 1 2h^_k[^k_| - _ |^k ] - m | . by taking variation with respect to @xmath27 , the dirac equation in weitzenbck spacetime is given as = 0 , [ dirac2 ] and the spin connection @xmath25 is _
= 12v _ where @xmath28 is the tetrad vector .
the spin connection @xmath25 is different from that of general relativity because the parallelism of vector in weitzenbck spacetime makes the covariant derivative of spinor to coincide the usual dirivative .
however , the lagrangian of dirac equation in general relativity is constructed by the covariant derivative and its explicit expression for the spin connection @xmath25 is @xcite _ = 1 8[^b , ^c ] h_b^ h_c ; .
we must first simplify the dirac matrix product in the spin connection term .
it can be shown that ^a [ ^b , ^c ] = 2 ^ab ^c - 2 ^ac ^b - 2i ^dabc _ 5 _ d , [ gammas ] where @xmath29 is the metric of flat space and @xmath30 is the ( flat space ) totally antisymmetric tensor , with @xmath31 . with eq.([gammas ] ) , the contribution from the spin connection in general relativity is _
= 12v _ - 3i 4a__5 , [ ga2 ] where a_= 16 _
t^ @xmath32 is the tetrad axial - vector represented the deviation of the axial symmetry from the spherical symmetry @xcite . or , in the spherical case , schwarzschild spacetime , both dirac equations in riemaniann spacetime and in weitzenbck spacetime are equivalent .
the difference between them will appear if the spacetime includes the axial symmetric components , kerr spacetime for instance .
as proceeded in ref.@xcite , in order to incorporate the gravitational effect into the matter effect , we rewrite the spin connection term as ^a h^_a _ = ^a h^_a ( ia_g p_l ) = ^a h_a^\ { i a_g } , where @xmath33 is the left
handed projection operator , and a^_g ( -g)^1/2 _ 5 v _ in the above equations , @xmath34^{1/2}$ ] .
proceeding as in the discussion by cardal and fuller @xcite , we will borrow the three - momentum operator used in the neutrino oscillation , which can be calculated from the mass shell condition obtained by iterating the dirac equation @xmath35 where we have not included background matter effects .
@xmath36 is the vacuum mass matrix in flavour basis m_f^2=u ( cc m_1 ^ 2 & 0 + 0&m_2 ^ 2 ) u^ , where u= ( cc cos & sin + -sin & cos ) , with @xmath37 the mixing angle between different eigenstates of mass neutrinos . for relativistic neutrinos , ignoring terms of @xmath38 and @xmath39 , and remembering that we employ a null tangent vector @xmath40 , which is defined as @xmath41 , and + @xmath42 $ ] , we find p _
n^ = - ( m_f^2/2 + a_gn^ ) .
[ pn ] it is convenient to define a column vector of flavor amplitudes .
for example , for the mixing between @xmath43 and @xmath44 , [ cl ] ( ) .
eq.([cl ] ) can be written as a differential equation for the null world line parameter @xmath45 , i dd = ( m_f^2/2 + a_fgn^ ) , [ dcds ] where the subscrip f denotes flavor basis "
. eq.([dcds ] ) can be integrated to yield the neutrino flavor evolution .
similar equations were obtained in refs.@xcite in riemaniann spacetime and in @xmath46 spacetime respectively .
in this paper , we studied the evolution equation for the neutrino oscillation amplitude in the framework of the new general relativity @xcite .
we find that our results will be equivalent to that of general relativity in the case of spherical symmetry , and the difference will occur when the axial tetrad vector is not zero .
the author would like to thank fapesp - brazil for financial support , and j.g .
pereira for helpful discussions .
thanks are also due to the hospitalities from s. civaram , k. hayashi , f.w .
hehl and j.m .
nester when he visited their research groups .
|
super - kamiokande atmospheric neutrino experiment confirmed nonvanishing mass for neutrino neutrino oscillation problem became hotter topic in high energy physics experimental theoretical authors consider neutrino oscillation in presence gravitation curved spacetime physics neutrino oscillation in minkowski spacetime with lorentz invariance to riemannian spacetime with usual invariance under general coordinate transformation gravitational effect on neutrino oscillation attracted attention framework general relativity problems understanding neutrino oscillation persists alternative mechanisms proposed for gravitational effect oscillation equivalence principle and neutrino oscillation torsion induced neutrino oscillation in @xmath0 spacetime with curvature torsion proposed article extend neutrino oscillation problem into spacetime with torsion without curvature weitzenbck spacetime framework new general relativity paper organized introduce gravitational theory in weitzenbck spacetime compare dirac equations in riemaniann spacetime and weitzenbck spacetime derive evolutionary equation of neutrino oscillation amplitude in weitzenbck spacetime articlenew general relativity is parallel tetrad gravitational theory formulated on weitzenbck spacetime @xcite characterized by vanishing curvature torsion tensor four parallel tetrad vector fields gravitational field as nontrivial part of tetrad field greek alphabet denote tensor indices related to spacetime latin alphabet ) local lorentz indices tensor local lorentz indices can be changed with tetrad denoted by @xmath10 satisfy h^a _ h_a^ = _ ^ ; h^a _ h_b^ = ^a_b curvature torsion are properties of connection@xcite different connections defined on same space metric tensor tangent space nontrivial tetrad field define riemannian metric g _ = _ a b h^a _ h^b _ levi civita connection ^ _ = g^ introduced curvature ^ _ = _ ^ _ + ^ _ ^ _ - ( accounts for gravitational interaction universality of gravitation all particles feel same describe gravitational interaction riemann spacetime with curvature of levi civita connection particles follow geodesicsstage set einstein s general relativity gravitational interaction mimicked by geometrization spacetime nontrivial tetrad field linear cartan connection ^ _ = h_a^_h^a _ tetrad parallel : _ h^a _ - ^ _ h^a _ = 0 tetrad theories teleparallelism absolute parallelism eqs.([gmn lci ] ^ _ = ^ _ + k^ _ rel ^ _ = conto contorsion tensor t^ _ = ^ _ - ^ _ [ tor ] spacetime same properties cartan connection @xmath13 weitzenbck spacetime @xcite presenting torsion no curvature spacetime stage set teleparallel description gravitation local lorentz indices raised lowered with minkowski metric @xmath14 tensor indices raised lowered with riemannian metric @xmath15 @xcite universality of gravitation particles feel @xmath13 same feel torsion same nontrivial tetrad field induces riemannian teleparallel structures in spacetime first related to levi civita connection curvature no torsion second related cartan connection torsion no curvature both connections defined on same spacetime riemannian teleparallel structurescurvature cartan connection vanishes ^ _ - 0 substituting @xmath16 from eq.( ^ _ = ^ _ + q^ _ 0 gravitational lagrangian density in ngr _ g= @xmath17 dimensionless parameters t _ = 1 2 ( + ) + 1 6 ( g -1 3 = t _ = 1 6 _ t^ @xmath20 antisymmetric tensor normalized as @xmath21 applying variational principle lagrangian field equation : i^= t^ , = 8 i^=2[d_f^+ v_f^+h^ -1 2 g^l_g ] f^ & = 1 2 h^k l_g_- 1 2 t_ l_g 1 @xmath22 lagrangian density material fields @xmath23 material energy - momentum tensor nonsymmetric newtonian limit parameters @xmath17 @xmath18 satisfy condition a_1 + 4a_2 + 9a_1a_2=0 newtonian approximation condition a_1=-1 3(1- ) a_2=1 3(1 - 4 ) @xmath24 dimensionless parametercomparison with solar - system experiments shows @xmath24 = -0.004 0.004 semiclassical dirac particle follow geodesic force by spin curvature coupling geodesic deviation neutrino spinless particle geodesic gravitational effects spin incorporated into dirac equation through spin connection @xmath25 curved spacetime constructed variation covariant lagrangian spinor field parallel tetrad theory dirac langrange density @xmath26 given by l_d = 1 2h^_k[^k - - m variation @xmath27 dirac equation in weitzenbck spacetime = 0 , [ dirac2 ] spin connection @xmath25 _ = 12v _ @xmath28 tetrad vector spin connection @xmath25 different from general relativity parallelism vector covariant derivative lagrangian of dirac equation in general relativity constructed by covariant derivative explicit expression spin connection @xmath25 is @xcite _ = 1 8[^b ] h_b h_c simplify dirac matrix product in spin connection term^a ^b ^c ] = 2 ^ab - 2 ^ac ^b - 2i ^dabc _ 5 _ d gammas @xmath29 flat space @xmath30 antisymmetric tensor @xmath31 contribution spin connection relativity _ = 12v _ - 3i 4a__5 a_= 16 _ t^ @xmath32 tetrad axial - vector deviation axial symmetry spherical symmetry dirac equations riemaniann weitzenbck spacetime equivalent difference spacetime includes axial symmetric components incorporate gravitational effect matter effect rewrite spin connection term ^a h^_a _ = ^a h^_a ( p ) = ^a h_a^\ { a_g } @xmath33 left handed projection operator a^_g ( -g)^1/2 _ 5 v _ @xmath34^{1/2}$ borrow three - momentum operator neutrino oscillation calculated mass shell condition iterating dirac equation @xmath35 background matter effects@xmath36 vacuum mass matrix flavour basis m_f^2=u ( cc m_1 ^ 2 0 + 0&m_2 ^ 2 ) u= ( cc cos sin + -sin cos ) @xmath37 mixing angle mass neutrinos relativistic neutrinos @xmath38 @xmath39 null tangent vector @xmath40 defined @xmath41 @xmath42 p _ n^ = - ( m_f^2/2 + a_gn^ ) column vector flavor amplitudes mixing @xmath43 @xmath44 eq.([cl ] differential equation null world line parameter @xmath45 dd = ( m_f^2/2 + a_fgn^ ) flavor basis eq.([dcds neutrino flavor evolution similar equations@xcite riemaniann spacetime @xmath46 spacetime studied evolution equation neutrino oscillation amplitude new general relativity @xcite results equivalent general relativity spherical symmetry difference axial tetrad vector not zero fapesp - brazil j.g . pereira discussions thanks s. civaram k. hayashi f.w . hehl j.m . nester
| 0.43409
| 3,001
| 1,572
|
, Saving $0.1 in GPT-4.
|
18,595
|
new systems are required for optical limiting against broadband laser pulses .
we demonstrate that the association of non - linear scattering from single - wall carbon nanotubes ( swnt ) and multiphoton absorption ( mpa ) from organic chromophores is a promising approach to extend performances of optical limiters over broad spectral and temporal ranges .
such composites display high linear transmission and good neutral colorimetry and are particularly efficient in the nanosecond regime due to cumulative effects .
|
active eye and sensor protection against high power laser is an operational need of growing importance due to the democratization of frequency - agile pulsed lasers .
an ideal optical limiter should fulfill high - level specifications , like broadband optical limiting efficiency over the whole visible spectrum , and broadband temporal efficiency from sub - nanosecond pulses to continuous regime .
furthermore , it should also preserve the quality of observation / detection at low fluences and should therefore display high linear optical transmittance and neutral colorimetry .
extensive researchs were conducted over the past fifteen years and led to the emergence of three main classes of nonlinear optical materials : reverse saturable absorbers @xcite , multiphoton absorbers @xcite and nonlinear scattering systems @xcite . however
, none of these systems , _ taken individually _
, is able to fully fulfill the specifications listed above .
some attempts were performed with combinations of nonlinear optical materials in cascaded geometries : multi - plate or tandem cells @xcite , use of two intermediate focal planes of a sighting system @xcite . in this letter , we propose a new approach for the design of composite optical limiters , in which two complementary nonlinear optical materials are mixed together in the same cell .
indeed , we studied mixtures of single wall carbon nanotubes ( swnt ) suspensions , which were recently shown to be effective optical limiters @xcite , and multiphoton absorbers ( mpa ) solutions .
nonlinear scattering is the main limiting phenomenon for swnt suspensions , due to the growth of solvent vapor bubbles at low fluences and long pulses , and to the growth of carbon bubbles from nanotube sublimation at high fluences and short pulses @xcite .
optical limiting is effective for relatively long pulses , typically from the nanosecond to the microsecond regimes .
as far as mpa solutions are concerned , their strong multiphoton absorption cross - sections are responsible of limitation , which is effective for shorter pulses ( subpicosecond to a few nanosecond ) .
the materials and the experimental aspects of the work are presented in section 2 .
the association of the non linear scattering properties of swnt and the multiphoton absorption properties of mpa is investigated in the nanosecond regime in section 3 .
we finally discuss the expected optical limiting performances of such composites from picosecond to microsecond regimes in section 4 .
swnt were produced by the electric arc process and were purchased from nanoledge@xmath0 and mer@xmath0 .
these samples were extensively characterised using scanning and transmission electron microscopy , x - ray diffraction , raman and optical spectroscopy @xcite .
the mean diameter of the nanotubes is approximately of 1.4 nm .
suspensions of as - produced , raw samples ( from nanoledge@xmath0 ) , hereafter referred as nt - raw , were prepared in chloroform @xcite . by contrast , purified nanotubes ( from mer@xmath0 ) could not be suspended in chloroform .
these purified nanotubes were made soluble in chloroform by grafting long alkyl chains on their surface @xcite .
indeed , acidic treatment ( h@xmath1so@xmath2 / hno@xmath3 ( 3/1 ) ) of the nanotubes leads to the formation of carboxylic groups on the nanotube surface @xcite .
activation of these groups with thionyl chloride followed by coupling with octadecylamine yields grafted nanotubes which are fully soluble in chloroform @xcite .
the linear transmittance spectra of suspensions of raw and functionalised samples ( hereafter designated as nt - graft ) are almost undistinguishable ( not shown ) .
the optical limiting properties of as - produced nanotubes and grafted purified nanotubes suspensions in chloroform are similar , whatever the pulse duration . 2,2-([1,1-biphenyl]-4,4-diyldi-2,1-ethenediyl)-bis - benzenesulfonic acid disodium salt , most usually named _ stilbene-3 _
@xcite , is a commercially available dye which was used as reference compound for multi - photon absorption .
solubility of stilbene-3 is high ( 300
g / l ) in dmso and moderate ( 20
g / l ) in water but stilbene-3 is insoluble in chloroform . in order to achieve solubility of stilbene-3 in chloroform
, sodium counter - ions were exchanged with quaternary dimethyl - dioctadecyl ammonium groups .
the presence of ammoniums bearing long alkyl chains on the dye allowed modified stilbene-3 to be soluble in chcl@xmath3 ( @xmath4200 g / l ) .
linear optical transmission of swnt suspensions were adjusted to 70 @xmath5 at 532 nm in 2 mm thick cells . for such transmittances ,
the nanotube concentration was around 10 mg / l .
the mpa concentration in the reference sample and in the composites was 50
nonlinear optical transmittance measurements were performed using different laser sources and test beds : ( i ) a rsg-19 experimental set - up in a f/5 focusing geometry with a 1.5 mrad collecting aperture @xcite , using a frequency - doubled nd : yag laser emitting 7 ns pulses at 532 nm ( ii ) an optical parametric oscillator ( opo ) with a pulse duration of 3 ns at 532 nm , in a f/30 focusing geometry , ( iii ) a q - switched , but non injected , frequency doubled nd : yag , with a pulse duration of 15 ns in a f/50 focusing geometry . note that for the two latter test beds , the rayleigh length is larger than the cell length and no diaphragm is used .
therefore , results from these two test beds and rsg-19 set up can not be directly compared .
the results obtained in the f/5 geometry , where the focusing conditions allow to work at high fluences , are reported in figure [ fig : fig_otan ] .
unexpectedly , the optical limiting performances are worse for the combination of nanotubes and modified stilbene-3 than for the nanotubes alone ( figure [ fig : fig_otan ] , left ) . in the mixture
, limiting is thwarted by an adverse effect .
the drop of performances is especially important at low fluences .
we also observed that the stability of the composite suspension was poor : aggregation of the nanotubes occurred within a few hours .
by contrast , when the suspensions of swnt and stilbene-3 were prepared in water with the help of surfactants @xcite , no instability was observed and the optical limiting performances of the mixture were slightly better than those of the nanotubes alone . on the other hand , if grafted swnt are used ( figure [ fig : fig_otan ] , right ) , the adverse effect disappears although no improvement is observed .
the same samples were studied with a different geometry ( f/50 ) and longer pulses ( 15 ns ) .
results are displayed in figure [ fig : fig_nico ] .
the loss of performances in the composite prepared with raw nanotubes is striking ( fig .
[ fig : fig_nico ] , left ) .
the optical limiting threshold is significantly larger than that of the nanotubes alone ( 200 mj/@xmath6 for the mixture vs 50 mj/@xmath6 for raw nanotubes ) .
once again , no adverse effect is observed with composites prepared with functionalised nanotubes .
furthermore , one observes a slight but significant cumulative effect , as initially expected ( fig .
[ fig : fig_nico ] , right ) . in the light of these experiments ,
we assign the adverse effect to an adsorption of the chromophores on the surface of the nanotubes .
such a coating acts as a contact resistance which delays heating of the surrounding solvent .
a similar effect has been observed on carbon black suspensions embedded in surfactant @xcite .
the hypothesis of contact resistance is also confirmed by pump - probe experiments which will be reported elsewhere @xcite .
adsorption may be due to @xmath7-stacking of the aromatic rings of the mpa over the nanotube surface . in water suspensions ,
the presence of surfactants prevents the formation of the coating @xcite . for functionalised samples
, adsorption is hindered by the octadecylamine chains grafted on the nanotube surface which act as steric barriers .
transmittance ) in the middle and right graphs , respectively.,width=566 ] finally , optical limiting experiments were performed with 3 ns pulses .
results are shown in figure [ fig : fig_opo_532 ] .
with this set - up , the results are very similar for raw and grafted nanotubes .
this is in agreement with the hypothesis of a contact resistance between chromophores and nanotubes . indeed , for short ( 3 ns ) pulses , nonlinear scattering is mainly due to the sublimation of nanotubes which induces the growth of carbon vapor bubbles @xcite .
by contrast , for longer ( 15 ns ) pulses , scattering at the limiting threshold is due to the growth of solvent vapor bubbles , nucleated by heat transfert from swnt to surrounding solvent @xcite .
while coating of the chromophore on the nanotubes is expected to slow down the heat transfer from swnt to solvent , one does not expect any change in the heating and sublimation dynamics of the nanotubes .
the grafting of long alkyl chains on the nanotubes prevent interactions with the chromophores and allow cumulated efficiencies of both swnt and mpa .
the improvement of the performances due to the cumulative effect is best observed when the limitation efficiency of the chromophores is comparable to that of the nanotubes .
this occurs only at high fluences for nanosecond pulses and 70 @xmath5 transmittance cells . in the right part of figure
[ fig : fig_opo_532 ] , the cumulative effect is emphasized for a sample prepared with a three times smaller concentration of nanotubes ( 82 @xmath5 transmittance ) .
it is obvious that the cumulative effect will also be more effective for larger concentrations of chromophore and/or chromophores with larger multiphoton absorption cross - sections @xcite . on the other hand , both non linear scattering from nanotubes and multiphoton absorption
are expected to be effective over a broad spectral range .
this is confirmed by measurements at various wavelengths , which are displayed in figure [ fig : fig_broadband ] .
the best performances are obtained at small wavelengths , which are associated to nanotubes larger absorbing cross - sections and vapor bubbles larger scattering cross - sections according to mie theory .
the concept of optical limiting systems based on the mixture of carbon nanotubes and multiphoton absorber chromophores was demonstrated .
stable composite suspensions can be prepared , using nanotubes grafted with long alkyl chains .
this strategy also inhibits coating of the chromophores on the nanotube surface .
we studied the optical limiting properties of the mixtures in the ns range . when the limiting efficiencies of the two components are close , a cumulative effect is observed .
this occurs especially for 3 ns pulses in the case of swnt / mst mixtures .
the range of pulse durations where the cumulative effect will be effective can be easily broadened by increasing the chromophore concentration and/or selecting chromophores with larger multiphoton absorption cross - sections .
when the limiting performances of one of the component dominate those of the other , the limiting properties are close to those of the one - component system .
this is what we observe for pulses of 7 or 15 ns in the case of swnt / mst mixtures .
note that optical limiting is effective for suspensions of nanotubes up to microsecond pulses . on the other hand ,
mpa are good limiters in the sub - nanosecond range .
both nonlinear scattering by nanotubes and non linear absorption by mpa are effective all over the visible range .
therefore , composites swnt / mpa are promising systems for optical limiting on broad temporal and spectral ranges .
d.riehl , n.izard , l.vivien , e.anglaret , e.doris , c.mnard , c.mioskowski , l. porrs , o.mongin , m.charlot , m.blanchard-desce , r.anmian , j .- c.mulatier , c.barsu , c.andraud , proceedings of spie vol 5211 , nonlinear optical transmission and multiphoton processes in organics , ( 2003 ) 124 - 134 .
|
eye sensor protection against high power laser due to frequency - agile pulsed lasers ideal optical limiter should fulfill high specifications broadband optical limiting efficiency over visible spectrum broadband temporal efficiency from sub - to quality observation detection at low fluences display high linear optical transmittance neutral colorimetry researchs three classes of nonlinear optical materials reverse saturable absorbers multiphoton absorbers nonlinear scattering systems none fulfill specifications attempts with combinations materials in cascaded geometries multi - plate tandem cells two intermediate focal planes propose new approach for design composite optical limiters two complementary nonlinear optical materials mixed cell studied mixtures of single wall carbon nanotubes suspensions effective multiphoton absorbers nonlinear scattering main limiting for swnt suspensions due to growth solvent vapor bubbles at low fluences long pulses carbon bubbles from nanotube sublimation at high fluences short pulses optical limiting effective for long pulses nanosecond to microsecond mpa solutions strong multiphoton absorption cross - sections responsible limitation effective for shorter pulses tomaterials experimental aspects work presented section 2 association non linear scattering swnt multiphoton absorption mpa investigated nanosecond regime section 3 expected optical limiting performances composites picosecond to microsecond regimes section 4 swnt produced electric arc process purchased from nanoledge@xmath0 mer@xmath0 samples characterised using scanning electron microscopy x - ray diffraction raman optical spectroscopy mean diameter 1.4 nm suspensions as - produced raw samples nt - raw prepared chloroform purified nanotubes mer@xmath0 suspended chloroform soluble chloroform grafting long alkyl chains surface acidic treatment leads formation carboxylic groups surface activation with thionyl chloride coupling octadecylamine yields grafted nanotubes fully soluble in chloroform linear transmittance spectra suspensions raw functionalised samples nt - graft almost undistinguishable optical limiting properties as - produced grafted purified nanotubes chloroform similar pulse duration2,2-([1,1-biphenyl]-4,4-diyldi-2,1-ethenediyl)-bis - benzenesulfonic acid disodium salt stilbene-3 @xcite dye reference for multi - photon absorption solubility high 300 g / l in dmso moderate 20 g / l in water insoluble in chloroform sodium counter - ions exchanged with dimethyl - dioctadecyl ammonium groups ammoniums alkyl soluble in chcl@xmath3 g / l linear optical transmission of suspensions adjusted to 70 @xmath5 at 532 nm in 2 mm thick cells nanotube concentration 10 mg / l mpa concentration in reference sample composites 50 nonlinear optical transmittance measurements laser sources test beds rsg-19 set 1.5 mrad aperture frequency - doubled nd : yag laser 7 ns pulses at 532 nm optical parametric oscillator pulse duration 3 ns at 532 nm q - switched frequency doubled nd : yag pulse duration 15 ns f/50 rayleigh length larger than cell length no diaphragm results comparedresults in f/5 geometry conditions high fluences reported in figure [ fig_otan ] optical limiting performances worse for combination nanotubes and modified stilbene-3 than nanotubes alone in mixture limiting thwarted by adverse effect drop of performances important at low fluences stability of composite suspension poor aggregation within few hours suspensions of swnt and stilbene-3 prepared in water surfactants @xcite no instability optical limiting performances mixture slightly better than nanotubes if grafted swnt used adverse effect disappears no improvement same samples studied with different geometry ( f/50 ) longer pulses ( 15 ns ) results displayed in figure_nico ] loss of performances in composite prepared with raw nanotubes striking optical limiting threshold larger than nanotubes alone ( 200 mj/@xmath6 for mixture vs 50 mj/@xmath6 for raw nanotubes no adverse effect with composites with functionalised nanotubes slight significant cumulative effect adverse effect to adsorption of chromophores on surface nanotubescoating acts contact resistance delays heating solvent similar effect observed on carbon black suspensions in surfactant hypothesis contact resistance confirmed by pump - probe experiments adsorption may due to aromatic rings mpa over nanotube surface in water suspensions surfactants prevents formation coating for functionalised samples adsorption hindered by octadecylamine chains on nanotube surface steric barriers in middle right graphs optical limiting experiments performed with 3 ns pulses results shown in figure results similar for raw and grafted nanotubes agreement with hypothesis of contact resistance between chromophores nanotubes for short ( 3 ns pulses nonlinear scattering due to sublimation growth carbon vapor bubbles for longer ( 15 ns ) pulses scattering due to growth solvent vapor bubbles coating on to heat transfer change in heating sublimation dynamics grafting of long alkyl chains on nanotubes prevent interactions with chromophores efficiencies of swnt and mpaimprovement performances cumulative effect observed when efficiency chromophores comparable to nanotubes occurs at high fluences nanosecond pulses 70 @xmath5 transmittance cells cumulative effect emphasized for sample smaller concentration nanotubes 82 @xmath5 transmittance effective for larger concentrations chromophore larger multiphoton absorption cross - sections non linear scattering nanotubes multiphoton absorption effective over broad spectral range confirmed by measurements wavelengths displayed figure best performances at small wavelengths associated nanotubes larger absorbing cross - sections vapor bubbles larger scattering cross - sections optical limiting systems carbon nanotubes multiphoton absorber chromophores demonstrated stable composite suspensions using nanotubes grafted long alkyl chains inhibits coating chromophores nanotube surface studied optical limiting properties mixtures ns range limiting efficiencies close cumulative effect observed occurs for 3 ns pulses range pulse durations effect broadened by increasing chromophore concentration selecting larger multiphoton absorption cross - sectionslimiting performances component dominate properties close to one - component system pulses 7 or 15 ns swnt / mst mixtures optical limiting effective suspensions nanotubes microsecond pulses mpa good limiters sub - nanosecond range nonlinear scattering absorption mpa effective visible range composites swnt / mpa promising optical limiting broad temporal spectral ranges d.riehl n.izard.vivien.anglaret.doris.mnard.mioskowski.mongin.charlot.blanchard-desce.anmian.mulatier.barsu.andraud proceedings spie vol 5211 nonlinear optical transmission multiphoton processes in organics 2003 ) 124 - 134
| 0.434019
| 2,743
| 1,358
|
, Saving $0.1 in GPT-4.
|
18,600
|
the level-2 silicon track trigger preprocessor ( l2 stt ) of the d@xmath0 detector in run ii is described .
it performs a precise reconstruction of charged particle tracks in the central fiber tracker ( cft ) and the silicon microstrip tracker ( smt ) .
events with displaced tracks originating from the decay of long living particles such as @xmath1 hadrons are triggered on .
the presence of @xmath2 quarks contained in such hadrons is relevant for @xmath1 physics and crucial as signature of top quark and higgs boson decays .
= 14.5pt
|
in run ii the fermilab tevatron @xmath3 collider operates at a center - of - mass energy of @xmath4 . to keep the rejection of background events while maintaining high efficiency for physics processes of interest , the d@xmath0 trigger had to be upgraded and accommodated to the decreased beam crossing time of @xmath5
which requires minimized dead - time between collisions . the d@xmath0 silicon track trigger ( stt ) @xcite is the newest addition to this upgrade .
the d@xmath0 trigger consists of three levels .
the first level is hardware based and compares data with preprogrammed patterns .
the stt belongs to the second level trigger and constitutes a preprocessor for the silicon microstrip tracker ( smt ) .
the output of level 2 preprocessors is sent to the third trigger level which applies sophisticated reconstruction algorithms to the data . to maintain a dead - time below five percent the mean decision time for the level 2 trigger has to be kept below @xmath6 subdivided in two halfs for the preprocessors and the global l2 decision .
the stt is fed with information from silicon strip detectors arranged in four concentric layers in six cylindrical barrels around the beam axis ( fig .
[ schematic ] , left ) .
all detectors have axial @xmath7 pitch strips ( parallel to the beam line ) .
the stt subdivides the inputs from the barrel detectors into six independent azimuthal @xmath8 sectors .
in addition to the smt information the stt receives up to 46 tracks per sector each event from the level 1 central track trigger ( ctt ) which makes trigger decisions on tracks from the central fiber tracker ( cft ) .
the stt builds clusters from the smt raw hits and defines @xmath9 wide roads around the level 1 ctt tracks ( fig .
[ schematic ] , right ) .
the cft hits of the inner- and outermost layers are used together with smt clusters of at least three out of four layers for the stt track fitting .
the determined track fit parameters are sent to the level 2 ctt / stt trigger and to level 3 .
the stt consists of six identical crates , each covering two neighbored @xmath10 azimuthal smt sectors ( fig .
[ schematic ] , left ) .
a crate caries an input output controller ( ioc ) to operate the crate , a single board computer ( sbc ) for level 3 data submission and twelve custom - designed vme boards with programmable processors and daughter boards .
the stt motherboard is a 9u@xmath11400@xmath12 mm vme64x - compatible card containing three 33@xmath12mhz pci busses to communicate between the logic daughter board ( either a fiber road card ( frc ) , a silicon trigger card ( stc ) or a track fit card ( tfc ) ) , serial link boards and the data buffer controller ( bc ) board .
the frc consists of four functional elements which are a trigger receiver which communicates with the trigger framework bidirectional , a road receiver which receives tracks from the l1 ctt trigger , a trigger / road data formatter which combines the road and trigger framework information and a buffer manager which controls the buffering and readout to level 3 .
the stc receives raw hits from the smt barrel detectors .
bad strips are masked and pedestal / gain corrections are applied via look - up - tables ( lut ) .
adjacent smt hits are clustered .
clusters of axial strip detectors are matched to roads around cft tracks via lut s and sent to the track fit card ( tfc ) .
the tfc performs the final cluster filtering ( closest cluster to road center ) and two dimensional linearized track fitting of the form @xmath13 where @xmath14 is the radial distance from the beam spot position to the cluster , @xmath15 its azimuth , @xmath2 the impact parameter , @xmath16 the track curvature and @xmath17 its direction at the point of closest approach .
the fit is performed with help of precomputed matrix elements stored in lut s exploiting two cft hits in addition to the smt clusters .
the impact parameter of the stt integrated over all track transverse momenta has been measured to be @xmath18 ( fig .
[ dataplots ] , left , preliminary ) including the beam spot size of about @xmath19 and the @xmath20 spatial resolution of the axial smt ladder detectors , obtained offline .
the measured impact parameter resolution of the stt as a function of track transverse momentum ( fig .
[ dataplots ] , center , preliminary ) increases towards lower track transverse momenta due to multiple coulomb scattering .
the fit function @xmath21 has been used .
[ dataplots ] ( right ) shows a monitoring plot with the impact parameter significance distribution of the stt .
the red curve is a reference histogram , the black dots are data . in the present test trigger a cut on events with at least one track with impact parameter significance above @xmath22 has been implemented .
the stt measures impact parameters of tracks and their significance which allows to select large samples of events containing long living particles such as @xmath1 hadrons in the presence of enormous background through triggering on displaced tracks .
presently the stt operates as a test trigger during data taking and will be fully commissioned with the next revision ( v14 ) of the d@xmath0 trigger list .
many thanks to the staff members at fermilab , collaborating institutions and the altera and xilinx corporations for contributions .
major project funding has been granted from the department of energy ( doe ) and the national science foundation ( nsf ) under the major research instrumentation ( mri ) program award no . 9977659,9/1/1999 .
|
run ii fermilab tevatron @xmath3 collider operates center - of - mass energy @xmath4 background events high efficiency physics d@xmath0 trigger decreased beam crossing time @xmath5 minimized dead - time collisions d@xmath0 silicon track trigger newest addition trigger three levels first hardware based compares data preprogrammed patterns stt second level preprocessor for silicon microstrip tracker smt output level 2 preprocessors third trigger level applies reconstruction algorithms dead - time below five percent mean decision time level 2 trigger below @xmath6 subdivided two halfs decision stt fed with information from silicon strip detectors four layers six cylindrical barrels beam axis detectors have axial @xmath7 pitch strips parallel beam line stt subdivides inputs into six azimuthal @xmath8 sectors stt receives 46 tracks per sector from level 1 central track trigger makes trigger decisions stt builds clusters from smt hits defines @xmath9 wide roads around level 1 ctt trackscft hits inner outermost used with smt clusters three four layers for stt track fitting determined track fit parameters sent to level 2 ctt / stt trigger level 3 stt six crates each covering two @xmath10 smt sectors fig schematic crate input output controller single board computer for level 3 data submission twelve vme boards with programmable processors daughter boards stt motherboard is 9u@xmath11400@xmath12 mm vme64x - compatible card three 33@xmath12mhz pci busses logic daughter board card serial link boards data buffer controller board frc four elements trigger receiver road receiver trigger road data formatter buffer manager buffering readout level 3 stc receives hits from smt barrel detectors bad strips masked pedestal / gain corrections applied via look - up - tables adjacent smt hits clustered clusters axial strip detectors matched to roads around cft tracks sent to track fit cardtfc performs cluster filtering closest to road center two track fitting @xmath13 radial distance from beam spot to cluster azimuth impact parameter track curvature direction closest approach fit performed with precomputed matrix elements in lut s two cft hits smt clusters impact parameter stt over track transverse momenta measured @xmath18 including beam spot size @xmath19 @xmath20 spatial resolution of axial smt ladder detectors measured impact parameter resolution stt track transverse momentum increases towards lower track transverse momenta due to coulomb scattering fit function @xmath21 used monitoring plot impact parameter significance distribution stt red curve reference histogram black dots data test trigger cut on events with track impact parameter significance above @xmath22 implemented stt measures impact parameters tracks select large samples events long living particles triggering displaced tracks stt operates as test trigger during data taking fully commissioned with next revision v14 d@xmath0 trigger list thanks to staff fermilab collaborating institutions altera xilinx corporations for contributionsmajor project funding granted department energy national science foundation major research instrumentation program award 9977659,9/1/1999
| 0.258573
| 1,230
| 615
|
, Saving $0.0 in GPT-4.
|
18,615
|
we conduct 3d magneto - hydrodynamic ( mhd ) simulations in order to test the stability of the magnetic equilibrium configuration described by duez & mathis ( 2010 ) .
this analytically - derived configuration describes the lowest energy state for a given helicity in a stellar radiation zone .
the necessity of taking into account the non force - free property of the large - scale , global field is here emphasized .
we then show that this configuration is stable .
it therefore provides a useful model to initialize the magnetic topology in upcoming mhd simulations and stellar evolution codes taking into account magneto - rotational transport processes .
|
the large - scale , ordered nature of magnetic fields detected at the surface of some ap , o and b type stars and the scaling of their strengths ( according to the flux conservation scenario ) favour a fossil hypothesis , whose origin is not yet elucidated . to have survived since the stellar formation
, a field must be stable on a dynamic ( alfvn ) timescale .
it was suggested by prendergast ( 1956 ) that a stellar magnetic field in stable axisymmetric equilibrium must contain both poloidal ( meridional ) and toroidal ( azimuthal ) components , since both are unstable on their own ( tayler 1973 ; wright 1973 ) .
this was confirmed recently by numerical simulations ( braithwaite & spruit 2004 ; braithwaite & nordlund 2006 ) showing that an arbitrary initial field evolves on an alfvn timescale into a stable configuration ; axisymmetric mixed poloidal - toroidal fields were found . on the other hand ,
magnetic equilibria models displaying similar properties have been re - examined analytically by duez & mathis ( 2010 ) .
we here address the question of their stability .
we deal with non force - free magnetic configurations ( _ i.e. _ with a non - zero lorentz force ) in equilibrium inside a conductive fluid in absence of convection .
several reasons inclined us to focus on non force - free equilibria .
first , reisenegger ( 2009 ) reminds us that no configuration can be force - free everywhere .
although there do exist `` force - free '' configurations , they must be confined by some region or boundary layer with non - zero or singular lorentz force .
second , non force - free equilibria have been identified in plasma physics as the result of relaxation ( self - organization process involving magnetic reconnections in resistive mhd ) , _
e.g. _ by montgomery & phillips ( 1988 ) .
third , as shown by duez & mathis ( 2010 ) , this family of equilibria is a generalization of taylor states ( force - free relaxed equilibria ; see taylor 1974 ) in a stellar context , where the stratification of the medium plays a crucial role .
the equilibrium obtained is described in detail in duez & mathis ( 2010 ) as the lowest energy configuration conserving the invariants of the problem ( during the relaxation phase ) which are the magnetic helicity ( preventing the rapid energy decay ) and the mass enclosed in magnetic poloidal flux surfaces ( to account for the non force - free property ) .
we use the stagger code ( nordlund & galsgaard 1995 ) .
we model the star as a self - gravitating ball of ideal gas @xmath0 with radial density and pressure profiles initially obeying the polytropic relation @xmath1 , with index n = 3 , therefore stably stratified .
more details on the numerical model setup can be found in braithwaite & nordlund 2006 .
the configuration is then submitted to white perturbations ( @xmath2 in density ) . the dynamical evolution of the mixed configuration is compared to its purely poloidal and its purely toroidal components , whose behaviour are well known to be unstable due to kink - type instabilities .
the magnetic and velocity amplitudes are plotted on fig . 1 .
as we can see , in contrast to these unstable configurations , the mixed poloidal - toroidal one does not exhibit any sign of instability , even for high azimuthal wavenumbers ( up to about 40 ) .
this is the first time the stability of an analytically - derived stellar magnetic equilibrium has been confirmed numerically .
this result has strong astrophysical implications : the confuiguration provides a good initial condition to magnetohydrodynamic simulations and magneto - rotational transport to be included in next generation stellar evolution codes ; furthermore it could help to appreciate the internal magnetic structure of neutron stars and magnetic white dwarfs .
|
large - scale magnetic fields at surface ap o b stars scaling strengths favour fossil hypothesis origin not elucidated field must be stable on dynamic alfvn timescale suggested by prendergast ( 1956 ) stellar magnetic field in equilibrium must contain poloidal toroidal components unstable tayler 1973 wright 1973 confirmed by numerical simulations braithwaite spruit 2004 2006 arbitrary initial field evolves into stable configuration mixed poloidal - toroidal fields found magnetic equilibria models similar re - examined by duez & mathis ( 2010 ) address question stability deal with non force - free magnetic configurations non - zero lorentz force in equilibrium inside conductive fluid convection reasons focus non force - reisenegger ( 2009 ) no configuration can be force - free everywhere confined by region boundary layer with non - zero lorentz force non force - free equilibria identified in plasma physics as result of relaxation magnetic reconnections by montgomery & phillips ( 1988 )shown by duez & mathis 2010 family of equilibria generalization of taylor states force - free relaxed equilibria in stellar context stratification medium crucial equilibrium obtained described in as lowest energy configuration conserving invariants magnetic helicity mass in magnetic poloidal flux surfaces stagger code 1995 model star as self - gravitating ball of ideal gas @xmath0 with radial density pressure profiles obeying polytropic relation @xmath1 index n = 3 stably stratified details on in braithwaite & nordlund 2006 configuration submitted to white perturbations ( @xmath2 in density dynamical evolution of mixed configuration compared to poloidal toroidal components unstable to magnetic velocity amplitudes plotted on fig . 1 to mixed poloidal - toroidal instability even for high azimuthal wavenumbers first time stability of - derived stellar magnetic equilibrium confirmed numerically result has astrophysical implications provides condition to magnetohydrodynamic simulations magneto - rotational transport next stellar evolution codes appreciate internal magnetic structure of neutron stars magnetic white dwarfs
| 0.135227
| 849
| 427
|
, Saving $0.0 in GPT-4.
|
18,619
|
we study the structure of dynamically generated bound states in the chiral unitary approach .
the compositeness of a bound state is defined through the wavefunction renormalization constant in the nonrelativistic field theory .
we apply this argument to the chiral unitary approach and derive the relation between compositeness of the bound state and the subtraction constant of the loop integral .
the compositeness condition is fairly compatible with the natural renormalization scheme , previously introduced in a different context .
address = department of physics , tokyo institute of technology , meguro 152 - 8551 , japan address = yukawa institute for theoretical physics , kyoto university , kyoto 6068502 , japan address = research center for nuclear physics ( rcnp ) , ibaraki , osaka 567 - 0047 , japan
|
one of the recent topics in hadron spectroscopy is to reveal the internal structure of hadrons . in particular ,
hadron resonances located near two - hadron threshold are considered to be dominated by the hadronic molecule structure which is the two - hadron quasibound state driven by an inter - hadron force .
for instance , the baryon resonance @xmath0 and the scalar mesons @xmath1 and @xmath2 can be dynamically generated by the low energy @xmath3-wave chiral interaction , in the framework of the chiral unitary approach @xcite , which also well describes many hadron resonances in a reasonable way @xcite .
it was however pointed out that certain choice of the cutoff parameter may introduce the seed of the resonance , even with the leading order chiral interaction which does not contain the pole term contributions @xcite . to exclude such contribution from the loop function ,
the natural renormalization scheme was proposed , which enables us to pin down the origin of the generated resonance qualitatively . as a next step ,
it is desired to define a quantitative measure of compositeness in the chiral unitary approach . in this report
we attempt to calculate the compositeness of the bound state , defined through the field renormalization constant @xmath4 @xcite , in the chiral unitary approach .
we first consider the two - body scattering system with one bound state in a nonrelativistic field theory , and define the field renormalization constant following ref .
we decompose the full hamiltonian @xmath5 into the free part @xmath6 and the interaction @xmath7 .
we assume that the hilbert space of @xmath6 consists of the bare bound state @xmath8 and the two - body scattering states labeled by their momenta as @xmath9 in the same way , the eigenstates of the full hamiltonian @xmath5 are given by the physical bound state @xmath10 with the binding energy @xmath11 and the continuum states @xmath12 as @xmath13 now we define the field renormalization constant @xmath4 as the overlap of the bare state @xmath8 and the physical bound state as @xmath14 which takes the value @xmath15 .
since @xmath8 is considered to be an elementary particle , @xmath4 expresses the degree of elementarity " of the physical bound state .
the quantity @xmath16 can then be interpreted as the compositeness " of the bound state ; @xmath17 ^ 2 } = 4\pi\sqrt{2\mu^3 } \int_{0}^{\infty } de\frac{\sqrt{e } |g_w(e)|^2}{(e+b)^2 } , \label{eq:1mzexact}\end{aligned}\ ] ] where @xmath18 is the reduced mass and we consider the @xmath3-wave bound state whose vertex form factor @xmath19 has no angular dependence . on the other hand
, low s scattering equation can be obtained by using the formal solution of the lippmann - schwinger equation and the complete set of the full hamiltonian as @xcite @xmath20 where @xmath21 is the matrix element of the interaction hamiltonian @xmath7 by the scattering states .
the second term of this equation is a part of the integrand of eq . .
therefore , the compositeness can be expressed by the scattering amplitude @xmath22 .
\label{eq : compositenessnrexact}\end{aligned}\ ] ] although the scattering amplitude @xmath23 is in general complex , the imaginary part vanishes due to the optical theorem .
let us consider the limit @xmath24 . for small @xmath25 , the integrand in eq .
is dominated by the bound state pole term and the vertex form factor can be approximated by the coupling constant @xmath26 @xcite .
thus , in the small binding limit , we obtain @xmath27 this is the famous result of ref .
@xcite , which connects the compositeness of the bound state with the coupling constant @xmath28 and the binding energy @xmath29 .
note that eq .
is an approximated form valid only for the small @xmath25 , but the result is model independent because the explicit form of the interaction @xmath7 is not relevant .
all the information of the interaction is embedded in the binding energy and coupling constant .
in contrast , eq . is the exact expression of @xmath16 which can be applied to the bound state with an arbitrary binding energy .
the expression however include the matrix element of the interaction @xmath7 , so the result depends on the particular choice of the interaction hamiltonian . in the following ,
we utilize the model - independent form of eq . for the analysis of the bound state in the chiral unitary approach .
, as in the case of chiral unitary approach .
the use of the low s equation is valid when the eigenstates of the full hamiltonian span the complete and orthonormal basis , while the result of eq .
can be derived without using the completeness of the full hamiltonian @xcite . ]
here we describe the same @xmath3-wave scattering system in the chiral unitary approach .
the low energy theorem gives the weinberg - tomozawa ( wt ) interaction @xmath30 where @xmath31 is the mass of the target hadron , @xmath32 is the total center of mass energy , and @xmath33 is a real - valued constant with mass dimension minus two .
the scattering amplitude can be obtained by the n / d method @xcite as@xmath34 the loop function @xmath35 with the dimensional regularization as @xmath36 \nonumber\\ & + \ln[w^2+(m^{2}-m^{2})+2w\bar{q}(w ) ] -\ln[-w^2+(m^{2}-m^{2})+2w\bar{q}(w ) ] \nonumber\\ & -\ln[-w^2-(m^{2}-m^{2})+2w\bar{q}(w ) ] \bigr\}\biggr ) , \label{eq : gfn}\end{aligned}\ ] ] where @xmath37[w^2-(m+m)^2]}/2w$ ] .
the ultraviolet divergence is removed and the finite part is specified by the subtraction constant @xmath38 .
let us calculate the compositeness in eq . in this framework .
apart from the masses of the particles , the amplitude contains two parameters , the coupling strength @xmath33 and the cutoff parameter @xmath38 .
the condition for having a bound state at @xmath39 reads @xmath40 which relates @xmath33 , @xmath39 and @xmath38 , so we can characterize the system by ( @xmath39 , @xmath38 ) , instead of ( @xmath33 , @xmath38 ) .
the coupling strength of the bound state to the scattering state @xmath41 can be calculated from the residue of the pole as @xmath42 ^ 2 = & \lim_{w\to m_b}(w - m_b)t(w ) = - \frac{m_b - m } { g(m_b;a ) + ( m_b - m ) g^{\prime}(m_b ) } .
\label{eq : wtcoupling}\end{aligned}\ ] ] it is important to note that the coupling constant depends on the subtraction constant
. if the interaction is energy independent , this coupling constant is simply given by the derivative of the loop function , which is independent of the subtraction constant .
taking into account the normalization difference of two approaches , we obtain the compositeness of the bound state in the chiral unitary approach as @xmath43 ^ 2 \label{eq : compositenesschu}\end{aligned}\ ] ] for the given mass of the bound state @xmath39 and the subtraction constant @xmath38 , we can calculate the compositeness using eqs . and .
@xcite , the natural subtraction constant @xmath44 was introduced to exclude cdd pole contributions from the loop function , based on the consistency with the property of the sensible loop function and the matching with the chiral low energy interaction .
if this is the case , we expect that the generated bound state should be a composite particle , leading to @xmath45 . here
we study this numerically . in the left panel of fig .
[ fig:1mz ] , we plot the compositeness @xmath16 as a function of the binding energy @xmath46 with the natural subtraction constant @xmath44 . as expected , we clearly see that @xmath45 for small binding energy . for @xmath47 mev ,
the quantity @xmath16 exceeds @xmath48 , which may indicate the breakdown of the small binding approximation in eq . .
the compositeness @xmath16 as a function of the binding energy @xmath46 with the natural subtraction constant ( left ) and of the deviation from the natural value @xmath49 with the binding energy @xmath50 mev ( right ) .
particle masses are set to be @xmath51 mev and @xmath52 mev.,title="fig:",width=264 ] the compositeness @xmath16 as a function of the binding energy @xmath46 with the natural subtraction constant ( left ) and of the deviation from the natural value @xmath49 with the binding energy @xmath50 mev ( right ) .
particle masses are set to be @xmath51 mev and @xmath52 mev.,title="fig:",width=264 ] next we study the compositeness by varying the subtraction constant from the natural value , fixing the binding energy to be a constant . in this case , the coupling strength @xmath33 is adjusted according to eq . .
in the right panel of fig .
[ fig:1mz ] , we show @xmath16 as a function of @xmath49 with the binding energy @xmath50 mev .
we find that the compositeness decreases when the deviation from @xmath44 becomes large .
this is the effect of the seed of the resonance , introduced through the cutoff parameter in the loop function .
it is also instructive to consider the pole mass in the effective interaction @xmath53 .
it can be shown that @xmath4 approaches to unity in the limit @xmath54 .
this means that the bound state is dominated by the elementary component , if the effective mass appears close to the physical bound state .
the compositeness of the bound state is studied in the chiral unitary approach .
we define the compositeness using the field renormalization constant , and express it in terms of the scattering amplitude .
we note that the compositeness depends on the explicit form of the interaction hamiltonian @xmath7 .
we analyze the bound state in the chiral unitary approach , and derive the analytic form of the compositeness in the small binding limit .
the energy dependence of the chiral interaction causes the subtraction constant dependence of the compositeness . varying the value of the subtraction constant , we find that the bound state in the natural renormalization scheme shows @xmath45 , while the large deviation from the natural value indicates the substantial component from the elementary particle .
these observations support the analysis of the origin of the resonances using the natural renormalization condition @xcite .
the formulation of the compositeness in the relativistic field theory is of relevance and will be summarized elsewhere @xcite .
thanks the support from the global center of excellence program by mext , japan through the nanoscience and quantum physics project of the tokyo institute of technology .
this work was partly supported by the grant - in - aid for scientific research from mext and jsps ( nos .
22740161 , 22105507 and 21840026 ) .
|
recent topics in hadron spectroscopy internal structure of hadrons hadron resonances near two - hadron threshold dominated by hadronic molecule structure two - hadron quasibound state driven by inter - hadron force baryon resonance @xmath0 scalar mesons @xmath1 @xmath2 generated by low energy @xmath3-wave chiral interaction chiral unitary approach hadron resonances cutoff parameter may introduce seed resonance exclude contribution natural renormalization scheme proposed down origin generated resonance define quantitative measure of compositeness in chiral unitary approach report calculate compositeness of bound state defined field renormalization constant @xmath4 @xcite unitary approach consider two - body scattering system with one bound state nonrelativistic field theory define field renormalization constant decompose full hamiltonian @xmath5 into free part @xmath6 interaction @xmath7hilbert space @xmath6 bare bound state @xmath8 two - body scattering states @xmath9 eigenstates full hamiltonian @xmath5 physical bound state @xmath10 binding energy @xmath11 continuum states @xmath12 @xmath13 define field renormalization constant @xmath4 overlap bare state @xmath8 physical bound state @xmath14 value @xmath15 @xmath8 elementary particle @xmath4 expresses degree elementarity physical bound state quantity @xmath16 compositeness bound state @xmath17 2 = 4\pi\sqrt{2\mu^3 } @xmath18 reduced mass @xmath3-wave bound state vertex form factor @xmath19 no angular dependence low s scattering equation formal solution lippmann - schwinger equation complete set full hamiltonian @xmath20 @xmath21 matrix element interaction hamiltonian @xmath7 scattering states second term equation part integrand eq compositeness expressed scattering amplitude @xmath22{eq compositenessnrexact{aligned scattering amplitude @xmath23 complex imaginary part vanishes optical theorem consider limit @xmath24 small @xmath25 eq dominated by bound state pole term vertex form factor approximated by coupling constant @xmath26 small binding limit obtain @xmath27 famous result @xcite connects compositeness bound state with coupling constant @xmath28 binding energy @xmath29 eq . approximated form small @xmath25 result model independent explicit form interaction @xmath7 not relevant information in binding energy coupling constant eq . exact expression @xmath16 applied bound state arbitrary binding energy matrix element interaction @xmath7 result depends on choice interaction hamiltonian model - independent form eq . analysis bound state chiral unitary approach low s equation valid when eigenstates full hamiltonian span complete orthonormal basis result eq . derived without using completeness full hamiltonian @xcite describe @xmath3-wave scattering system chiral unitary approachlow energy theorem gives weinberg - tomozawa interaction @xmath30 @xmath31 mass target hadron @xmath32 total center mass energy @xmath33 real - valued constant mass dimension minus two scattering amplitude obtained n / d method @xcite@xmath34 loop function @xmath35 dimensional regularization @xmath36[w^2+(m^{2}-m^{2})+2w\bar{q}{aligned @xmath37[w^2-(m+m)^2]}/2w$ ] ultraviolet divergence removed finite part specified by subtraction constant @xmath38 calculate compositeness in eq masses amplitude contains two parameters coupling strength @xmath33 cutoff parameter @xmath38 condition state @xmath39 reads @xmath40 relates @xmath33 @xmath39 @xmath38 characterize system by @xmath39 , @xmath38 )coupling strength bound state to scattering state @xmath41 calculated from residue pole as @xmath42 ^ 2 =_b - m_b ) ={m_b - m g(m_b + m_b - m )(m_b coupling constant depends on subtraction constant if interaction energy independent constant given by derivative loop function independent of subtraction constant obtain compositeness bound state in chiral unitary approach as @xmath43 ^ 2 compositenesschu for mass bound state @xmath39 and subtraction constant @xmath38 calculate compositeness using eqs natural subtraction constant @xmath44 introduced to exclude cdd pole contributions from loop function consistency with sensible loop function chiral low energy interaction generated bound state composite particle leading to @xmath45 study numerically fig plot compositeness @xmath16 as function of binding energy @xmath46 with natural subtraction constant @xmath44 @xmath45 small binding energy @xmath47 quantity @xmath16 exceeds @xmath48 breakdown small binding approximation in eqcompositeness @xmath16 function binding energy @xmath46 natural subtraction constant left deviation natural value @xmath49 binding energy @xmath50 mev right particle masses set @xmath51 mev @xmath52 mev compositeness @xmath16 function binding energy @xmath46 natural subtraction constant left deviation value @xmath49 @xmath50 mev right particle masses @xmath51 mev @xmath52 mev study compositeness varying subtraction constant natural value fixing binding energy constant coupling strength @xmath33 adjusted eq . right panel fig @xmath16 function @xmath49 binding energy @xmath50 mev compositeness decreases deviation from @xmath44 large effect seed resonance cutoff parameter loop function consider pole mass effective interaction @xmath53 @xmath4 approaches unity limit @xmath54 bound state dominated elementary component effective mass close physical bound state compositeness bound state studied chiral unitary approach define compositeness field renormalization constant express scattering amplitude compositeness depends on explicit form interaction hamiltonian @xmath7analyze bound state chiral unitary approach derive analytic form compositeness small binding limit energy dependence chiral interaction causes subtraction constant dependence compositeness varying value subtraction constant bound state natural renormalization scheme shows @xmath45 large deviation indicates substantial component elementary particle observations support analysis origin resonances natural renormalization condition formulation compositeness relativistic field theory summarized support global center excellence program mext japan nanoscience quantum physics project tokyo institute technology supported grant - aid research mext jsps 22740161 22105507 21840026
| 0.422929
| 2,610
| 1,322
|
, Saving $0.1 in GPT-4.
|
18,624
|
we investigate dilepton production in transport - based approaches and show that the baryon couplings of the @xmath0 meson represent the most important ingredient for understanding the measured dilepton spectra . at sis energies ,
the baryon resonances naturally play a major role and affect already the vacuum spectra via dalitz - like contributions , which can be captured well in transport simulations .
recent pion - beam measurements at gsi will help to constrain the properties of the involved resonances further .
|
lepton pairs are an ideal probe for studying phenomena at high densities and temperatures .
they are created at all stages of a heavy - ion collision , but unlike hadrons they can escape the hot and dense zone almost undisturbed ( since they only interact electromagnetically ) and thus can carry genuine in - medium information out to the detector .
dileptons are particularly well - suited to study the in - medium properties of vector mesons , since the latter can directly convert into a virtual photon , and thus a lepton pair @xcite .
one of the groundbreaking experiments in this field was na60 at the cern sps , which revealed that the @xmath0 spectral function is strongly broadened in the medium .
calculations by rapp et al . have shown that this collisional broadening is mostly driven by baryonic effects , i.e. , the coupling of the @xmath0 meson to baryon resonances ( @xmath1 , @xmath2 ) @xcite . in the low - energy regime ,
the data taken by the dls detector have puzzled theorists for years and have recently been confirmed and extended by new measurements by the hades collaboration @xcite . at such low energies , it is expected that not only the in - medium properties are determined by baryonic effects , but that already the production mechanism of vector mesons is dominated by the coupling to baryons ( even in the vacuum ) .
already our previous investigations @xcite based on the gibuu transport model @xcite have shown that the baryonic @xmath1 and @xmath2 resonances give important dalitz - like contributions to dilepton spectra at sis energies for pp as well as aa collisions .
this finding is based on the assumption that these resonances decay into a lepton pair exclusively via an intermediate @xmath0 meson ( i.e. , strict vector - meson dominance ) . in the transport simulation
, the dalitz decays @xmath3 are treated as a two - step process , where the first part is an @xmath4 decay , followed by a subsequent conversion of the @xmath0 into a lepton pair ( @xmath5 ) .
the branching ratios for the @xmath4 decays are taken from the partial - wave analysis by manley et al .
@xcite , while the decay width for the second part is calculated under the strict - vmd assumption .
recently we have extended the vmd assumption also to the @xmath6 state @xcite . in principle
it is clear that all the dilepton dalitz decays of the baryonic resonances ( @xmath7 ) must involve an electromagnetic transition form factor . from an experimental point of view
this form factor is essentially unknown in the time - like region . in consequence
it is frequently neglected in transport simulations .
our approach is to use strict vmd as a sensible ansatz for this form factor , which is easy to implement in a transport scheme .
in fig . 1 we present two examples of results obtained with our model @xcite .
the left - hand side shows the simulated dilepton mass spectrum from elementary p+p collisions at @xmath8 ( inside the detector acceptance ) compared to the data measured by the hades collaboration .
while the low - mass regime is dominated by the dalitz decays of the @xmath9 and @xmath10 mesons , the region of higher masses shows a clear @xmath11 peak ( whose width is dictated by detector resolution ) and a hint of a @xmath12 peak at the very end of the spectrum .
the most interesting region , however , is the intermediate - mass regime below the @xmath11 peak , which according to our model is dominated by baryonic contributions from @xmath1 ( and @xmath2 ) resonances .
there is a whole cocktail of such resonances which are known to couple to the @xmath0 meson , but in particular the light ones , such as the @xmath13 , give important contributions here , without which the data in the intermediate - mass regime could not be described .
the @xmath6 only gives subdominant contributions in our model ( both in the qed and vmd approaches ) , which is in conflict with other results @xcite , which claim a much more dominant role of the @xmath14 . the right panel of fig .
1 shows the dilepton spectrum from ar+kcl collisions at an energy of 1.76 agev compared to the hades data .
there are additional channels in this medium - sized nucleus - nucleus system , which do not occur in pure pp collisions , such as @xmath15 bremsstrahlung or the contribution from @xmath16 , but they are not dominant . as in the elementary case ,
the contributions from the baryonic resonances are significant .
overall we observe an underestimation at intermediate masses and a slight excess in the vector - meson pole region .
reasons for these deviations could be uncertainties in the used resonance parameters or a missing dynamical treatment of density - dependent spectral functions .
such a treatment may be provided by the so - called coarse - graining
approach , which is subject of ongoing investigations @xcite .
it could help to improve the description of heavy systems and to make the connection to dilepton measurements at higher energies .
and @xmath17 collisions at @xmath18.,title="fig:",scaledwidth=45.0% ] and @xmath17 collisions at @xmath18.,title="fig:",scaledwidth=45.0% ] pion - induced reactions offer a much cleaner testing ground for dilepton production than aa or pp reactions , since the latter always involve excitation of baryonic resonances at various energies , while @xmath15 collisions operate at a fixed @xmath19 , corresponding to a fixed resonance mass .
this makes it much easier to disentangle contributions from different resonances , as pointed out e.g. in @xcite .
2 shows the prediction of our model for dilepton mass spectra from pion - induced reactions on proton and carbon targets at a beam kinetic energy of @xmath20 ( corresponding to @xmath21 or @xmath22 ) which have recently been measured at gsi .
in contrast to fig . 1 , no detector acceptance and resolution effects are included here .
the considered energy is just above the @xmath10 threshold and close to the pole masses of resonance states like @xmath13 and @xmath23 .
in particular the former is believed to have a strong coupling to the @xmath0 meson and thus should have a large influence on dilepton spectra . in our model ,
the @xmath13 plays a very dominant role at this energy . when disregarding the @xmath10 dalitz contribution , which can be subtracted in the experimental spectra , essentially all of the high - mass yield is due to the @xmath13 , while contributions from other resonances like the @xmath23 or the @xmath6 are suppressed by roughly an order of magnitude in the elementary @xmath24 reaction .
the @xmath14 contribution is again shown in two different approaches , and there also is a @xmath15 bremsstrahlung contribution .
however , the latter should be taken with a grain of salt , since it is only calculated in soft - photon approximation , which may not be very reliable in the @xmath15 case , in particular for large dilepton masses . when moving to the carbon target , as shown on the right - hand side of fig . 2
, one can see that the @xmath14 and bremsstrahlung contributions gain additional strength from secondary collisions .
yet , the relative strength of the @xmath10 contribution drops a bit , since it is produced only in the primary collisions , but can be absorbed afterwards .
the dominance of the @xmath13 in the high - mass regions persists .
we stress that our model currently relies on the assumption of a strict - vmd form factor for the @xmath13 ( as for all other @xmath1 resonances )
. however , the strong dominance of this resonance in the reaction considered here might make it possible to obtain a rather direct measurement of its electromagnetic transition form factor
. it will be very interesting to see whether the experimental data will reveal any deviation from the vmd assumption . in any case
, it should also be mentioned that some models claim rather strong destructive interference effects at this energy @xcite ( which are neglected in our transport simulation , since they are very hard to handle )
. however , those effects are subject to controversy and do not show up so strongly at this energy in other models @xcite .
we have shown that the hades dilepton data from pp and aa collisions can be described rather well with a combination of a resonance - model - based transport approach with a strict - vmd coupling of the baryons to the electromagnetic sector , where a mix of different baryonic resonances contributes to the total dilepton yield .
unfortunately not all parameters of these resonances are known sufficiently well .
however , recent pion - beam measurements at gsi could help to shed new light on the baryonic resonances and possibly even fix the transition form factor of their electromagnetic dalitz decays .
this work was supported by the hessian initiative for excellence ( loewe ) through the helmholtz international center for fair and by the federal ministry of education and research ( bmbf ) .
j.w . acknowledges funding of a helmholtz young investigator group vh - ng-822 from the helmholtz association and gsi .
99 s. leupold , v. metag , u. mosel , int . j. mod . phys .
e 19 , 147 ( 2010 ) r. rapp , j. wambach , h. van hees , landolt - brnstein i/23 , 4 ( 2010 ) h. van hees , r. rapp , phys .
97 , 102301 ( 2006 ) g. agakishiev et al .
( hades collaboration ) , eur .
j. a 48 , 64 ( 2012 ) g. agakishiev et al .
( hades collaboration ) , phys .
c 84 , 014902 ( 2011 ) j. weil , h. van hees , u. mosel , eur .
j. a 48 , 111 ( 2012 ) o. buss , t. gaitanos , k. gallmeister , h. van hees , m. kaskulov et al .
512 , 1 ( 2012 ) d. manley , e. saleski , phys .
d 45 , 4002 ( 1992 ) j. weil , s. endres , h. van hees , m. bleicher , u. mosel , arxiv:1410.4206 e. bratkovskaya , j. aichelin , m. thomere , s. vogel , m. bleicher , phys . rev .
c 87(6 ) , 064907 ( 2013 ) s. endres , h. van hees , j. weil , m. bleicher , j. phys .
503 , 012039 ( 2014 ) j. weil , phd thesis , 2013 m. lutz , b. friman , m. soyeur , nucle .
a 713 , 97 ( 2003 ) m. zetenyi , g. wolf , phys .
c 86 , 065209 ( 2012 )
|
lepton pairs ideal for high densities temperatures created at stages heavy - ion collision unlike hadrons escape hot zone undisturbed interact electromagnetically carry in - medium information detector dileptons study in - medium properties vector mesons convert into virtual photon lepton pair @xcite groundbreaking na60 at cern sps revealed @xmath0 spectral function broadened in medium calculations rapp et al. collisional broadening driven by baryonic effects coupling @xmath0 meson to baryon resonances low - energy regime data dls detector puzzled theorists confirmed by new measurements hades collaboration low energies expected in - medium properties determined by baryonic effects production mechanism of vector mesons dominated by coupling to baryons previous investigations shown baryonic @xmath1 @xmath2 resonances contributions to dilepton spectra at sis energies for pp aa collisions finding based on assumption resonances decay into lepton pair via intermediate @xmath0 meson strict vector - meson dominancetransport simulation dalitz decays @xmath3 two - step process first part @xmath4 decay conversion @xmath0 into lepton pair @xmath5 ) branching ratios @xmath4 decays from partial - wave analysis manley et al . @xcite decay width second part calculated strict - vmd assumption extended vmd assumption to @xmath6 state @xcite dilepton dalitz decays baryonic resonances @xmath7 ) involve electromagnetic transition form factor form factor unknown time - like region neglected transport simulations strict vmd ansatz form factor easy implement transport scheme fig . 1 two examples results model @xcite left simulated dilepton mass spectrum from elementary p+p collisions @xmath8 data hades collaboration low - mass regime dominated by dalitz decays @xmath9 @xmath10 mesons higher masses @xmath11 peak detector resolution @xmath12 peak interesting region intermediate - mass regime below @xmath11 peak dominated by baryonic contributions from @xmath1 @xmath2 ) resonancescocktail of resonances couple @xmath0 meson light ones @xmath13 give important contributions data intermediate - mass regime described @xmath6 subdominant contributions in model conflict with results @xcite dominant role of @xmath14 right panel of fig . 1 shows dilepton spectrum from ar+kcl collisions at energy 1.76 agev compared to hades data additional channels in medium - sized nucleus - nucleus system not in pure pp collisions @xmath15 or @xmath16 not dominant contributions from baryonic resonances significant underestimation at intermediate masses slight excess in vector - meson pole region deviations uncertainties in resonance parameters missing dynamical treatment of density - dependent spectral functions treatment by coarse - graining approach investigations improve description of heavy systems connection to dilepton measurements at higher energies @xmath17 collisions reactions cleaner testing ground for dilepton production than aa or pp reactions baryonic resonances @xmath15 collisions operate at fixed @xmath19 fixed resonance masseasier disentangle contributions from resonances in @xcite . 2 shows prediction model for dilepton mass spectra from pion - induced reactions on proton carbon targets at beam kinetic energy @xmath20 @xmath21 @xmath22 measured at gsi contrast fig 1 no detector acceptance resolution effects included considered energy above @xmath10 threshold close to pole masses resonance states @xmath13 @xmath23 former strong coupling to @xmath0 meson influence dilepton spectra @xmath13 dominant role energy disregarding @xmath10 dalitz contribution high - mass yield due to @xmath13 contributions from other resonances @xmath23 @xmath6 suppressed in @xmath24 reaction @xmath14 contribution shown in two approaches @xmath15 bremsstrahlung contribution taken calculated in soft - photon approximation not reliable in @xmath15 case for large dilepton masses moving to carbon target 2 @xmath14 bremsstrahlung contributions gain strength from secondary collisions strength @xmath10 contribution drops produced primary collisions absorbed afterwards dominance of @xmath13 in high - mass regions persistsour model relies on strict - vmd form factor for @xmath13 resonances dominance resonance might direct measurement of electromagnetic transition form factor experimental data deviation from vmd assumption some models claim strong destructive interference effects at energy @xcite neglected in transport simulation effects to controversy show in other models hades dilepton data from pp aa collisions described with resonance - model - transport approach strict - vmd coupling baryons to electromagnetic sector mix of baryonic resonances contributes to dilepton yield not all parameters resonances known pion - beam measurements at gsi could light on baryonic resonances fix transition form factor electromagnetic decays work supported by hessian initiative for excellence helmholtz international center for fair federal ministry of education research acknowledges funding of helmholtz young investigator group vh - ng-822 from association. leupold v. metag u. mosel j. mod . phys . 19 , 147 ( 2010 r. rapp j. wambach h. van hees landolt - brnstein/23 497 102301 2006 agakishiev collaboration j 48 , 64 2012 phys 84 , 014902 2011 j. weil h van hees mosel 48 , 111 2012 o. buss gaitanos gallmeister van hees kaskulov 512 , 1 2012 d. manley saleski 45 , 4002 1992 ) j. weil endres van hees bleicher mosel arxiv:1410.4206 j aichelin thomere vogel bleicher . 87(6 064907 2013 endres van hees j. weil bleicher . 503 , 012039 2014 j weil phd thesis 2013 m lutz friman soyeur 713 , 97 2003 ) zetenyi wolf phys . c 86 , 065209 2012
| 0.354932
| 2,470
| 1,260
|
, Saving $0.1 in GPT-4.
|
18,642
|
a new formalism will be presented in order to study real time evolution of quantum systems at finite temperature .
probability distributions for time - correlated observables will be studied non - perturbatively and fully quantized .
this works for various systems , including ones with tunneling phenomena .
we have obtained good results with some computational methods which can be used on models with several degrees of freedom .
thus it looks feasible to study vacuum tunneling in real time for relevant field theories at finite t.
|
we have been working on a non - perturbative approach to combine real time and finite temperature for the full quantized theory .
this is crucial for the study of systems with tunneling at intermediate temperatures .
we choose to work directly with projectors onto initial and final states , given that the system at finite @xmath0 is described by the density matrix @xmath1 .
this method gives a direct probability interpretation for going from states where some degrees of freedom have some values at time @xmath2 , to some other values at time @xmath3 ( in the presence of the thermal bath produced by all the degrees of freedom ) .
this procedure is physically appealing as it multiplies probabilities to be in quantum states ( given by @xmath1 ) by the probabilities to go from these states ( projected onto some states for the subsystem ) to some states at later time .
this contrasts with the usual @xmath4 ^ 2 > $ ] to estimate time correlations @xcite , where the operator to measure is positive by construction but one has the problem that it is hard to interpret as a transition probability .
the probabilities to find the system in some configuration can be written in a simple way in terms of the path integral formulation in `` complex '' time .
we have been able to solve several systems like the h.osc .
, the double well , @xmath5 potential or the interesting case of a ring of @xmath6 coupled oscillators , with the aim of the field theory case with vacuum tunneling .
usually , at finite @xmath7 , one just takes the trace over euclidean time @xmath8 to calculate expectation values . for time correlations we will need a path in the complex time plane of the shape : @xmath9 .
+ we will combine finite @xmath0 and real @xmath3 non - perturbatively , by inserting suitable operators at the points @xmath10 , @xmath11 and @xmath12 . with a similar path semenoff , niemi , weiss and others@xcite deduced feynman perturbation rules . to fix ideas ,
let us ask for the probability that if the first particle ( of a system of @xmath6 interacting quantum particles ) is located close to @xmath13 at @xmath14 , it will be close to @xmath15 at time @xmath3 , the system being at @xmath16 .
we will see that this is given by : @xmath17 @xmath18 in order to deduce this equation , we start from the knowledge that for @xmath14 the system is in a _ mixed state _ , described by the density matrix : @xmath19 with the additional condition that the first degree of freedom be at @xmath13 , which is obtained by applying the projector @xmath20 on both sides of @xmath1 .
so , for @xmath14 we describe the system by @xmath21 .
this operator evolves as usual , @xmath22 , with @xmath23 .
we measure again at a time @xmath3 , with a position @xmath15 for the first particle .
the probability is then : @xmath24\ ] ] where we have discarded one of the @xmath25 due to the cyclicity of the trace .
note that we have to take a small window around @xmath13 as otherwise we would measure the position with infinite precision implying total delocalization afterwards ( we can see this effect numerically , in that the @xmath26 goes to a constant in @xmath15 for very small windows ) .
this can be done easily by defining the projector on a window around the coordinate @xmath13 : @xmath27 , which still has @xmath28 .
the normalization can be taken so that the integration over @xmath15 in eq.(3 ) is one , corresponding to the assumption that the particle _ is _ in the window @xmath29 $ ] , or with @xmath30 , in which case we include the a priori probability to be in that window . in both cases
the integrated @xmath31 is @xmath3-independent .
notice that classically @xmath32 can be commuted with @xmath33 so that eq.(3 ) would resemble a time correlation among projectors at finite @xmath8 , but in the quantum case this ordering gives a probability interpretation , while neglecting one of the @xmath34 one is mixing amplitudes for different states in the thermal mixture , which one should not do ... we can recast eq.(3 ) to show that it corresponds to the sum of probabilities to be in states @xmath35 with position @xmath36 for one of the degrees of freedom by the probability to have gone to @xmath37 in time @xmath38 : @xmath39 ( @xmath40 is the green function and @xmath41 a wave function ) as we wanted to prove . technically it is convenient to rewrite eq.(3 ) as @xmath42 @xmath43 a product of three green functions as announced in eq.(1 ) .
the point is that each of these green functions can be calculated with the method of multiplying the transfer matrix for infinitesimal `` @xmath44 '' by itself n times to obtain times @xmath45 .
this method works even for real @xmath3 as we showed in our work with dullweber and hilf @xcite .
alternatively , one can implement a fast fourier transform method @xcite to calculate the short time propagator and iterate for longer times . both of these methods get improved nicely when introducing a small imaginary time @xmath46 in the time propagation , as then the propagators are well behaved at large distances ( suppressing the fast oscillations ) . with this @xmath47
we have even been able to use normal monte carlo methods in real time , as now there is some weighting in the sampling , obtaining satisfactory results .
the generalization to a field theory seems immediate , but technically it will be hard to implement even on coarse lattices due to the number of degrees of freedom .
we have tested these methods for the systems : \a ) for a free particle , the probability to find the particle at some distance @xmath48 away has a near to gaussian shape , getting broader with time .
as we higher the @xmath0 , the dispersion grows faster .
\b ) for the harmonic oscillator , as shown in fig.1 , from the original window @xmath49 for @xmath14 , it oscillates with semiclassical frequency maintaining its coherence ( as known for h.osc . ) . with higher @xmath0
the packet is broader but stays coherent .
\c ) the double - well potential shown in fig.2 , where the original packet placed at one side disperses through tunneling to the other minima . at higher
@xmath0 the probability to be in the other minima increases , as expected .
we are also studying the @xmath50 potentials with multiple minima to see the dispersion with @xmath3 .
this case is relevant , as similar tunneling via instantons in the field theory model is thought to produce the anomaly responsible for baryon asymmetry in the universe .
\d ) the most interesting case that we have been able to solve , is the n particle chain of coupled oscillators in a circle , with transversal oscillation .
this is the first genuine finite temperature system that we treated in the sense that the temperature can be dynamically generated by the system in a self consistent way ( in contrast with an external given heat bath ) .
we have been able to solve this model `` almost '' analytically by going to normal modes , @xmath51 . in these new
coordinates the hamiltonian is separable and the n - particle green function is just @xmath52 the transformation being linear and with jacobian @xmath53 , the green s function in the original @xmath54 is simply equal to the new one , with @xmath55 . as the integrations in eq.(1 ) have to be done
numerically we have been able to solve for up to @xmath56 particles .
the probability distribution is again some gaussian - like curve that gets broader with time ( the zero mode corresponding to a collective movement of the circle of strings is allowed and so the center of mass of the system disperses as usual in qm ) . as we increase the tempera- ture the coordinate @xmath13 disperses much faster due to the momentum transfer from the other oscillators
. it would be interesting in the future to study to which extent we have reached the thermodynamic limit in the sense that if we have a very large circle of @xmath6 oscillators the probability to find the first in some position after some time , should converge to some limit which should not change when we go to @xmath57 oscillators .
we have been able to combine non perturbatively real time and finite temperature in first quantization .
it can be seen as the product of three green functions in the complex time plane .
the `` matrix iteration '' and the fft methods work well in calculating the real time path integral , improving convergence with a small @xmath46 .
there are several interesting problems that seem shortly doable , like the ammonia molecule or several spin models ( easy due to discrete field values ) .
our ultimate aim is to find a way to treat the field theory case of tunneling with instantons in real time and finite @xmath0 , which is in principle doable with these methods but will be hard to implement due to the number of degrees of freedom .
00100 g. aarts and j. smit , phys .
b393 ( 1997 ) 395 and refs . therein ; j.ambjrn and a.krasnitz , phys . lett . b362 ( 1995 ) 97 .
r.kobes , g.semenoff and n.weiss , z. phys . c29 ( 1985 ) 371 and refs . therein .
a.dullweber , e.hilf and e.mendel , quant - ph : 9511042 ; e. mendel and m. nest , in prepar . e.onofri and g.tecchiolli , phys .
scripta 37 ( 1988 ) 323 and refs . therein .
|
working on non - perturbative approach real time finite temperature for full quantized theory crucial for study systems with tunneling at intermediate temperatures work with projectors initial final states system at finite @xmath0 described by density matrix @xmath1 method gives direct probability interpretation states freedom to @xmath3 thermal bath procedure multiplies probabilities in quantum states @xmath1 by to later contrasts with usual @xmath4 2 > estimate time correlations operator positive hard to interpret transition probability probabilities to find system in configuration written path integral formulation in complex time systems like h.osc . double well @xmath5 potential ring of @xmath6 coupled oscillators field theory case with vacuum tunneling at finite @xmath7 trace over euclidean time @xmath8 to calculate expectation values for time correlations need path in complex time plane shape : @xmath9 combine finite @xmath0 real @xmath3 non - perturbatively inserting suitable operators at points @xmath10 @xmath11 @xmath12 similar path semenoff niemi weiss deduced feynman perturbation rulesfix ideas ask probability first particle system @xmath6 interacting quantum particles close to @xmath13 @xmath14 close to @xmath15 @xmath3 system at @xmath16 given by @xmath17 @xmath18 deduce equation start @xmath14 system mixed state described density matrix : @xmath19 condition first degree freedom at @xmath13 obtained applying projector @xmath20 both sides @xmath1 @xmath14 system by @xmath21 operator evolves @xmath22 with @xmath23 measure @xmath3 position @xmath15 first particle probability : @xmath24\ ] ] discarded one @xmath25 due to cyclicity trace small window around @xmath13 measure position infinite precision total delocalization @xmath26 constant in @xmath15 for small windows defining projector on window around coordinate @xmath13 : @xmath27 has @xmath28 normalization integration over @xmath15 in eq.(3 ) one assumption particle in window @xmath29 $ or @xmath30 include a priori probability in window integrated @xmath31 @xmath3-independent @xmath32 commuted with @xmath33 eq.(3 ) time correlation among projectors at finite @xmath8 quantum case ordering gives probability interpretation neglecting @xmath34 mixing amplitudes states thermal mixture recast eq.(3 ) sum probabilities states @xmath35 position @xmath36 freedom probability @xmath37 time @xmath38 : @xmath39 ( @xmath40 green function @xmath41 wave function rewrite eq.(3 ) as @xmath42 @xmath43 product three green functions eq.(1 ) green functions calculated multiplying transfer matrix infinitesimal @xmath44 '' n times obtain times @xmath45 method works for real @xmath3 implement fast fourier transform method @xcite calculate short time propagator iterate longer times methods improved introducing small imaginary time @xmath46 in time propagation propagators well behaved at large distances suppressing fast oscillations @xmath47 normal monte carlo methods in real time weighting sampling satisfactory results generalization to field theory hard to implement on coarse lattices due to number degrees of freedom tested methods for systems free particle probability to find distance @xmath48 away near gaussian shape broader with timehigher @xmath0 dispersion grows faster harmonic oscillator fig.1 original window @xmath49 for @xmath14 oscillates semiclassical frequency maintaining coherence h.osc higher @xmath0 packet broader stays coherent double - well potential fig.2 original packet one side disperses tunneling to other minima higher @xmath0 probability other minima increases studying @xmath50 potentials with multiple minima dispersion with @xmath3 relevant similar tunneling via instantons field theory model anomaly for baryon asymmetry universe interesting case n particle chain of coupled oscillators circle transversal oscillation first finite temperature system temperature dynamically generated self consistent contrast external heat bath model analytically normal modes @xmath51 new coordinates hamiltonian separable n - particle green function @xmath52 transformation linear jacobian @xmath53 green s function original @xmath54 equal to new one @xmath55 integrations in eq.(1 ) done numerically solve up to @xmath56 particles probability distribution gaussian - like curve broader with time zero mode collective movement circle strings allowed center of mass system disperses in qmincrease tempera- ture coordinate @xmath13 disperses faster momentum transfer oscillators interesting study thermodynamic limit large circle of @xmath6 oscillators probability find first converge to limit change @xmath57 oscillators real time finite temperature in first quantization product of three green functions complex time plane matrix iteration fft methods work real time path integral improving convergence small @xmath46 problems doable ammonia molecule spin models discrete field values ultimate aim treat field theory case tunneling with instantons real time finite @xmath0 doable hard to implement degrees freedom g. aarts j. smit phys . b393 ( 1997 ) 395 j.ambjrn a.krasnitz phys . lett . b362 ( 1995 ) 97 r.kobes g.semenoff n.weiss z . c29 ( 1985 ) 371 a.dullweber e.hilf e.mendel quant - ph : 9511042 m. nest e.onofri g.tecchiolli phys . scripta 37 ( 1988 ) 323
| 0.318459
| 2,181
| 1,164
|
, Saving $0.1 in GPT-4.
|
18,648
|
a set of cosmological models that takes into account the variation of the particle number is presented . in this context
both dark matter and dark energy can be explained using a single component , without assuming any exotic equation of state , solving directly the cosmic coincidence problem .
|
currently the observational evidence coming from supernovae studies @xcite , cosmic background radiation fluctuations @xcite , and baryon acoustic oscillations @xcite , set a strong case for a cosmological ( concordance ) universe model composed by nearly @xmath0 percent of a mysterious component called dark energy , responsible for the current accelerated expansion , nearly @xmath1 percent of dark matter , which populate the galaxies halos and a small percent ( around @xmath2 ) composed by baryonic matter .
the nature of these two dark component remains so far obscure @xcite . in the case of dark matter
, we have a set of candidates to be probed with observations and detections in particle accelerators , however the case of dark energy is more elusive .
this component not only has to fill the universe at the largest scale homogeneously , and to have the appropriate order of magnitude to be comparable with that of dark matter , but also has to have a negative pressure equation of state , something that was assumed first to explain inflation in the early universe , inspired by high energy theories of particle physics , but which seems to be awkward to appeal for , at these low energy scales .
the alternative way used to account for the cosmic acceleration is to consider a modification of general relativity at large scales @xcite .
however it seems to be a difficult route to follow , considering the subtleties in the interpretation of the observations even in the simplest model based on general relativity . to describe the universe at the largest scale , as is the case in cosmology , we have to make certain assumptions regarding the local distribution of matter and its characteristics . as is well known ( and explained in several classic books @xcite , @xcite , @xcite ) the energy - momentum tensor used in the einstein s equations is imported from considerations made in special relativity , through a covariant generalization supported by the equivalence principle .
the assumption about homogeneity and isotropy leads to consider the matter content of the universe as a fluid . in the case of a perfect fluid , defined as a mechanical medium incapable of exerting transverse stresses
, it takes the standard diagonal form @xmath3 where @xmath4 is identified as the energy density of the fluid , @xmath5 is the proper hydrostatic pressure , @xmath6 are the components of the macroscopic velocity of the fluid with respect to the actual coordinate system and @xmath7 is the metric of it . the expression ( [ temunu ] ) is what is measured by an observer at rest in the fluid , who examines an element of the fluid small enough so that gravitational curvature can be neglected .
the conclusion of applying the energy conservation relation to this tensor @xmath8 is that perfect fluids behave adiabatically when examined by a local observer , satisfying the equation @xmath9 where @xmath10 is the physical volume of the region considered .
is usual to take as the volume @xmath11 , where @xmath12 is a physical distance of the order of the region we are interested in . using that @xmath13
, leads to the well know result @xmath14 to get this result , it was assumed also that particle number is conserved @xmath15 , where @xmath16 with @xmath17 the particle number density . a way to modify ( [ ds0 ] ) without spoiling adiabatic evolution is by adding a work term due to the change of the particle number @xmath18 . in @xcite
, the authors studied this case as an alternative cosmological model , considering the change of the particle number , assuming that such a correction have to be considered during matter creation .
this work actually suggested for the first time , a way to incorporate the particle creation process in the context of cosmology , in a self consistent way .
in fact , the original claim made by zeldovich @xcite , that gravitational particle production can be described phenomenologically by a negative pressure , is realize here in a beautiful way .
a covariant formulation of the model was presented in @xcite .
the context where these considerations would be important were mentioned to be ; the steady - state cosmological model , the warm inflationary scenario and within the standard inflationary scenario , during the reheating phase .
based on this work , the studies of cosmological models with matter creation @xcite were initiated , which were rapidly recognized as be potentially important to explain dark energy @xcite . in particular , in ref.@xcite the authors established a model where dark energy can be mimicked by self - interactions of the dark matter substratum . within the same framework ,
models of interacting dark energy and dark matter were proposed @xcite .
actually , in these studies is possible to have consistently , a universe where matter creation proceeds within an adiabatic evolution .
more recently , lima et al.,@xcite have presented a study of a flat cosmological model where a transition from decelerated to accelerated phase exist .
they explicitly show that previous models considered @xcite , does not exhibit the transition , and study the observational constraints on the model parameters . in this work
i consider non flat models where by modifying the first law , enable us to explain the current acceleration of the universe expansion through a fictitious pressure component coming from changes in the total particle number . in this way ,
the dark energy component is basically an effect due to the dark matter creation process in the universe , fact that enable us to explain easily the cosmic coincidence problem ; it is not strange to have a similar contribution from these two component , because they are just one component ; dark matter .
i also demonstrate that a non constant matter creation rate can indeed lead to a transition from a decelerated to an accelerated regime even in the case of non flat geometries . in the next section
i derive the equations of motion in the case of matter creation .
then , i open section iii with a very simple model with a non constant creation rate , that resemble the @xmath19cdm model .
after this , i discussed the case of the transition from a decelerated to an accelerated expansion in non flat models .
the incorporation of the variable @xmath18 into the cosmological scenario , modifies the first law as @xmath20 where @xmath21 is the enthalpy ( per unit volume ) , @xmath22 is the number density and @xmath4 is the energy density .
the important thing to stress here is that the universe evolution continues to be adiabatic , in the sense that the entropy per particle remains unchanged ( @xmath23 ) .
the extra contribution can be interpreted as a non thermal pressure defined as @xmath24 this is the source that produces the current acceleration of the universe expansion .
once the particle number increases with the volume ( @xmath25 ) , we obtain a negative pressure . now , because we are considering matter creation , we have to impose the second law constraint as @xmath26 where @xmath27 is the entropy density . from ( [ firstlaw ] )
we find that the new set of einstein equations are @xmath28 @xmath29 and from ( [ second ] ) we have to supply an extra relation between @xmath17 and the hubble parameter @xmath30 where @xmath31 is a definite positive function .
the set of equations ( [ friedman ] ) , ( [ rho ] ) and ( [ ene ] ) completely specified the system evolution .
the standard adiabatic evolution is easily recovered : setting @xmath32 implies that @xmath33 , which leads to the usual conservation equation from ( [ rho ] ) .
it is interesting to note that eq.([rho ] ) enable us to determine the pressure ; for example if @xmath34 eq.([rho ] ) implies @xmath35 , and furthermore if @xmath36 and @xmath37 implies @xmath38 .
let us assume first here that @xmath39 the arguments in favor of this hypothesis would be given in short .
let us study here its consequences . if we consider @xmath40 , relation ( [ asump1 ] ) leads to @xmath41 . from ( [ ene ] )
we finds the solution for the density number to be @xmath42 where @xmath43 is a constant of integration . assuming @xmath34 as for non - relativistic matter ( that leads to que usual equation of state @xmath35 as we discussed that at the end of the last section )
, we get for the energy density @xmath44 that resembles the combined contribution of a cosmological constant and dust .
the level of fine tuning here to obtain an accelerated expansion is relatively smaller than in the usual @xmath19cdm model , because in this case , both terms come from the same function , and we know that we can obtain an accelerated expansion phase after some time from ( [ friedman ] ) .
note however that the equation of state has not been modified , @xmath4 is still the non - relativistic contribution .
we do not have to introduce any exotic component - with a negative pressure - to describe the current expansion acceleration . given the current status of the dark matter and dark energy problem @xcite
, we can use this idea as a possible way to understand it . in terms of the exotic dark energy fluid with energy density @xmath45 and pressure @xmath46 , the solution ( [ rhosol ] )
can be expressed as @xmath47 where now there must be two copies of eq.([rho ] ) with the one corresponding to dark energy being @xmath48 and @xmath17 stand only for the second term in eq .
( [ rhosol ] ) . of course , from eqs .
( [ friedman ] ) , ( [ rhosol ] ) and ( [ de1 ] ) we get @xmath49 ; e. i. , the ansatz ( [ asump1 ] ) has leads us to the case of a purely cosmological constant contribution . in general
, we can always separate the contribution for `` purely '' non - relativistic matter @xmath50 @xmath51 ) from the dark energy . in this case @xmath52 , and the pressure can be written as @xmath53 we can notice that @xmath46 is exactly the non thermal pressure computed in ( [ pc ] ) ( recall that @xmath54 ) .
i have to stress here that the main result derived in this section means that we have a single contribution , which satisfy the non - relativistic matter equation of state , that describe both dark matter and dark energy simultaneously , and in this way solving automatically the coincidence problem .
this dark unification mechanism does not have the problem studied in @xcite , because in the cases studied in that paper , for example the chaplygin gas model @xcite , the sound velocity of the dark matter is not zero , leading to instabilities .
that happens because the chaplygin gas interpolates between the equation of states for dark matter and dark energy .
this does not happens here , because there is just one equation of state ; that of non - relativistic matter .
as is well known from observations of supernovae , a transition from a decelerated to an accelerated expansion occurs in the recent history of the universe . depending on what is used to model dark energy , different redshift
have been obtained between @xmath55 to @xmath56 .
this topics was recently discussed in @xcite where the authors specialized in a flat cosmology , where a explicit transition can be achieved from a decelerated to an accelerated expansion . in this section
we generalize this work to non flat universes , by using a model ( see equation ( [ ene ] ) ) with @xmath57 where @xmath58 is a constant parameter ( is exactly the same letter introduced in @xcite ) . in
what follows , a non relativistic matter equation of state is assumed ( @xmath35 ) .
introducing ( [ rate1 ] ) in ( [ ene ] ) leads to the following solution @xmath59 is evident the meaning of the subscript zero .
because @xmath60 for non - relativistic matter , the friedman equation can be written as @xmath61 where @xmath62 . evaluating this expression for the reference time @xmath63 we obtain that @xmath64 where we have defined @xmath65 , with @xmath66 being the critical energy density . using this in ( [ req1 ] )
we obtain @xmath67.\ ] ] clearly , for @xmath68 this expression reduces to the standard result . in order to compare with observations
, we shall compute the deceleration parameter , @xmath69 , in terms of the redshift . by differentiating ( [ fried2 ] ) respect to cosmic time
we find @xmath70}.\ ] ] so , from ( [ fried2 ] ) we find the scale factor in term of the cosmic time , @xmath71 , and using that @xmath72 , we can use ( [ qdet ] ) to write down @xmath73 . as an example , for @xmath74 and @xmath75 the deceleration parameter computed from ( [ qdet ] ) in terms of the redshift is shown in figure 1 .
+ for a fixed @xmath76 , a crossing redshift exist if @xmath77 .
otherwise , the universe never made the transition .
for @xmath78 , the situation is qualitatively similar , in this case with a smaller slope . in the case of a flat universe , @xmath79 we obtain @xmath80 which coincides with the result obtained in @xcite . to complete the analysis
, i will briefly discuss the case of the interaction term @xmath81 , discussed also in @xcite . in this case
, the deceleration parameter can be explicitly written in terms of the redshift as @xmath82 if we specialize to a flat universe , @xmath79 , @xmath83 becomes a constant , showing no transition between decelerated to an accelerated regime .
however , the non flat case , is not different .
actually , the @xmath84 dependence make the values of @xmath83 to vary with redshift , but there is no redshift for which @xmath85 .
so the challenge would be to estimate the function @xmath86 enabling us to give the best fit to the observations .
the first model considered in the last section shows us a very simple scenery to follow .
let me proceed further and complicate a little bit the model setup .
for example , we can study the case of a distribution of matter which is oscillatory with volume .
it means that instead of consider ( [ asump1 ] ) , we use @xmath87 .
this implies that matter distribution is characterized by a volume @xmath88 . in this case
, the energy density behaves as @xmath89 , so when the volume considered is small enough @xmath90 , this solution approaches ( [ rhosol ] ) . a typical profile of the scale factor evolution is shown in fig .
+ in this letter i have demonstrated that considering small changes in the total number of particles in our universe , offer a possible way to understand the current accelerated expansion measurements , without using any exotic energy component .
also , this scenario explain also the cosmic coincidence problem , basically showing that these two components , dark matter and dark energy , are the of the same nature , but their act at different scales .
this way of understand the snia observations , implies that cosmology have a new window to explore the universe considering matter creation , encoded in the function @xmath86 .
although i have discussed some examples for this function , neither has been obtained from a fundamental theoretical basis .
the author want to thank s. del campo and r. herrera for useful discussions .
frieman , m.s .
turner and d. huterer , arxiv : astro - ph/0803.0982 ; m. taoso , g. bertone and a. masiero , arxiv : astro - ph/0711.4996 ; d. hooper and e.a .
baltz , annu .
nucl . part .
sci . * 58 * , ( 2008)(arxiv : hep - ph/0802.0702 ) .
carroll , v. duvvuri , m. trodden and m. turner , phys .
d * 70 * , 043528 ( 2004 ) ; s. capozziello , `` dark energy and dark matter as curvature effects '' , to be published in the proceedings of the 11th marcel grossmann meetng , berlin , july ( 2006 ) .
l. amendola , s. tsujikawa and m. sami , phys .
b * 632 * , 155 ( 2006 ) ; l. amendola and c. quercellini , phys .
d * 68 * , 023514 ( 2003 ) ; l.p.chimento , a.s .
jakubi , d. pavon and w. zimdahl , phys .
d * 67 * , 083513 ( 2003 ) ; w. zimdahl and d. pavon , phys .
b * 521 * , 133 ( 2001 ) ; l. amendola , phys . rev .
d * 62 * , 043511 ( 2000 ) .
|
observational evidence from supernovae studies cosmic background radiation fluctuations baryon acoustic oscillations strong case for cosmological universe model by nearly @xmath0 percent of dark energy for current accelerated expansion nearly @xmath1 percent of dark matter galaxies halos small percent @xmath2 ) by baryonic matter nature of these two dark component obscure of dark matter candidates to be probed with observations detections in particle accelerators case dark energy more elusive component fill universe at largest scale homogeneously appropriate order of magnitude comparable with dark matter negative pressure equation of state assumed to explain inflation in early universe awkward to appeal for at low energy scales alternative for cosmic acceleration modification of general relativity at large scales difficult route subtleties in interpretation of observations to describe universe at largest scale assumptions regarding local distribution of matter characteristics energy - momentum tensor in einstein s equations imported from special relativity covariant generalization equivalence principle assumption about homogeneity isotropy leads to consider matter content universe as fluid perfect fluid mechanical medium exerting transverse stresses takes standard diagonal form @xmath3 @xmath4 energy density @xmath5 hydrostatic pressure @xmath6 components macroscopic velocity coordinate system @xmath7 metric expression ( [ temunu ] ) measured by observer at rest fluid examines element small gravitational curvature neglected conclusion energy conservation relation tensor @xmath8 perfect fluids behave adiabatically examined by local observer satisfying equation @xmath9 @xmath10 physical volume of region considered usual as volume @xmath11 @xmath12 physical distance of region @xmath13 leads to result @xmath14 particle number conserved @xmath15 @xmath16 @xmath17 particle number density modify ( [ ds0 ] ) without adiabatic evolution adding work term due to change particle number @xmath18 @xcite authors studied case as alternative cosmological model considering change of particle number correction during matter creation work suggested particle creation process in context cosmology original claim by zeldovich @xcite gravitational particle production described by negative pressure covariant formulation model presented in @xcite .context considerations important steady - state cosmological model warm inflationary scenario standard inflationary scenario reheating phase studies of cosmological models with matter creation @xcite initiated important explain dark energy ref.@xcite authors established model dark energy mimicked by self - interactions dark matter substratum models interacting dark energy dark matter proposed @xcite studies possible universe matter creation proceeds adiabatic evolution lima et al.,@xcite presented study flat cosmological model transition from decelerated to accelerated phase show previous models @xcite exhibit transition study observational constraints on model parameters work consider non flat models modifying first law explain current acceleration universe expansion through fictitious pressure from changes total particle number dark energy effect due to dark matter creation process cosmic coincidence problem similar contribution one component dark matter non constant matter creation rate lead to transition from decelerated to accelerated regime non flat geometries next section derive equations of motion matter creation open section iii with simple model with non constant creation rate @xmath19cdm model discussed transition from decelerated to accelerated expansion in non flat modelsincorporation of variable @xmath18 into cosmological scenario modifies first law as @xmath20 @xmath21 is enthalpy per unit volume @xmath22 number density @xmath4 energy density universe evolution adiabatic entropy per particle remains unchanged ( @xmath23 ) extra contribution as non thermal pressure as @xmath24 source produces acceleration universe expansion particle number increases with volume @xmath25 ) negative pressure considering matter creation impose second law constraint as @xmath26 @xmath27 is entropy density new einstein equations are @xmath28 @xmath29 supply extra relation between @xmath17 and hubble parameter @xmath30 @xmath31 is positive function equations friedman rho ene specified system evolution standard adiabatic evolution recovered setting @xmath32 implies @xmath33 leads to conservation equation eq.([rho ] ) determine pressure @xmath34 implies @xmath35 @xmath36 and @xmath37 implies @xmath38 assume @xmath39 arguments in favor of hypothesis short study consequences consider @xmath40 relation asump1 leads to @xmath41[ ene ] ) solution density number @xmath42 @xmath43 constant integration assuming @xmath34 non - relativistic matter leads equation of state @xmath35 energy density @xmath44 combined contribution cosmological constant dust fine tuning accelerated expansion smaller than @xmath19cdm model both terms same function accelerated expansion phase [ friedman ] ) equation of state not modified @xmath4 non - relativistic contribution introduce exotic component negative pressure current expansion acceleration current status dark matter dark energy problem @xcite use idea understand exotic dark energy fluid energy density @xmath45 pressure @xmath46 solution ( [ rhosol ] ) expressed as @xmath47 two copies of eq.([rho ] ) dark energy @xmath48 @xmath17 second term eq . [ rhosol ] from eqs . ( [ friedman ] ) [ rhosol ] [ de1 ] ) @xmath49 ansatz ( [ asump1 ] ) leads purely cosmological constant contribution separate contribution non - relativistic matter @xmath50 @xmath51 from dark energycase @xmath52 pressure written as @xmath53 @xmath46 non thermal pressure computed in [ pc ] ) @xmath54 ) main result single contribution non - relativistic matter equation of state dark matter dark energy solving coincidence problem dark unification mechanism problem studied in @xcite gas sound velocity dark matter not zero instabilities chaplygin gas interpolates between equation states dark matter dark energy one equation of state non - relativistic matter transition from decelerated to accelerated expansion occurs recent history universe different redshift between @xmath55 to @xmath56 discussed in @xcite flat cosmology explicit transition from decelerated to accelerated expansion generalize work to non flat universes model equation [ ene ] ) with @xmath57 @xmath58 constant parameter same letter introduced in @xcite ) non relativistic matter equation of state assumed ( @xmath35 ) introducing ( [ rate1 ] ) in ( [ ene ] ) leads to solution @xmath59 meaning of subscript zero @xmath60 for non - relativistic matter friedman equation written as @xmath61 where @xmath62evaluating expression reference time @xmath63 obtain @xmath64 defined @xmath65 @xmath66 critical energy density using ( [ req1 ] ) obtain @xmath67. @xmath68 expression reduces standard result compare observations compute deceleration parameter @xmath69 redshift differentiating [ fried2 ] ) cosmic time find @xmath70}. [ fried2 ] find scale factor cosmic time @xmath71 using @xmath72 use ( [ qdet ] ) write down @xmath73 example @xmath74 @xmath75 deceleration parameter computed [ qdet ] ) redshift shown figure 1 fixed @xmath76 crossing redshift @xmath77 universe never made transition @xmath78 similar smaller slope flat universe @xmath79 obtain @xmath80 coincides result @xcite discuss interaction term @xmath81 @xcite deceleration parameter written redshift @xmath82 flat universe @xmath79 @xmath83 becomes constant no transition decelerated accelerated regime non flat case not different @xmath84 dependence values @xmath83 vary with redshift no redshift @xmath85 .challenge estimate function @xmath86 best fit to observations first model shows simple scenery complicate model setup study distribution matter oscillatory with volume instead use @xmath87 implies matter distribution by volume @xmath88 energy density behaves as @xmath89 volume small @xmath90 solution approaches ( [ rhosol ] ) typical profile scale factor evolution in fig . + small changes in number particles understand accelerated expansion measurements without exotic energy component scenario cosmic coincidence problem dark matter dark energy same nature different scales implies cosmology new window explore universe matter creation in function @xmath86 discussed examples function neither obtained from fundamental theoretical basis s. del campo r. herrera for discussions frieman m. turner d. huterer arxiv astro - ph/0803.0982 ; m. taoso g. bertone a. masiero astro - ph/0711.4996 ; d. hooper e.a . baltz annu. nucl . part . sci . * 58 ( 2008)(arxiv : hep - ph/0802.0702 ) carroll v. duvvuri m. trodden m.turner phys d 70 043528 2004 ) capozziello dark energy matter curvature effects published proceedings 11th marcel grossmann meetng berlin july 2006 amendola tsujikawa sami b 632 155 2006 ) amendola quercellini d 68 023514 2003 ) l.p.chimento jakubi d pavon zimdahl d 67 * 083513 2003 zimdahl d pavon b 521 133 2001 ) amendola phys d 62 * 043511 2000 )
| 0.572667
| 3,675
| 1,925
|
, Saving $0.1 in GPT-4.
|
18,659
|
hadrons proceeding from quasi - real photo - production are one of the many probes accesible at the common muon proton apparatus for structure and spectroscopy ( compass ) at cern .
these hadrons provide information on the scattering between photon and partons through @xmath0-gluon(@xmath1 ) direct channels as well as @xmath2-@xmath1 resolved processes
. comparisons of unpolarized differential cross section measurements to next - to - leading order ( nlo ) pqcd calculations are essential to develop our understanding of proton - proton and lepton - nucleon scattering at varying center of mass energies .
these measurements are important to asses the applicability of nlo pqcd in interpreting polarized processes . in this talk
we will present the unidentified charged separated hadron cross - sections measured by the compass experiment at center of mass energy of @xmath3 , low @xmath4 ( q@xmath5 ) and high transverse momenta ( p@xmath6 . )
|
cross - sections of final state inclusive and semi - inclusive particles are benchmark measurements which may elucidate information on polarized and unpolarized photon - parton and parton - parton interactions .
while perturbative quantum chromo dynamics ( pqcd ) is a well established theory of strong interactions , it does not provide an exact analytical calculation . in a pqcd factorized framework
, a hadron cross - section can be defined as the convolution of three main ingredients ( eq . [ formula_xsect1 ] ) from which only one is fully calculable : * the parton distribution functions @xmath7 , @xmath8 and @xmath9 at a factorization scale @xmath10 and momentum fraction @xmath11 carried from parton @xmath12 ( or @xmath0 . )
* the fragmentation functions ( ff ) @xmath13 where @xmath14 is the relative energy of hadron @xmath15 proceeding from parton @xmath16 . * the hard scattering cross - section of partons @xmath17 which is the calculable part in pqcd . to obtain information on polarized parton distributions such as that of the gluon ( @xmath18 )
, one could rely on measurements of asymmetries of final state particles in bins of measured transverse momentum p@xmath19 .
asymmetries are the ratio of the polarized to unpolarized cross - sections ( eq . [ formula_all ] ) .
these measurements offer an elegant way of accessing parton information by counting observed particle yields in different helicity states of the interacting beam(s ) and target ( @xmath20 versus @xmath21 . )
these ratios are normalized by the polarization in the beam and the target ( @xmath22 ) times the dilution factor @xmath23 .
@xmath24 @xmath25 the unpolarized differential cross - section defines the denominator of the asymmetries definition in eq .
[ formula_all ] .
these unpolarized measurements are of interest as they can add new results at different @xmath26 and help verify applicable theoretical calculations .
cross - sections in addition can help constrain the ff s
@xcite which introduce an uncertainty into these models .
the aim of the current work is to contribute with measurements of semi - inclusive deep inelastic scattering ( sidis ) cross - sections at @xmath27 .
unpolarized sidis probes the number density of partons with a fraction @xmath28 of the momentum of the parent nucleon .
the detection of the outgoing lepton in a sidis measurement allows the access , among other kinematic variables , to the @xmath4 and @xmath29 of the events .
the reaction of interest for the current measurement is @xmath31 .
final state hadrons are detected at low @xmath4 ( below @xmath32 ) and high @xmath33 ( above 1 gev / c ) .
this latter ensures a large momentum transfer in the reaction @xcite .
production of these final state hadrons proceed from direct photon - parton @xmath34 and resolved photon - parton @xmath35 initiated sub - processes in @xmath36 center of mass ( cm ) collisions ( fig .
[ werner ] . ) the @xmath34 nlo contributions are those for which the hadrons are produced immediately after the virtual photon interacts directly with the target partons .
the @xmath35 processes are those where the photon fluctuates into partons before interacting with the target .
these latter processes are akin to hadroproduction from proton+proton ( p+p ) collisions such as those at rhic or at the lhc , where the partons from the incoming beam interact with the target(beam ) partons . measurements of hadron production proceeding from p+p data have been compared to pqcd calculations at different @xmath26 ranges @xcite .
results of these comparisons have shown that the pqcd calculations have not correctly described hadron production at decreasing @xmath26 . only high @xmath26 seemed to be properly described by these models .
the discrepancy between experiment and theory at low @xmath26 has opened the question of pqcd applicability at these energy regimes .
the aim of the present work is to measure charge hadron production with compass kinematic capabilities and compare the resulting measurements to appropiate nlo calculations .
the partonic contributions leading to these hadron cross - sections at compass energies have been previously calculated in @xcite and @xcite .
partonic contributions to quasi - real photo production .
see @xcite and @xcite ]
the compass experiment is a fixed target experiment at cern which uses secondary and tertiary beams from the super proton synchrotron ( sps ) .
the muon beam used for the scattering comes from the decay of @xmath37 which proceed from the scattering of a primary proton beam on a beryllium target .
the proton beam is extracted from the cern s sps at a cycle of approximately 17 seconds .
the resulting muon beam from each cycle is then collided on a two cell @xmath38 target .
the two stage forward spectrometer tracks particles from these interactions with a rate capability of a few mhz / channel @xcite and a spacial precision better than @xmath39 .
particles can be detected at very small angles ( @xmath40mrad ) and large angles ( @xmath41 120 mrad for the current data set under study . )
these scattering angles correspond to a primarily positive pseudo - rapidity coverage ( @xmath42 ) that can reach up to the forward values of @xmath43 . for the low @xmath4 measurements of interest the ladder and inner triggers @xcite
to measure production cross - sections , the number of all final state charged hadrons in the data - set under interest are normalized by detector acceptances and efficiencies as well as the total integrated luminosity @xmath44 .
the experimental definition which can be derived from eq . [ formula_xsect1 ] is as follows : @xmath45 where : * _ @xmath46 _ is the 3 momentum of the particle . *
@xmath47 is the pseudo - rapidity , described as @xmath48 $ ] , where @xmath49 is the angle between the particle momentum @xmath50 and the virtual photon axis .
@xmath47 can be translated to the center of mass frame to : + @xmath51 .
* p@xmath19 is the transverse momentum of the particle , defined with respect to the virtual photon .
* @xmath52p@xmath19 is the bin width .
* @xmath53 is the azimuthal angle ( @xmath54 in the case of compass . )
* n@xmath55 is the total number of reconstructed final state hadrons ( charge separated ) in a p@xmath19 bin .
* @xmath56 accounts for the geometrical acceptance , momentum smearing , as well as the efficiency of the reconstruction algorithm . * @xmath44 is the integrated luminosity .
a full simulation using the monte - carlo generator pythia 6 @xcite was employed .
the simulation generated @xmath57+proton and @xmath57+neutron interactions at appropriate center of mass energies .
a geant3 @xcite based program which incorporates compass detector materials and interactions was used .
the geant based program simulated the response of the detector setup for the events generated by pythia .
the validity of the monte - carlo s description of the data was evaluated by estimating the data over monte - carlo ratio in different kinematic and laboratory variables pertinent to the measurement .
extraction of acceptances in both 1d as a function of @xmath33 and 2d were performed and results were found compatible . the integrated luminosity is obtained from the beam flux measurement using only periods with stable data taking and good spectrometer performance .
this measurement was determined @xcite using beam scalers @xcite on a spill by spill basis , where each spill corresponds to the beam delivery by the sps .
the integrated luminosity was found to be : @xmath58142.4 @xmath59 .
the error is systematic and it reflects all uncertainties in the measurement including changes in beam intensity which affected the beam rate calculations .
radiative corrections for the production of hadrons at the kinematic limits described in section [ kinematics ] were evaluated @xcite by andrei afanasev @xcite from jefferson lab .
his first estimates show that the data sample has a radiative effect contribution of less than @xmath60
the measured differential cross - sections for negative and positive hadrons integrated over the @xmath47 range of @xmath61 to @xmath62 can be found in fig .
[ minus ] and [ plus ] .
the measurements are compared to nlo calculations in which three input scales are used .
the measurements show that the data is better described by the input scale of @xmath63 , however given the calculations uncertainty we conclude that the data is over all well described in the integrated @xmath47 range .
the cross - sections separated in finer bins of rapidity are shown in fig .
more forward @xmath47 regions appear to have a steeper slope than the more central @xmath47 bins .
the more central bins appear to be better described by the theoretical calculations .
the ratio of @xmath64 to @xmath65 cross - sections is shown in fig .
[ ratio ] .
the measured ratio shows a @xmath33 independent flat distribution within the measurements errors .
this flat trend is in contrast with the theoretical calculations which show a decreasing trend as a function of @xmath33 .
the measurement shows that over all there are more @xmath65 in the measurement .
cross - section of @xmath64 as a function of @xmath33 compared to nlo pqcd . ]
cross - section of @xmath65 as a function of @xmath33 compared to nlo pqcd . ] cross - sections of @xmath66 as a function of @xmath33 compared to nlo pqcd in different @xmath47 regions .
leftmost plot shows the most forward accessible @xmath47 in the measurement while the rightmost figure shows the most central @xmath47 value measured . ]
ratio of @xmath64 to @xmath65 cross - sections compared to nlo pqcd . ]
compass has measured the differential cross sections of charged hadrons integrated over the @xmath47 range of @xmath61 to @xmath62 and also in finer rapidity bins .
the measurements are consistent with the nlo pqcd calculations and within the theory s uncertainties . the ratio of @xmath64 to @xmath65 show an excess of @xmath65 which is independent of @xmath33 .
this ratio indicates a discrepancy on the theory which predicts more @xmath64 at low @xmath33 ( @xmath67 . )
this work is under paper preparation and is partly funded by a personal grant by the american national science foundation in collaboration with the french atomic and alternative energies commission .
i thank werner vogelsang and andrei afanesev for their theoretical calculations which has made the qed and pqcd comparisons to the experimental measurements possible .
c. bourrely , j. soffer 2004 _ eur .
j. c. _ * 36 * 371 - 374 d. de florian , r. sassot , m. stratmann 2007 .
_ phys.rev.d _ * 75 * 114010 p. abbon et al .
2007._nim a _ * 577 * 455 - 518 h. l. lai et al . 2000
_ eur.phys.j.c _ * 12 * 375 - 392 i. akushevich , n. shumeiko , a. soroko 1999 _ eur.phys.j.c _ * 10 * 681 - 687 a. afanasev , private communication , afanas@xmath68 , t. sjstrand
_ , comput .
. commun . * 135 * , 238 ( 2001 ) , r. brun and f. carminati , cern program library long writeup w5013 , 1993 ( unpublished ) , c. hppner for the compass collaboration , spin - praha-2010 , to be published in epj special topics .
|
cross - sections of final state particles are benchmark measurements polarized unpolarized photon - parton parton - parton interactions perturbative quantum chromo dynamics ( pqcd ) theory of interactions exact analytical calculation in pqcd framework hadron cross - section as convolution of three ingredients only one calculable parton distribution functions @xmath7 momentum fraction @xmath11 from fragmentation functions @xmath13 is relative energy of hadron from parton hard scattering cross - section of partons @xmath17 calculable part in pqcd information on polarized parton distributions gluon on measurements of asymmetries of final state particles in measured transverse momentum asymmetries are ratio of polarized to unpolarized cross - sections measurements parton information counting observed particle yields in different helicity states of interacting beam target ratios normalized by polarization beam target times dilution factor unpolarized differential cross - section defines denominator of asymmetries definition inunpolarized measurements add new results at @xmath26 verify theoretical calculations cross - sections constrain ff s @xcite introduce uncertainty aim current work measurements semi - inclusive deep inelastic scattering sidis cross - sections at @xmath27 unpolarized sidis probes density partons with fraction momentum parent nucleon detection outgoing lepton in sidis allows access to @xmath4 @xmath29 events reaction interest is @xmath31 final state hadrons detected at low @xmath4 below high @xmath33 above 1 ensures large momentum transfer reaction production hadrons from direct photon - parton @xmath34 resolved photon - parton @xmath35 sub - processes in @xmath36 center of collisions @xmath34 contributions hadrons produced after photon interacts with target partons @xmath35 processes photon fluctuates into partons before target akin to hadroproduction from proton+proton collisions measurements hadron production from p+p data compared to pqcd calculations at @xmath26 ranges @xcite pqcd calculations not hadron production at decreasing @xmath26high @xmath26 described models discrepancy experiment theory at low @xmath26 pqcd applicability energy regimes aim present work measure charge hadron production compass kinematic capabilities compare nlo calculations partonic contributions hadron cross - sections compass energies calculated in @xcite - photo production compass experiment fixed target experiment at cern uses secondary tertiary beams from super proton synchrotron muon beam from decay @xmath37 scattering primary proton beam beryllium target proton beam extracted from sps 17 seconds collided on two cell @xmath38 target two stage forward spectrometer tracks particles interactions mhz / channel @xcite spacial precision better than @xmath39 particles detected at small angles @xmath40mrad large angles @xmath41 120 mrad scattering angles positive pseudo - rapidity coverage @xmath42 ) forward values @xmath43 low @xmath4 measurements ladder triggers @xcite production cross - sections final state charged hadrons normalized by detector acceptances efficiencies total integrated luminosity @xmath44 experimental definition from eq .formula_xsect1 @xmath45 @xmath46 3 momentum particle @xmath47 pseudo - rapidity @xmath48 @xmath49 angle between particle momentum @xmath50 virtual photon axis @xmath47 translated center mass frame @xmath51 p@xmath19 transverse momentum particle virtual photon @xmath52p bin width @xmath53 azimuthal angle @xmath54 compass@xmath55 total number reconstructed final state hadrons p@xmath19 bin @xmath56 geometrical acceptance momentum smearing efficiency reconstruction algorithm @xmath44 integrated luminosity simulation monte - carlo generator pythia 6 @xcite generated @xmath57+proton @xmath57+neutron interactions center mass energies geant3 @xcite program compass detector materials interactions simulated response detector setup events pythia validity monte - carlo s description data evaluated estimating data monte - carlo ratio kinematic laboratory variables extraction acceptances 1d @xmath33 2d performed results compatible integrated luminosity beam flux measurement stable data taking good spectrometer performance determined @xcite beam scalers spill by spill basis each spill corresponds beam delivery spsintegrated luminosity found @xmath58142.4 @xmath59 error systematic reflects uncertainties including changes beam intensity rate calculations radiative corrections for production hadrons at kinematic limits evaluated by andrei afanasev from jefferson lab estimates show data sample radiative effect contribution less than @xmath60 measured differential cross - sections for negative and positive hadrons over @xmath47 range @xmath61 to @xmath62 in fig . measurements compared to nlo calculations three input scales data better described by input scale @xmath63 data well described in integrated @xmath47 range cross - sections in finer bins rapidity shown in fig . forward @xmath47 regions steeper slope than central bins central bins better described by theoretical calculations ratio of @xmath64 to @xmath65 cross - sections shown in fig . measured ratio shows @xmath33 independent flat distribution errors with theoretical calculations decreasing trend function @xmath33 measurement shows more @xmath65 in cross - section of @xmath64 @xmath65 @xmath66 in @xmath47 regionsplot shows forward accessible @xmath47 figure central @xmath47 ratio @xmath64 to @xmath65 cross - sections compared nlo pqcd compass measured differential cross sections charged hadrons @xmath47 range to finer rapidity bins measurements consistent with nlo pqcd calculations theory uncertainties ratio @xmath64 to @xmath65 excess @xmath65 independent @xmath33 ratio indicates discrepancy predicts more @xmath64 low @xmath33 work funded personal grant american national science foundation french atomic alternative energies commission werner vogelsang andrei afanesev theoretical calculations qed pqcd comparisons experimental bourrely soffer 2004 36 * 371 - 374 de florian sassot stratmann 2007 phys.rev.d 75 * 114010 abbon et al . 577 * 455 - 518 lai 2000.phys.j.c 12 * 375 - 392 akushevich shumeiko soroko 1999.phys.j 681 - 687 afanasev private communication@xmath68 sjstrand 135 238 2001 brun carminati cern program library writeup w5013 1993 unpublishedcompass collaboration spin - praha-2010 epj topics
| 0.427085
| 2,674
| 1,350
|
, Saving $0.1 in GPT-4.
|
18,660
|
supercdms is currently operating a 10-kg array of cryogenic germanium detectors in the soudan underground laboratory to search for weakly interacting massive particles , a leading dark matter candidate .
these detectors , known as izips , measure ionization and athermal phonons from particle interactions with sensors on both sides of a ge crystal . the ionization signal can be used to efficiently tag events at high radius and near the top and bottoms surfaces , where diminished charge collection can cause events to mimic wimp - induced nuclear recoils . using calibration data taken with a @xmath0pb source underground at soudan , we demonstrate rejection of surface events of @xmath1 with 46% acceptance of nuclear recoils using the phonon signal only .
we also show with @xmath2ba calibration data underground that the phonon channels can efficiently identify events near the sidewall .
this phonon - based approach can also be extended to lower energies than the ionization - based position reconstruction .
|
the supercdms experiment is a dark matter search consisting of 15 ultra - pure cylindrical germanium crystals known as interleaved z - sensitive ionization and phonon detectors ( izips ) each with a mass 0.62 kg and operated at 50 mk at the soudan underground laboratory in minnesota .
transition - edge sensors ( tess ) and aluminum phonon absorbers called qets are patterned on the top and bottom surfaces of the crystals and grouped in parallel arrays to form 8 phonon channels .
these phonon channels measure non - equilibrium phonons produced by particle interactions in the detector .
electron - hole pairs are also produced by particle interactions , and this ionization energy is measured by electrodes that are interleaved with the phonon sensors . when wimp scatters off a nucleus , it produces a nuclear recoil as opposed to the electronic recoils produced by the majority of background radiation . at a fixed recoil energy ,
the fraction of energy deposited in ionization , called the ionization yield , is approximately 0.3 for nuclear recoils ( nr ) , while it is 1 for electronic recoils ( er ) .
the simultaneous measurement of ionization and phonons therefore provides powerful discrimination between well - reconstructed electronic and nuclear recoils .
background events near the top and bottom surfaces and around the outer sidewall of an izip can exhibit ionization yield below 1 , increasing the chance of leaking into the nr signal band .
betas at 100 kev and gammas at 10 kev stop at about 50 @xmath3 m from the surface , where ionization collection can be lower due to back - diffusion of energetic charges into the wrong polarity electrode @xcite .
radiogenic nuclei such as @xmath0pb from decay of @xmath4pb implanted on nearby passive material produce nuclear recoils with ionization yield about 0.2 and a penetration length of microns .
finally , the electric field is weak and fringing near the outer sidewall of the detector , which may cause charge trapping that reduces the yield of all events , including high - energy gammas .
the ionization electrode structure of the izip efficiently tags potential background events at both high radius and near the surface .
an outer guard electrode forms a ring around the outer edge of each detector face , which measures a signal when the event is at high radius .
the phonon and charge sensors are biased at 0v and + 2v ( -2v ) , respectively , on side 1 ( side 2 ) .
this arrangement produces an overall drift field that causes electrons and holes to drift to opposite sides of the detector when an event occurs in the bulk .
electrons and holes from events near the surface , on the other hand , both drift to the same side of the crystal .
the difference in charge collection between the two sides is therefore a powerful discriminator of surface events @xcite .
since the phonon channels are sensitive to non - equilibrium phonons , some of the position information of the event is contained in the pulse shapes measured by the phonon sensors and the partitioning of energy between the different channels .
phonon - based identification of surface events and sidewall events is advantageous because it provides some redundancy for the charge - based methods .
it also has potential to function at lower energies than the charge , since the phonon resolution is better than the charge resolution in izip detectors , and charge - based position estimation is worse , by definition , in regions where charge collection is poor .
extending discrimination to lower energies is especially important in searches for light wimps , a topic of recent experimental interest @xcite .
when an event occurs in an izip , an initial population of high - frequency ( @xmath5 thz ) prompt phonons are produced .
these phonons interact primarily by elastic isotope scattering and inelastic anharmonic decay .
the rate for isotope scattering in ge is given by@xcite @xmath6 , while the rate for anharmonic decay is given by @xmath7 .
at thz frequencies , anharmonic decay causes rapid downconversion of phonons to lower energies .
as they down convert , the isotope scattering and anharmonic decay rates decrease quickly and the mean free path of the phonons increases , resulting in a quasidiffusive propagation of phonons away from the initial interaction location . to see how the position information can be probed , consider that a 0.5 thz phonon has a lifetime of about 40 @xmath3s much longer than the @xmath8s sampling time of the readout electronics and the radius of the quasidiffusively expanding phonon cloud is expected to be about 0.2 mm @xcite these prompt phonons are preferentially absorbed by sensors near the interactions site since the high rate of scattering can produce many interactions with nearby instrumented surfaces .
this results in significant position information in the early time component of the pulse , with nearby sensors measuring higher amplitudes and faster risetimes .
as time continues , the phonons continue to downconvert until their mean free path exceeds the size of the crystal in the ballistic regime , at which point all position information is lost .
position information is also carried by luke - neganov phonons @xcite produced when charges drift across the crystal . when charge carriers in ge reach their constant drift velocity , additional potential energy released as they drift through the electric field
is converted to luke - neganov phonons . since the electric fields are strongest near the top and bottom surfaces of the detector , the luke phonon power emission is greatest there .
electrons and holes emit luke phonons at the frequency scales of about 0.3 thz and 0.7 thz , which results in quasidiffusive propagation in a localized cloud near the surface , and strong absorption in a single phonon channel .
pb source used in this study.[fig:210pbdecay ] ] pb source in plane of recoil energy and ionization yield.[fig : pbdata ] ]
to test the ability of the phonon signal to identify different types of events , data was taken using two izip detectors running in the soudan underground laboratory with @xmath4pb sources and a @xmath2ba source .
the former produce low - energy gammas , betas , and @xmath0pb nuclei , as shown in figure [ fig:210pbdecay ] , which stop near the surface and are generically classified as surface events " that can exhibit reduced ionization yield and contaminate the nuclear recoil signal region .
they consist of silicon wafers that were implanted with @xmath4pb by exposure to @xmath9rn @xcite .
the wafers were positioned above one side of two different detectors in soudan , and 37.6 live days of unblinded low - background data were analyzed as shown in figure [ fig : pbdata ] .
the @xmath2ba source has strong gamma lines at 302.8 kev , 356 kev , and 383.9 kev , which can produce compton scatters at high - radius where charge trapping frequently occurs . for any individual phonon channel or combination of channels ,
a pulse height estimator is constructed using an optimal filter with a single pulse template .
one simple method for quantifying the position - dependence of each event is to compare the relative partitioning of energy between different phonon channels .
the resulting phonon energy partitioning will be correlated with the spatial position of the events , so that events near the surface and outer sidewall of the detector can be identified in phonons even if their charge propagation and reconstruction is poor . to tag events near the surface from the @xmath4pb source
, we can compare the phonon energy measured on side 1 against side 2 of the detector .
traces from all channels on each side are summed and an optimal filter is used to compute the pulse amplitude .
the right panel of figure [ fig : ps1vps2 ] shows low - yield data from a detector with a source above side 1 .
these events are overwhelmingly surface events , and they primarily lie in a band below the line of equal energy partitioning . in contrast , nuclear recoils are centered in a broad band with equal energy collected on each side . a cut is constructed in bins of side 1 phonon energy to optimize the signal significance of nuclear recoils at each energy .
the resulting cut values are then fit to the functional form shown by the purple lines in figure [ fig : ps1vps2 ] ; events inside the purple bands are accepted , while events outside are rejected .
a small spur of events is also visible above the upper cut boundary at low energy .
these events are due to a period of abnormally high electronics noise on one channel , rather than true surface events , and they are ignored in the cut optimization . to tag events at high radius in the @xmath2ba calibration data , we sum the pulses from the two outer channels and then compare to the total energy of the event to obtain the fraction of energy in the outer channel . since the calibration gammas consist of a mixture of events near the sidewall and events in the interior of the detector , one must use the charge information to tag high radius events .
figure [ fig : prpart ] shows the fraction of energy measured in the outer phonon channel for non - surface nuclear recoils in @xmath10cf calibration data , compared with low - yield ( @xmath11 ) electronic recoils in @xmath2ba that are tagged as being at high radius by the outer charge channel .
cf nuclear recoils ( left ) and @xmath4pb calibration data with ionization yield @xmath12 ( right ) .
purple lines indicate an energy - dependent cut optimized to separate surface events from bulk nuclear recoils .
blue ( red ) points on the right panel are calibration events that pass ( fail ) the phonon symmetry cut .
[ fig : ps1vps2 ] ] cf with charge signal consistent with being in the inner part of the detector ( blue ) , compared with low - yield events from @xmath2ba with charge signal consistent with being in the sidewall ( red ) .
[ fig : prpart ] ]
the optimized cut shown in figure [ fig : ps1vps2 ] is able to achieve a surface event leakage of @xmath1 over an energy range from 8.0 to 115 kev recoil energy with a nuclear recoil passage fraction of 46% when measured on @xmath10cf nuclear recoils .
while this is somewhat worse than the surface event rejection achieved using the charge information@xcite , the phonon surface event discrimination is an independent tag which can complement charge - based methods .
it is also extensible to lower energies than the charge - based discrimination , which is a topic of active study within supercdms .
the radial cut is additionally able to tag high - radius charge - suppressed gammas similarly to the charge signal .
cutting events with greater than 24% of their energy in the outer channels preserves 85% of the inner nuclear recoils , while rejecting 99.9% of the low - yield outer events that could potentially leak into the signal region .
this shows that even for low - yield events with reduced charge collection , the outer phonon channels can still efficiently distinguish gammas near the sidewall from inner nuclear recoils .
phonon propagation in supercdms izip detectors operating at soudan provides strong position sensitivity in regions of the detector which are prone to reduced charge collection that produces leakage into the wimp - induced nr band .
although the izip has excellent charge - based defenses against surface and sidewall events , the simple partition estimators of the phonon energy provides even more discrimination against these events .
phonon - only methods are also extensible to lower energies than charge - based methods and will be used in future low - energy threshold analyses of supercdms data .
time - domain pulse - fitting algorithms for complex pulse shape discrimination@xcite are also under active development , which may further improve performance over partition - based position estimators .
we thank julien billard , blas cabrera , enectal figueroa - feliciano , lauren hsu , matt pyle , and richard schnee for valuable discussions .
is supported in part by the department of energy office of science graduate fellowship program ( doe scgf ) , made possible in part by the american recovery and reinvestment act of 2009 , administered by orise - orau under contract no .
deac05 - 06or23100 .
the supercdms collaboration acknowledges technical assistance from the soudan underground laboratory and minnesota department of natural resources .
the izip detectors were fabricated in the stanford nanofabrication facility which is a member of the national nanofabrication infrastructure network sponsored by nsf under grant ecs-0335765 .
supercdms is supported by the us doe , nsf , nserc canada , and multidark .
|
supercdms experiment dark matter search 15 - pure germanium crystals interleaved z - sensitive ionization phonon detectors mass 0.62 kg operated at 50 mk soudan underground laboratory minnesota transition - edge sensors aluminum phonon absorbers patterned on surfaces crystals 8 phonon channels measure non - equilibrium phonons particle interactions electron - hole pairs produced ionization energy measured by electrodes interleaved phonon sensors wimp scatters nucleus produces nuclear recoil electronic recoils radiation fixed recoil energy ionization yield 0.3 for nuclear recoils 1 for electronic recoils measurement ionization phonons discrimination between electronic nuclear recoils background events top surfaces outer sidewall izip ionization yield below 1 leaking into nr signal band betas 100 gammas 10 kev stop at 50 @xmath3 m from surface ionization collection lower - diffusion wrong polarity electrode radiogenic nuclei @xmath0pb @xmath4pb material produce nuclear recoils ionization yield 0.2 penetration length micronselectric field weak near outer sidewall detector charge trapping yield including high - energy gammas ionization electrode structure izip tags background events at high radius near surface outer guard electrode forms ring around edge detector face measures signal when event high radius phonon charge sensors biased at 0v + 2v ( -2v ) on side 1 2 ) drift field electrons holes drift opposite sides detector bulk electrons from near surface drift to same side difference in charge collection sides discriminator of surface events phonon channels sensitive to non - equilibrium phonons position information in pulse shapes partitioning energy phonon - based identification of surface sidewall events provides redundancy for charge - based methods potential to function at lower energies than charge phonon resolution better charge charge - position estimation worse in regions charge collection poor extending discrimination to lower energies important in searches for light wimps event occurs in izip initial population high - frequency prompt phonons produced interact by elastic isotope scattering inelastic anharmonic decayisotope scattering in ge by@xcite @xmath6 anharmonic decay by @xmath7 at thz frequencies anharmonic decay causes downconversion phonons to lower energies isotope scattering anharmonic decay rates decrease mean free path increases quasidiffusive propagation away from interaction location 0.5 thz phonon lifetime 40 @xmath3s longer than @xmath8s radius expanding phonon cloud 0.2 mm phonons absorbed by sensors near site high scattering results in significant position information early time higher amplitudes faster risetimes phonons downconvert until mean free path exceeds size crystal ballistic regime position information lost position information carried by luke - neganov phonons charges drift across crystal charge carriers constant drift velocity potential energy converted to luke - neganov phonons electric fields strongest near top bottom surfaces detector luke phonon power emission greatest electrons holes emit luke phonons at 0.3 thz and 0.7 thz quasidiffusive propagation in localized cloud near surface strong absorption in single phonon channel pb source study:210pbdecay pb source recoil energy ionization yield pbdata test phonon signal identify events data two izip detectors soudan underground laboratory @xmath4pb @xmath2ba source former produce low - energy gammas betas @xmath0pb nuclei figure stop near surface classified surface events reduced ionization yield contaminate nuclear recoil signal silicon wafers implanted @xmath4pb exposure @xmath9rn @xcite wafers positioned above side two detectors soudan 37.6 live days unblinded low - background data analyzed @xmath2ba source strong gamma lines 302.8 kev 356 kev 383.9 kev produce compton scatters high - radius charge trapping phonon channel pulse height estimator constructed optimal filter single pulse template position - dependence compare relative partitioning energy between phonon channels phonon energy partitioning correlated spatial position events events near surface outer sidewall detector identified charge propagation reconstruction poor tag events surface @xmath4pb source compare phonon energy side 1 side 2 detector traces channels summed optimal filter compute pulse amplituderight panel figure shows low - yield data detector source above side 1 events surface events band below equal energy partitioning nuclear recoils centered broad band equal energy each side cut constructed in bins side 1 phonon energy signal significance nuclear recoils resulting cut values fit to functional form purple lines events inside purple bands accepted outside rejected small spur events visible above upper cut boundary at low energy due to high electronics noise one channel surface events ignored in cut optimization tag events high radius sum pulses two outer channels compare total energy fraction energy outer channel calibration gammas mixture sidewall interior detector charge information to tag high radius events figure shows fraction energy outer phonon channel for non - surface nuclear recoils @xmath10cf data compared with low - yield electronic recoils in @xmath2ba high radius cf nuclear recoils left @xmath4pb calibration data ionization yield @xmath12 right purple lines indicate energy - dependent cut surface events from bulk nuclear recoils blue ) points right panel are calibration events pass phonon symmetry cutfig : ps1vps2 charge signal inner part detector blue compared low - yield events @xmath2ba sidewall red ) fig prpart optimized cut ps1vps2 surface event leakage @xmath1 8.0 to 115 kev recoil energy nuclear recoil passage fraction 46% @xmath10cf nuclear recoils worse surface event rejection charge information@xcite phonon surface event discrimination independent tag charge - based methods extensible lower energies topic study supercdms radial cut high - radius charge - suppressed gammas cutting events 24% energy outer channels preserves 85% inner nuclear recoils 99.9% low - yield outer events signal region low - yield reduced charge collection outer phonon channels distinguish gammas near sidewall from inner nuclear recoils phonon propagation supercdms izip detectors position sensitivity reduced charge collection leakage wimp - induced nr band izip charge - based defenses against surface sidewall events partition estimators phonon energy more discrimination phonon - only methods extensible lower energies charge used future low - energy threshold analyses supercdmstime - domain pulse - fitting algorithms shape discrimination development improve performance partition position estimators julien billard cabrera figueroa - feliciano lauren hsu matt pyle richard schnee discussions supported energy science fellowship program american recovery reinvestment act 2009 orise - orau contract - supercdms collaboration assistance soudan underground laboratory minnesota department natural resources izip detectors fabricated stanford nanofabrication facility national nanofabrication infrastructure network nsf grant supercdms supported us doe nsf nserc canada multidark
| 0.433373
| 2,746
| 1,384
|
, Saving $0.1 in GPT-4.
|
18,662
|
classical and quantum superintegrable systems have a long history and they possess more integrals of motion than degrees of freedom .
they have many attractive properties , wide applications in modern physics and connection to many domains in pure and applied mathematics .
we overview two new families of superintegrable kepler - coulomb systems with non - central terms and superintegrable hamiltonians with double singular oscillators of type @xmath0 in @xmath1-dimensional euclidean space .
we present their quadratic and polynomial algebras involving casimir operators of @xmath2 lie algebras that exhibit very interesting decompositions @xmath3 , @xmath4 and the cubic casimir operators .
the realization of these algebras in terms of deformed oscillator enables the determination of a finite dimensional unitary representation .
we present algebraic derivations of the degenerate energy spectra of these systems and relate them with the physical spectra obtained from the separation of variables .
|
algebraic methods are powerful tools in modern physics . well known examples include the @xmath1-dimensional hydrogen atom and harmonic oscillator which were studied using the @xmath2 @xcite and @xmath5 @xcite lie algebras respectively .
in particular the spectrum of the 5d hydrogen atom have been calculated using its @xmath6 lie algebra and the corresponding casimir operators of order two , three and four @xcite .
superintegrable models are an important class of quantum systems which can be solved using algebraic approaches .
an important property of such systems is the existence of non - abelian symmetry algebras generated by integrals of motion .
these symmetry algebras can be embedded in certain non - invariance algebras involving non - commuting operators .
such symmetry algebras are in general finitely generated polynomial algebras and only exceptionally finite dimensional lie algebras .
quadratic algebras have been used to obtain energy spectrum of superintegrable systems @xcite .
the structure of a class of quadratic algebras with only three generators was studied and applied to 2d superintegrable systems in @xcite .
many researchers have studied quadratic and polynomial symmetry algebras of superintegrable systems and their representation theory ( see e.g. @xcite ) .
we review the results of our recent two papers @xcite and present the algebraic derivation of the complete energy spectrum of the @xmath1-dimensional superintegrable kepler - coulomb system with non - central terms and superintegrable double singular oscillators .
let us consider the @xmath1-dimensional superintegrable kepler - coulomb system with non - central terms and superintegrable hamiltonian with double singular oscillators of type @xmath7 introduced in @xcite @xmath8 where @xmath9 , @xmath10 , @xmath11 , @xmath12 , @xmath13 , @xmath14 , @xmath15 , @xmath16 and @xmath17 , @xmath18 , @xmath19 are positive real constants .
the system ( [ hamil1 ] ) is a generalization of the 3d superintegrable system in @xmath20 @xcite .
it includes as a particular 3d case the hartmann potential which has applications in quantum chemistry and its classical analog possesses closed trajectories and periodic motion @xcite . the model ( [ hamil2 ] )
is the generalization of the 4d and 8d systems obtained via the hurwitz transformation for which only the symmetry cases ( 2,2 ) and ( 4,4 ) were studied @xcite .
the model ( [ hamil1 ] ) is multiseparable and allows separation of variables in hyperspherical and hyperparabolic coordinates .
the wave function is @xmath21 in terms of special functions @xmath22 where @xmath23 , @xmath24 being the general form of the separation constant , @xmath25 denotes a jacobi polynomial and @xmath26 , @xmath27 .
the energy spectrum of the system ( [ hamil1 ] ) is @xcite @xmath28 the system ( [ hamil2 ] ) is also multiseparable and allows separation of variables in double hyper eulerian and double hyperspherical coordinates .
we can split ( [ hamil2 ] ) into the sum of two singular oscillators of dimensions @xmath29 and @xmath30 as @xmath31 , where @xmath32 the wave function @xmath33 of @xmath34 in terms of special functions is given by @xmath35 where @xmath36 , @xmath37 , @xmath38 , @xmath39 and @xmath40 .
the wave equation of @xmath41 in @xmath42-dimensional hyperspherical coordinates has similar solution .
the energy spectrum of the system ( [ hamil2 ] ) is @xcite @xmath43 where @xmath44 , @xmath45 and @xmath46 .
the integrals of motion of ( [ hamil1 ] ) are given by @xmath47,\label{kf5 } \\&b&=-m_{n}+c_{1}(r - x_{n})\chi_1(r , x_n)-c_{2}(r+x_{n})\chi_2(r , x_n),\label{kf6 } \\&j^{2}&=\sum_{i < j}^{n-1}l_{ij}^{2},\quad l_{i j}=x_{i}p_{j}-x_{j}p_{i } , \quad i , j=1 , ... , n-1,\end{aligned}\ ] ] and for the model ( [ hamil2 ] ) they are @xmath48,\label{kpa } \\ & b&=\frac{1}{2}\left\{\sum^n_{i=1}p^2_i-\sum^n_{i = n+1}p^2_i\right\ } + \frac{\omega^2}{2}\left\{\frac{1}{\phi_1(x_1,\dots , x_n)}-\frac{1}{\phi_2(x_{n+1},\dots , x_{n})}\right\}\nonumber\\&&\quad+c_1\phi_1(x_1,\dots , x_n)-c_2\phi_2(x_{n+1},\dots , x_{n}),\label{kpb } \\ & j_{(2)}&=\sum_{i < j}j^2_{ij},\quad j_{ij}=x_i p_j - x_j p_i , i , j= 1,2, .... ,n , \\ & k_{(2)}&=\sum_{i < j}k^2_{ij},\quad k_{ij}=x_i p_j - x_j p_i , i , j= n+1, .... ,n,\label{kpj}\end{aligned}\ ] ] where the runge - lenz vector @xmath49 . the integrals of motion \{@xmath50 } close to the general form of the quadratic algebra @xmath51 @xcite , @xmath52&=c,\label{prova5 } \\&[a , c]&=\alpha a^2+\gamma \{a , b\}+\delta a+\epsilon b+\zeta,\label{prova6 } \\&[b , c]&=aa^2-\gamma b^{2}-\alpha\{a , b\ } + d a -\delta b + z\label{prova1}\end{aligned}\ ] ] and the casimir operator @xmath53 here coefficients @xmath54 are given in the following table for models @xmath55 and @xmath56 @xcite .
.[tabone ] coefficients in @xmath51 and @xmath57 . [ cols="<,<,<",options="header " , ] + in the above table , @xmath58 , @xmath59 and @xmath60 . for a finite - dimensional unitary representation
, we have the following constraints @xmath61 on the structure function ( [ st ] ) .
the solutions of these constraints provide the energy spectra @xmath62 and the arbitrary constant @xmath63 ( @xmath64 ) as @xmath65 we have four possible structure functions for @xmath55 @xcite and twenty four for @xmath56 @xcite . making the identification @xmath66 , @xmath67 , @xmath68 , the energy spectra @xmath69 and @xmath70 coincide ( [ en2 ] ) and ( [ edso ] ) respectively .
we have presented some of the results in @xcite and shown how the @xmath5 and @xmath2 symmetry algebras of the @xmath1-dimensional kepler - coulomb ( i.e. , @xmath71 ) and the @xmath1-dimensional harmonic oscillator ( i.e. , @xmath71 ) are broken to higher rank polynomial algebra of the form @xmath72 for non - zero @xmath18 and @xmath19 , where @xmath73 , are certain lie algebras .
@xmath51 is a quadratic algebra involving casimir operators of the lie algebras in its structure constants .
we have also presented the realizations of these quadratic algebras in terms of deformed oscillator algebras and obtained the finite dimensional unitary representations which yield the energy spectra of these superintegrable systems .
in addition , we have compared them with the physical spectra obtained from the separation of variables .
the systems ( [ hamil1 ] ) and ( [ hamil2 ] ) could be studied using new approaches such as the recurrence method related to special functions and orthogonal polynomials and approaches combining ladder , shift , intertwining and supercharges operators @xcite .
the generalizations of these systems to include monopole interactions and their duals @xcite could be also investigated .
* acknowledgements : * the research of fh was supported by international postgraduate research scholarship and australian postgraduate award .
i m was supported by the australian research council through a discovery early career researcher award de 130101067 .
yzz was partially supported by the australian research council , discovery project dp 140101492 .
9 bargmann 1936 _ zeitschrift fur physik _ * 99 * , 576 .
|
algebraic methods physics examples include hydrogen atom harmonic oscillator studied using @xmath2 algebras spectrum 5d hydrogen atom calculated using @xmath6 lie algebra casimir operators four superintegrable models quantum solved algebraic approaches non - abelian symmetry algebras integrals motion in non - invariance algebras non - commuting operators finitely generated polynomial algebras exceptionally finite dimensional lie algebras quadratic algebras used energy spectrum superintegrable systems algebras three generators applied to 2d superintegrable systems researchers studied quadratic polynomial symmetry algebras of superintegrable systems representation theory review results two papers present algebraic derivation of energy spectrum of @xmath1-dimensional superintegrable kepler - coulomb system with non - central terms superintegrable double singular oscillatorsconsider @xmath1-dimensional superintegrable kepler - coulomb system non - central terms superintegrable hamiltonian double singular oscillators @xmath7 @xcite @xmath8 @xmath9 positive constants system [ hamil1 ] generalization 3d superintegrable system @xmath20 @xcite includes hartmann potential applications quantum chemistry closed trajectories periodic motion model hamil2 ] ) generalization 4d 8d systems hurwitz transformation symmetry cases ( 2,2 ) ( 4,4 ) studied multiseparable allows separation variables hyperspherical hyperparabolic coordinates wave function @xmath21 special functions @xmath22 @xmath23 @xmath24 general form separation constant @xmath25 jacobi polynomial @xmath26 @xmath27 energy spectrum system @xcite @xmath28 system hamil2 multiseparable allows separation variables double hyper eulerian double hyperspherical coordinates split [ hamil2 ] ) sum two singular oscillators dimensions @xmath29 @xmath30 @xmath31 @xmath32 wave function @xmath33 @xmath34 special functions @xmath35 @xmath36 @xmath40wave equation @xmath41 @xmath42-dimensional coordinates similar solution energy spectrum system hamil2 @xmath43 @xmath44 @xmath46integrals motion hamil1 @xmath47{kf5_{n+c_{1} x_{n\chi_1(r x_n)-c_{2}(r+x_{n}\chi_2(r x{kf6{2\sum_{i j{n-1}l_{ij{2} l{i=x_{i-x_{j}p_{i j=1 n-1{aligned model hamil2 @xmath48{kpa\frac{1}{2}\sum^n_{i=1-\sum^n_{i n+1}p^2_i\frac\omega^2}{2}{1\phi_1(x_1 x_n-\frac{1\phi_2(x_{n+1} x{n+c_1\phi_1(x_1_n-c_2\phi_2(x_{n+1} x_{n{kpb{(2)}=\sum_{i j}j^2_{ij} j_{ij}=x_i p_j - x_j p_i 1,2k_{(2)}\sum_{i < j}k^2_{ij}=x_i p_j - x p j= n+1,{kpj}{aligned} runge - lenz vector @xmath49 integrals motion@xmath50 quadratic algebra @xmath51 @xcite @xmath52{prova5 }\alpha a^2+\gamma+\delta+\epsilon b+\zeta{prova6^2-\gamma{2-\alpha -\delta b + z{prova1}{aligned} casimir operator @xmath53 coefficients @xmath54 table models @xmath55 @xmath56 @xcite coefficients @xmath51 @xmath57 table @xmath58 @xmath59 @xmath60 finite - unitary representation constraints @xmath61 structure function solutions provide energy spectra @xmath62 arbitrary constant @xmath63 @xmath64 @xmath65 four possible structure functions @xmath55 @xcite twenty four @xmath56 @xciteidentification @xmath66 energy spectra coincide en2 edso ] presented results @xcite @xmath5 @xmath2 symmetry algebras kepler - coulomb harmonic oscillator broken higher rank polynomial algebra @xmath72 non - zero @xmath18 @xmath73 lie algebras @xmath51 quadratic algebra casimir operators lie algebras structure constants presented realizations quadratic algebras deformed oscillator algebras obtained finite dimensional unitary representations energy spectra superintegrable systems compared with physical spectra separation variables systems [ hamil1 [ hamil2 ] ) studied approaches recurrence method special functions orthogonal polynomials approaches combining ladder shift intertwining supercharges operators @xcite generalizations monopole interactions duals @xcite investigated research fh supported international postgraduate research scholarship australian postgraduate award m supported australian research council discovery early career researcher award yzz partially supported australian research council discovery project 140101492 bargmann 1936 zeitschrift fur physik 99, 576
| 0.340403
| 2,015
| 1,076
|
, Saving $0.1 in GPT-4.
|
18,673
|
after a prolong and deep solar minimum at the end of solar cycle 23 , the current cycle 24 is one of the lowest cycles .
the two periods of deep minimum and mini - maximum of the cycle 24 are connected by a period of increasing solar activity . in this work ,
the forbush decreases of cosmic ray intensity during the period from january 2008 to december 2014 are studied .
a statistical analysis of 749 events using the izmiran database of forbush effects obtained by processing the data of the worldwide neutron monitor network using the global survey method is performed .
a further study of the events that happened on the sun and affected the interplanetary space , and finally provoked the decreases of the galactic cosmic rays near earth is performed .
a statistical analysis of the amplitude of the cosmic ray decreases with solar and geomagnetic parameters is carried out .
the results will be useful for space weather studies and especially for forbush decreases forecasting .
|
cosmic rays ( cr ) are high energetic particles that are coming from galactic and extragalactic sources @xcite .
they are not stable but a lot of cosmic ray variations are recorded by the neutron monitor worldwide network that is considered as a reliable network of ground based detectors of cosmic rays .
these variations are a really important source on space weather information .
the first who studied the cosmic ray variations almost eighty years , or otherwise eight solar cycles ago , was scott forbush @xcite .
he discovered a very important variation in cosmic ray intensity , after whom it was named as forbush decrease ( fd ) . in this work
we study fds with amplitude greater than 2% . as a source of fd
is considered an icme , which have created an interplanetary shock , and when it reaches the earth@xmath0s magnetosphere , in the most cases , a sudden storm commencement ( ssc ) is created and a decrease in cosmic rays appears @xcite .
previous studies @xcite @xcite have introduced the meaning of fds precursors and the effort of making from them a forecasting model for fds . as a precursor
is considered a pre - decrease within the narrow longitude range and a wide pre - increase . in this work
we have studied the fds of the cosmic ray intensity during the time period from january 2008 to december 2014 and we have compared them with the fds which had been taken place in the previous solar cycle 23 . furthermore we present preliminary results of fds precursors in some events that have been selected with specific criteria .
about 50 neutron monitors located all over the world provide their cosmic ray data to the high resolution neutron monitor database - nmdb ( http://www.nmdb.eu ) . in this work corrected for pressure hourly values of these data
have been obtained .
in addition the izmiran database of fds has also used extracting a lot of information for each selected event . by applying the global survey method ( gsm ) , the first harmonic of the cosmic ray anisotropy at a cosmic ray rigidity of 10gv , which is close to the effective rigidity of the particles being registered by the neutron monitor worldwide network ,
is calculated @xcite .
m class ( third panel ) and halo cmes ( bottom panel)[fig1],width=340 ] the time period from january 2008 to december 2014 , covering the minimum bewteen the solar cycles 23/24 , the ascending phase and the maximum period of the solar cycle 24 , was studied . in figure
[ fig1 ] , from top to bottom , time profiles of the monthly values of the normalized cosmic ray intensity from the fort smith neutron monitor , the total number of solar flares and the number of importance @xmath1 m flares from the goes satellites ( ftp.ngdc.noaa.gov ) are presented . in the bottom panel of this figure
the number of halo cmes from the large angle and spectroscopic coronagraph ( lasco ) onboard the solar and heliospheric observatory ( soho ) ( http://cdaw.gsfc.nasa.gov ) are also illustrated .
an extended and deep minimum between the solar cycles 23 and 24 , where it can be said that there was no solar activity , can be observed .
there were only three halo cmes in about two years .
we have to notice here that the cosmic ray intensity in this time period was in the highest levels that have ever been recorded . in the next two years , 2010 - 2011 ,
the solar activity started to increase and the cosmic ray intensity , on the contrary , started to decrease .
so these two years are characterized as the ascending phase of solar cycle 24 .
then in 2012 the solar activity developed a shoulder , which turned into a plateau in 2013 and had an extra peak in 2014 , in a good agreement with the results of other studies ( e.g. @xcite ) .
the anti - correlation between the number of sunspots and the cosmic ray intensity during the last two solar cycles is well noticed in figure [ fig2 ] .
the deep minimum area and the minimax area of solar cycle 24 are obvious .
if we have a look on the number of fds per month ( figure [ fig3 ] ) that occurred during these solar cycles , it can be noted that more fds took place at the descending phase of solar cycle 23 and the same seems to be happened also at the current cycle . on the ascending phases
only a few fds were recorded .
a few events were also observed at the peak of the current cycle , with a maximum number of five events per month .
, width=283 ] , width=283 ]
during the whole studied period of cycle 24 a number of 749 forbush effects recorded , out of which only 114 events with amplitude greater than 2% . from these events , only these that had amplitude greater than 5% are presented in table [ l2ea4-t1 ] .
some of their characteristics are the amplitude of the decrease of the cosmic ray intensity , the values of the geomagnetic index dst and of the interplanetary magnetic field ( imf ) , the solar wind velocity and the connected flares and cmes , as also the cmes velocity ( see also @xcite ) .
it is noted that from the cases of fifteen fds with amplitude greater than 5% eight of them occurred in 2014 while the other seven events occurred in a time period of six years .
it can be said that there is a quasi - linear correlation between geomagnetic index and the fd s amplitude @xcite .
but it is not a rule that a large value of a geomagnetic index , in the case of dst , automatically means a small fd , as it is presented in table [ l2ea4-t1 ] .
all fds in table [ l2ea4-t1 ] are created by cmes .
it is naturally that a cme is the only source of a big fd @xcite .
the majority of fds are produced by cmes with velocities from 400 to 1200 km / sec and at the same time the velocity of the solar wind fluctuates from 400 to 740 km / sec . on the contrary ,
once again it is resulted that the fd@xmath0s amplitude is not tightly connected with the cmes velocity and the same is valid for the connection of them with the solar wind velocity @xcite . [
cols="<,^,^,^,^,^,^,^,^,^ " , ] [ l2ea4-t1 ]
for studying the precursor effects in different forbush events , the `` ring of stations '' ( rs ) method has been applied @xcite to the hourly data of cr intensity recorded by the neutron monitor stations of the world wide network with cut off rigidity rc @xmath24gv and latitudes @xmath270 @xcite .
we follow the criteria of the model as they have been proposed by @xcite , such as the anisotropy criterion .
the events of fds through the time period 2008 - 2014 have been studied in detail and from them have been selected the cases which had an amplitude greater than 3% and the anisotropy before the shock@xmath0s arrival was axy > 0.9% . the chosen anisotropy can be considered as anomalous , since it exceeds the mean statistical value significantly @xcite . furthermore these events have to be associated with a ssc and the interplanetary environment has to be quiet or with small disturbances before the fd s appearance . from 58 events that followed the first criterion only seven of them reached the anisotropy value of 0.9% before the shock ( it is usually < 0.6% ) and present precursors signs .
all of them have been connected with a cme . in this study
the characteristic event of 17 march 2013 was chosen to be analyzed and to be presented .
, width=302,height=151 ] , width=302,height=151 ] this event of march 2013 was related to a cme registered on 15 march 2013 at 07:12:05ut , connected with a m1.1 flare ( n09w05 ) .
the associated shock arrival was registered on 17 march 2013 at 05:59ut .
there were strong changes in the interplanetary space parameters , especially in the interplanetary magnetic field intensity .
the amplitude of the occurred cr intensity decrease has been calculated to the value of 4.6% at cosmic rays of 10gv by using the gsm method . in figure
[ fig4-f4 ] , orange dots are hourly cosmic ray variations at different neutron monitor stations , and the curve is the fitted first harmonic of anisotropy ( solar diurnal variation ) for data under consideration .
there is a good example of pre - decrease as at a narrow region we can get deep decrease > 2.25% . the asymptotic longitudinal cr distribution diagram for this event is presented in figure [ fig5 ] .
here the cr intensity decreases , as measured by all neutron monitor stations used by the rs method , are depicted with red circles , while yellow circles refer to cr intensity increases relative to a quiet fixed period .
the size of the circles is proportional to the size of the variation @xcite .
the precursor is a pre - decrease in the longitudinal zone @xmath3 before the shock@xmath0s arrival .
finally , to sum up , from 114 studied fds with amplitude greater than 2% at 10gv , only three occurred in the first two years ( 2008 - 2009 ) , twenty one events were recorded during the ascending phase ( 2010 - 2011 ) and ninenty events in the minimax phase ( 2012 - 2014 ) , with fourty five of them to be occurred in the last year 2014 . from our analysis the following conclusions are obtaining : * there is no obvious correlation of the fds amplitude with the velocities of solar wind and of cmes .
* there are signs of precursors that can help to forecast the upcoming forbush decrease .
* in the current solar cycle 24 only seven out of fifty eight fds follow the anisotropy criterion , and only about 70% of them present warning signals .
* the pre - decreases and the pre - increases of the fds occur on specific asymptotic longitudes .
the pre - decrease of a fd of cosmic ray intensity is at a narrow region and gives deep decreases with amplitude > 2.25% .
we acknowledge the nmdb database ( www.nmdb.eu ) , founded under the european union s fp7 program ( contract no .
213007 ) for providing high - resolution cosmic ray data and the pi of the neutron monitor stations .
thanks are due to ace / wind , omni , and noaa data centers for kindly providing the related solar and interplanetary data .
many thanks are also due to the cosmic ray group of the izmiran of the russian academy of sciences for kindly providing the most complete catalog of forbush decreases .
d. lingri thanks the national and kapodistrian university of athens and the local organizing commitee of the xxv ecrs 2016 for supporting her participation to the xxv european cosmic ray symposium . 9 h.v .
cane , `` cmes and forbush decreases '' , in : issi space science series , 10 , `` cosmic rays and earth '' , 2000 + s.e .
forbush , `` world - wide cosmic - ray variations , 1937 - 1952 '' , j. geophys .
res . , 59 , 525 , 1954 + a.v .
belov , `` forbush effects and their connection with solar , interplanetary and geomagnetic phenomena '' , in : gopalswamy , n. , webb , d.f .
iau symposium 257 , 439 , 2008 + m. papailiou , h. mavromichalaki , e. eroshenko , a. belov , v. yanke , `` precursor effects in different cases of forbush decreases '' , solar phys .
, 276 , 337 - 350 , 2012 + m. papailiou , h. mavromichalaki , a. belov , e. eroshenko , v. yanke , the asymptotic longitudinal cosmic ray intensity distribution as precursor for forbush decreases " , solar phys . , 280 , 641 - 650 , 2012 + a.v .
belov , l. baisultanova , e. eroshenko , h. mavromichalaki , v. yanke , p. pschelkin , c. plainaki , g. mariatos , `` magnetospheric effects in cosmic rays during the unique magnetic storm on november 2003 '' , j. geophys .
res . , 110 , a09520 , 2005 + o.p.m .
aslam , badruddin , `` study of cosmic - ray modulation during the recent unusual minimum and mini - maximum of solar cycle 24 '' , solar phys .
, 290 , 2333 , 2015 + d. lingri , h. mavromichalaki , a. belov , e. eroshenko , v. yanke , a. abunin , m. abunina , `` solar activity parameters and associated forbush decreases during the minimum between the cycles 23 and 24 and the ascending phase of solar cycle 24 '' , solar phys . , 291 , 1025 - 1041 , 2016 + a. asipenka , a.v .
belov , e. eroshenko , h. mavromihalaki , m. papailiou , a. papaioannou , v. oleneva , v. yanke , `` asymptotic longitudinal distribution of cosmic ray variations in real time as the method of interplanetary space diagnostic '' , proc .
31st icrc , lodz , 2009 +
|
cosmic rays are high energetic particles from galactic extragalactic sources not stable variations recorded by neutron monitor network reliable network of ground detectors variations important source space weather information first studied ray variations eighty years ago scott forbush discovered important variation in cosmic ray intensity named as forbush decrease ( fd ) study fds with amplitude greater than 2% source of fd icme created interplanetary shock reaches earth magnetosphere sudden storm commencement decrease in cosmic rays appears previous studies introduced fds precursors forecasting model for precursor pre - decrease within narrow longitude range wide pre - increase studied fds of cosmic ray intensity january 2008 to december 2014 compared with fds in previous solar cycle 23 present preliminary results of fds precursors in events selected with about 50 neutron monitors provide cosmic ray data to high resolution neutron monitor database - nmdb corrected for pressure hourly values of data obtained izmiran database of fds used information for each selected eventapplying global survey method first harmonic cosmic ray anisotropy at rigidity 10gv close to effective rigidity particles registered by neutron monitor network calculated @xcite m class third panel halo cmes bottom panel time period from january 2008 to december 2014 covering minimum solar cycles 23/24 ascending phase maximum period solar cycle 24 studied figure time profiles monthly values normalized cosmic ray intensity from fort smith neutron monitor total number solar flares importance @xmath1 m flares from goes satellites.noaa.gov presented bottom panel number halo cmes from large angle spectroscopic coronagraph lasco solar and heliospheric observatory soho illustrated extended deep minimum between solar cycles 23 and 24 no solar activity observed three halo cmes in two years cosmic ray intensity highest levels recorded next two years 2010 - 2011 solar activity cosmic ray intensity ascending phase of solar cycle 24 in 2012 solar activity developed shoulder plateau in 2013 extra peak in 2014 agreement with results other studiesanti - correlation between sunspots cosmic ray intensity during last two solar cycles noticed in figure fig2 ] deep minimum area minimax area of solar cycle 24 obvious on number of fds per month ( figure fig3 ] during cycles more fds at descending phase of solar cycle 23 same at current cycle ascending phases few fds recorded few events at peak of current cycle maximum five events per month during cycle 24 749 forbush effects recorded 114 events with amplitude greater than 2% amplitude greater than 5% presented in table [ l2ea4-t1 ] characteristics are amplitude of decrease cosmic ray intensity values geomagnetic index dst interplanetary magnetic field imf solar wind velocity connected flares cmes cmes velocity fifteen fds with amplitude greater than 5% eight occurred in 2014 seven in six years quasi - linear correlation between geomagnetic index fd s amplitude @xcite not rule large value of geomagnetic index automatically means small fd table all fds in created by cmes cme only source of big fd @xcite majority fds produced by cmes with velocities 400 to 1200 km / sec solar wind fluctuates from 400 to 740 km / sec fd@xmath0s amplitude not tightly connected with cmes velocity valid for solar wind velocity for studying precursor effects in forbush events ring of stations '' method applied to hourly data cr intensity by neutron monitor stations with cut off rigidity rc @xmath24gv latitudes @xmath270 follow criteria model anisotropy criterion events of fds 2008 - 2014 studied selected cases amplitude greater than 3% anisotropy before shock@xmath0s arrival axy > 0.9% chosen anisotropy as anomalous exceeds mean statistical value events associated with ssc interplanetary environment quiet or with small disturbances before fd s appearance from 58 events seven reached anisotropy value 0.9% before shock usually < 0.6% present precursors signs all connected with cme characteristic event of 17 march 2013 chosen analyzed presentedwidth=302,height=151 event march 2013 related to cme 15 march 2013 07:12:05ut connected m1.1 flare n09w05 ) shock arrival registered 17 march 2013 05:59ut strong changes interplanetary space parameters magnetic field intensity cr intensity decrease calculated 4.6% at cosmic rays 10gv gsm method figure fig4-f4 orange dots hourly cosmic ray variations neutron monitor stations curve first harmonic of anisotropy solar diurnal variation pre - decrease narrow region deep decrease > 2.25% asymptotic longitudinal cr distribution diagram figure fig5 ] cr intensity decreases depicted red circles yellow circles cr intensity increases quiet period size circles proportional to variation @xcite precursor pre - decrease zone @xmath3 before shock arrival 114 studied fds amplitude greater than 2% at 10gv three first two years 2008 - 2009 ) twenty one events ascending phase 2010 - 2011 ) ninenty minimax phase 2012 - 2014 ) fourty five last year 2014 no obvious correlation fds amplitude with velocities solar wind cmessigns of precursors forecast upcoming forbush decrease current solar cycle 24 seven eight fds follow anisotropy criterion 70% present warning signals pre - decreases pre - increases fds occur on specific asymptotic longitudes pre - decrease fd cosmic ray intensity narrow region deep decreases amplitude > 2.25% nmdb database european union s fp7 program contract 213007 high - resolution cosmic ray data neutron monitor stations thanks ace / wind omni noaa data centers solar interplanetary data thanks cosmic ray group russian academy of sciences complete catalog forbush decreases d. lingri thanks national kapodistrian university of athens commitee xxv ecrs 2016 xxv european cosmic ray symposium h.v cane cmes forbush decreases space science series cosmic rays earth 2000 forbush world - wide cosmic - ray variations 1937 - 1952 j geophys . res . 59 525 1954 belov forbush effects connection with solar interplanetary geomagnetic phenomena gopalswamy symposium 257 2008yanke precursor effects forbush decreases solar phys . 276 , 337 - 350 2012 papailiou mavromichalaki belov eroshenko asymptotic longitudinal cosmic ray intensity distribution precursor forbush decreases solar 280 , 641 - 650 2012 belov baisultanova eroshenko pschelkin plainaki mariatos magnetospheric effects cosmic rays magnetic storm november 2003 geophys . res. 110 , a09520 2005 aslam badruddin cosmic - ray modulation minimum - maximum solar cycle 24 solar. 290 , 2333 2015 d lingri mavromichalaki belov eroshenko abunin abunina solar activity parameters forbush decreases minimum cycles 23 24 ascending phase solar cycle 24 phys 291 , 1025 - 1041 2016 asipenka belov eroshenko papailiou oleneva yanke asymptotic longitudinal distribution cosmic ray variations interplanetary space diagnostic 31st icrc lodz 2009
| 0.445715
| 2,985
| 1,491
|
, Saving $0.1 in GPT-4.
|
18,676
|
using the method of energy - level statistics , the localization properties of electrons moving in two dimensions in the presence of a perpendicular random magnetic field and additional random disorder potentials are investigated . for this model , extended states
have recently been proposed to exist in the middle of the band .
in contrast , from our calculations of the large-@xmath0 behavior of the nearest neighbor level spacing distribution @xmath1 and from a finite size scaling analysis we find only localized states in the suggested energy and disorder range .
|
many investigations , both analytical and numerical , have been undertaken to elucidate the localization problem of non - interacting electrons in random magnetic fields ( rmf ) ( see e.g. , @xcite ) .
the rmf model has been proposed for studying the quantum hall effect with landau level filling @xmath2 where the system of quasi - particles may be viewed as a fermi liquid like metal . in a mean field approximation
these composite fermions @xcite are subject to a fluctuating local magnetic field with zero mean .
however , up to now , no satisfactory agreement has been reached on the question , whether or not a metal - insulator transition exists in the thermodynamic limit . in recent numerical studies @xcite ,
current carrying states have been reported for a rmf model including additional random disorder potentials .
the authors of ref .
@xcite report that a metal - insulator transition has been detected in the band center at a critical disorder @xmath3 by making use of the topological properties of the wave functions .
the method of calculating the topological quantum number ( chern number ) of the one - electron wave functions , which has proven to be a useful tool in the integer quantum hall effect @xcite , considerably restricts the achievable system size , @xmath4 . on the other hand ,
using the method of energy - level statistics @xcite , system sizes of more than a factor of 10 larger are accessible . in this method ,
the knowledge of the eigenfunctions is not necessary , because the information about localized , critical or extended states is gained from the spectral correlations .
therefore , we report here on an independent check of whether the extended states found in ref.@xcite can really be expected in the thermodynamic limit or if their result must be attributed to finite size effects .
a one - band tight - binding model is used to describe non - interacting particles moving in two dimensions in the presence of spatially fluctuating magnetic fields . @xmath5
the @xmath6 are a complete set of lattice vectors connected with the sites of a square lattice with linear size @xmath7 and lattice constant @xmath8 , and @xmath9 is taken as the unit of energy .
the sum runs over nearest neighbors only .
the phases @xmath10 along the bonds are chosen such that the corresponding magnetic fluxes per plaquette , @xmath11 , are distributed according to @xmath12 with probability density @xmath13 .
the strength of the flux was taken to be @xmath14 .
the diagonal disorder potentials @xmath15 are chosen at random from an interval @xmath16 $ ] with uniform distribution , @xmath17 .
we considered system sizes @xmath18 in the range 20 to 200 and disorder values @xmath19 between 1.5 and 3.5 .
the energy eigenvalues within a small range ( @xmath20 ) in the middle of the tight - binding band are calculated using a lanczos algorithm . for each pair of parameters ( @xmath21 ) about 250000
eigenvalues are accumulated taking different realizations of the disorder potentials .
we carefully checked that the results were independent of the width of the energy interval chosen .
8.cm from the unfolded energy eigenvalues the nearest neighbor level spacing distribution @xmath1 is calculated , where @xmath22 and @xmath23 is the mean level spacing . for infinite systems
it is known from random matrix theory ( rmt ) @xcite that in the metallic regime @xmath1 is close to the wigner surmise , @xmath24 , where @xmath25 reflects the symmetry of the system : orthogonal ( @xmath26 ) , unitary ( @xmath27 ) , and symplectic ( @xmath28 ) . in the insulating case
the spacings of the uncorrelated eigenvalues are well described by the poisson probability density distribution @xmath29 . in finite systems ,
when the correlation length exceeds the system size , one expects a hybrid @xcite of the wigner and the poisson form which eventually tends to the limiting true metallic case , if @xmath30 , or to a complete insulating behavior , if @xmath31 , as the system size is increased , @xmath32 . for disorder strength @xmath33 close to the critical value
@xmath34 various new scale independent distributions have been discovered recently in several systems @xcite that exhibit a metal - insulator - transition or at least a critical point .
in the 2d random flux model with additional diagonal disorder potentials , we find for small @xmath0 , @xmath35 , as expected for broken time reversal symmetry ( unitary ) .
[ fig1 ] shows only the large - s behavior of @xmath1 for a disorder strength @xmath36 , which is smaller than the proposed critical disorder @xmath37 , and for system sizes @xmath38 , 40 , 100 , and 200 .
the rmt result for the gaussian unitary ensemble ( gue ) which holds in the metallic case and the poisson result applicable for the uncorrelated eigenvalues of the localized states are also plotted .
increasing the system size shifts the curves away from the hybrid @xmath1 towards the @xmath39 decay of the localized states .
hence , even for @xmath33 smaller than the suggested critical @xmath40 , all the states still tend to localization in the limit @xmath41 .
8.cm to be more quantitative , we have calculated the number @xmath42 where @xmath43 is the probability that a given energy interval @xmath0 contains exactly @xmath44 eigenvalues , and @xmath45 . in the metallic regime
, a value @xmath46 is known for infinite systems from rmt while for localized states @xmath47 . in fig .
[ fig2 ] @xmath48 is shown for different system sizes and disorder strength
. the values clearly increase with increasing @xmath18 , at least for @xmath49 .
this indicates localized states at the band center for this disorder range .
a weak decrease of @xmath48 is still found for smaller disorder strength , but no size dependence could be observed anymore , because in that case the localization length considerably exceeds our largest system size @xmath50 .
it is possible to use @xmath48 also as a scaling variable , a procedure which was exploited recently @xcite to determine the critical exponent of the correlation function at the metal - insulator - transition ( mit ) in a 2d symplectic system . for the rmf model
we have tested the validity of the single parameter hypothesis @xmath51 of a finite size scaling analysis which was performed for the data showing a size dependence @xmath52 .
the result is plotted in fig .
[ fig3 ] where only a single branch of the scaling function can be seen which excludes the existence of a mit for the disorder strengths investigated .
8.cm the disorder dependence of the scaling parameter @xmath53 is shown in fig .
[ fig4 ] in comparison with the result for a conventional 2d anderson model without random magnetic fields .
since the prefactor @xmath54 was not determined in our calculation , both curves were set to 1 at @xmath55 .
the faster increase of @xmath53 in the rfm model indicates a weakening of the localization due to the random magnetic fields .
the increase of the localization length is , however , much larger than the factor of 2 expected from rmt @xcite for the breaking of the time reversal symmetry . in conclusion ,
the localization properties of a two - dimensional electronic model containing random magnetic fields and additional disorder potentials have been investigated numerically .
taking the same parameters as in ref.@xcite for the strength of the random flux , @xmath14 , and the disorder potential @xmath56 , but system sizes up to @xmath50 , our data definitely show complete localization of the electronic states . even for smaller disorder
no sign of a delocalized phase could be detected .
this work was supported in part by the isi foundation ( esprit 8050 small structures ) .
l.s . would like to thank the organizers for the stimulating workshop at villa gualino , torino .
m. batsch and l. schweitzer , in _ high magnetic fields in the physics of semiconductors ii : proceedings of the international conference , wrzburg 1996 _ , edited by g. landwehr and w. ossau ( world scientific publishers co. , singapore , 1997 ) , pp .
|
investigations analytical numerical localization problem of non - interacting electrons in random magnetic fields @xcite rmf model proposed for quantum hall effect with landau level filling @xmath2 system of quasi - particles as fermi liquid like metal composite fermions subject to fluctuating local magnetic field with zero mean no agreement on metal - insulator transition in thermodynamic limit recent numerical studies @xcite current carrying states reported for rmf model including additional random disorder potentials metal - insulator transition detected in band center at critical disorder @xmath3 topological properties wave functions calculating topological quantum number one - electron wave functions restricts achievable system size energy - level statistics @xcite system sizes more than factor 10 larger accessible knowledge of eigenfunctions not necessary information states from spectral correlations report on independent check of extended states in ref.@xcite expected in thermodynamic limit or to finite size effects one - band tight - binding model non - interacting particles moving in two dimensions spatially fluctuating magnetic fields@xmath5 lattice vectors sites square lattice linear size @xmath7 constant @xmath8 @xmath9 unit energy sum runs over nearest neighbors phases @xmath10 bonds chosen magnetic fluxes per plaquette distributed to @xmath12 probability density @xmath13 strength flux @xmath14 diagonal disorder potentials @xmath15 chosen random interval @xmath16 uniform distribution system sizes @xmath18 20 to 200 disorder values @xmath19 1.5 and 3.5 energy eigenvalues small range @xmath20 ) tight - binding band calculated lanczos algorithm each pair parameters @xmath21 250000 eigenvalues accumulated realizations disorder potentials results independent of width energy interval energy eigenvalues nearest neighbor level spacing distribution @xmath1 calculated @xmath22 @xmath23 mean level spacing infinite systems metallic regime @xmath1 close to wigner surmise @xmath25 reflects symmetry system orthogonal unitary symplectic insulating case spacings uncorrelated eigenvalues described poisson probability density distribution @xmath29finite systems correlation length system size expects hybrid @xcite wigner poisson form limiting metallic case @xmath30 complete insulating behavior @xmath31 system size disorder strength @xmath33 close to critical value @xmath34 new scale distributions discovered systems @xcite metal - insulator - transition critical point 2d random flux model diagonal disorder potentials small @xmath0 @xmath35 broken time reversal symmetry fig1 large - s behavior @xmath1 disorder strength @xmath36 smaller critical disorder @xmath37 system sizes @xmath38 40 100 200 rmt result gaussian unitary ensemble metallic case poisson result uncorrelated eigenvalues localized states plotted system size shifts curves hybrid @xmath1 towards @xmath39 decay localized states @xmath33 smaller critical @xmath40 states tend localization limit @xmath41 calculated number @xmath42 @xmath43 probability energy interval @xmath0 contains @xmath44 eigenvalues @xmath45 metallic regime value @xmath46 known infinite systems localized states @xmath47 @xmath48 different system sizes disorder strength values increase increasing @xmath18 @xmath49indicates localized states at band center disorder range weak decrease of @xmath48 smaller disorder strength no size dependence localization length exceeds largest system size @xmath50 possible use @xmath48 scaling variable correlation function metal - insulator - transition 2d symplectic system tested validity single parameter hypothesis @xmath51 finite size scaling analysis data size dependence @xmath52 result plotted in fig single branch scaling function excludes mit disorder strengths disorder dependence scaling parameter @xmath53 shown in fig conventional 2d anderson model without random magnetic fields prefactor @xmath54 not determined curves set to 1 at @xmath55 faster increase of @xmath53 indicates weakening localization due to random magnetic fields increase localization length larger than factor 2 expected from rmt @xcite time reversal symmetry localization properties two - dimensional electronic model containing random magnetic fields additional disorder potentials investigated numerically same parameters strength random flux disorder potential @xmath56 system sizes up to @xmath50 data show complete localization electronic states smaller disorder no delocalized phase detectedwork supported by isi foundation 8050 small structures organizers workshop villa gualino torino m batsch schweitzer high magnetic fields physics semiconductors proceedings international conference wrzburg 1996 edited by g. landwehr w. ossau world scientific publishers singapore 1997
| 0.311941
| 1,808
| 920
|
, Saving $0.1 in GPT-4.
|
18,677
|
we discuss the cm diagram of the galactic cluster ngc2420 to the light of current theoretical predictions . by relying on the most recent updating of the physical input
, one finds too luminous theoretical he burning stars together with the evidence for a misfitting of the lower portion of the ms .
moreover one finds two well known overshooting signatures , as given by i ) the large extension of the hook " preceding the overall contraction gap , and ii ) the scarcity of stars just at the end of the gap .
we show that the overluminosity of he burning stars appears as a constant prediction of models based on updated physics , whereas alternative assumptions about the equation of state can account for the ms fitting .
moreover , due to the scarse statistical significance of the observational sample , one finds that overshooting signatures can be present also in canonical ( without overshooting ) predictions .
we conclude that , unfortunately , ngc2420 does not keep the promise to be of help in costraining the actual dimensions of convective cores in h burning ms stars , suggesting in the meantime that using clumping he burning stars as theoretical standard candle is at least a risky procedure . in this context
the need for firmer constraints about the reddening of galactic clusters is shortly discussed .
# 1 # 2 _ mem
. soc .
astron . it . _ * # 1 * , # 2 # 1 # 2 _ the messenger _ * # 1 * , # 2 # 1 # 2 _ astron .
nach .
_ * # 1 * , # 2 # 1 # 2 _ astron .
astrophys . _
* # 1 * , # 2 # 1 # 2 _ astron .
astrophys .
lett . _ * # 1 * , l#2 # 1 # 2 _ astron .
astrophys .
rev . _ * # 1 * , # 2 # 1 # 2 _ astron .
astrophys .
suppl .
ser . _ * # 1 * , # 2 # 1 # 2 _ astron .
j. _ * # 1 * , # 2 # 1 # 2 _ ann .
rev .
astron .
astrophys .
_ * # 1 * , # 2 # 1 # 2 _ astrophys .
j. _ * # 1 * , # 2 # 1 # 2 _ astrophys .
j. lett .
_ * # 1 * , l#2 # 1 # 2 _ astrophys .
j. suppl .
_ * # 1 * , # 2 # 1 # 2 _ astrophys .
space sci .
_ * # 1 * , # 2 # 1 # 2 _ adv .
space res .
_ * # 1 * , # 2 # 1 # 2 _ bull .
astron .
inst .
czechosl . _ * # 1 * , # 2 # 1 # 2 _ j. quant .
spectrosc .
. transfer _ * # 1 * , # 2 # 1 # 2 _ mon . not .
r. astr .
soc .
_ * # 1 * , # 2 # 1 # 2 _ mem .
r. astr .
soc . _ * # 1 * , # 2 # 1 # 2 _ phys .
lett .
rev . _ * # 1 * , # 2 # 1 # 2 _ publ .
astron .
. japan _ * # 1 * , # 2 # 1 # 2 _ publ . astr
. soc .
pacific _ * # 1 * , # 2 # 1 # 2 _ nature _ * # 1 * , # 2 epsf.sty
|
the beautiful cm diagram presented in 1990 by anthony - twarog et al . for the intermediate age
open cluster ngc2420 has been in the last ten years a favourite target for all the people concerned with the evolution of low to intermediate mass stars .
the occasion for revisiting this cluster has been given to us by the recent paper by pols et al .
( 1998 , hereinafter p98 ) , who presented new evolutionary tracks carefully discussing the fit of a selected ( and well chosen ) sample of galactic clusters .
as discussed in that paper , ngc2420 seems to give a good chance to put firm constraints on the efficiency of the mechanism of core overshooting .
owing to the relevance of such an issue , we decided to go deep into the matter , hoping eventually to settle down such a long debated argument .
however , as we will discuss in the following , the situation is far from being assessed .
according to anthony - twarog et al .
( 1990 ) metallicity estimates give for the cluster [ fe / h]=-0.35 @xmath00.10 , but with evaluations reaching [ fe / h]=-0.6 ( canterna et al .
following p98 , we will assume z=0.007 ( [ fe / h=-0.4 ] ) . by taking y=0.23 for old metal poor stars and accounting for a galactic he enrichment law as given by @xmath1
( see e.g. pagel & portinari 1998 ) we obtain for the cluster y=0.244 .
the adopted evolutionary code and physical inputs are the same as in cassisi et al .
( 1998 ) ; in particular to start our investigation we adopted the opal eos ( rogers et al . 1996 ) .
[ fit1 ] figure 1 ( left panel ) shows the best fitting of our isochrone to the cluster cm diagram , as obtained by using colour - temperature relations from kurucz ( 1992 ) and by adopting for the cluster just the same reddening and the same age as in p98 . as a result
, we found that a best fitting is indeed achieved , with only a small difference in the cluster distance modulus ( dm = 12.05 against 11.95 in p98 ) , which appears the natural result of the differences between the two ms luminosities already discussed in prada moroni et al .
the impressive agreement between the two theoretical scenarios can obviously taken as an evidence that neither differences in the adopted input physics nor in the color - temperature relation play a relevant role in the predicted models .
as already discussed by p98 , one finds that theoretical he burning stars appear too luminous , by about 0.3 mag .
however , in both theoretical isochrones one can also find the evidence for a misfitting of the lower portion of the ms , with too blue theoretical models .
as well known , low masses ms stars are less and less affected by the efficiency of the external convection , thus it appears difficult to reconcile theory and observation only by tuning the mixing lenght parameter ( see e.g. castellani et al .
1999 ) . to discuss overshooting , figure 1 ( right panel )
depicts theoretical expectations , showing a synthetic cluster as obtained by randomly populating the isochrone till obtaining 24 stars brighter than @xmath2 , as observed .
comparison with the cm diagram in fig .
1 ( left panel ) discloses in the observational data the two well known overshooting signatures , namely : i ) the larger extension of the `` hook '' preceding the overall contraction gap , and ii ) the lack of the concentration of stars just at the end of the gap , expected under canonical assumptions .
[ fit3 ] however , the fitting can be improved by increasing the reddening thus driving a larger evaluation of the cluster distance modulus , alleviating the overluminosity of predicted he burning stars .
this is shown in fig .
2 ( left panel ) , which reports our best fitting as obtained for e(b - v ) = 0.08 . moreover ,
increasing the reddening the turn off becomes bluer and the cluster younger , increasing the extension of the hook ( see fig . 1 for comparison )
, also alleviating this discrepancy .
however , no one of these discrepancies is completely resolved , nor increasing the reddening helps to solve the disagreement for the lower ms . concerning the problem of the ms fitting , one has to conclude that either the color temperature relation or the ms models are wrong , if not both . to explore theoretical models
, we repeated the previous computations but adopting the alternative equation of state presented by straniero ( 1998 ) .
as shown in fig .
2 ( right panel ) , we found that theoretical and observational mss appear now in reasonable agreement , disclosing that a solution to this problem already exists within the currently available theoretical scenarios . on the contrary , the replacement of kurucz ( 1992 ) colour - temperature relations with the most recent and widely adopted semiempirical relations by alonso et al .
( 1996 , 1999 ) can not solve the dicrepancy between the theoretical and the observational low ms . in this case , in fact , one obtains a shift toward bluer ms colours , which would affect ( increase ) the reddening evaluations by about 0.05 mag , but not the ms slope .
according to the discussion in the previous section , one is left with the evidence of a small overluminosity of he burning stars and with two clear signatures for the efficiency of overshooting . as a matter of the fact
, numerical experiments confirmed that allowing for a moderate overshooting ( of the order of 0.1 pressure scale height , hp ) our theoretical isochrone would match much better the observed diagram .
however , in a previous paper ( castellani et al . 1999 ) we have already drawn the attention on the evidence that binaries stars , as obviously present in the cluster , may mimike overshooting by extending the hook above its natural maximum luminosity .
thus we tested the effects of binarity again by producing synthetic clusters from canonical ( without overshooting ) models but allowing for 30% binaries ( as obtained by a rough estimate from the cm diagram ) according to the following distribution of mass ratio : 50% between 0.8 and 1 , 30% between 0.6 and 0.8 , the remaining 20% totally random ( tornamb a. , private communication ) .
[ fit1 ] as predicted , and as shown in fig .
3 , left panel , binaries tend to extend the hook , producing in this region a cm diagram which appears in better agreement with overshooting computations . however , and to our surprise , one also finds that in a good percentage of the random clusters , namely of the order of about 50% , the predicted post - gap " distribution sensitively deviates from canonical expectations , approaching the one actually observed in the cluster ( see , e.g. , fig .
3 , right panel ) .
the reason for such an occurrence is easily found in the scarce statistical significance of the number of luminous stars together with the non negligible contribution of binaries . as a result , we conclude that ngc2420 is actually failing to give the expected constraints about the overshooting efficiency . as a matter of the fact , both the discussed canonical and mild overshooting cases appear acceptable . however , numerical simulations seems to suggest that an overshooting as large as 0.25 hp would depopulate too much the red part of the subgiant branch .
according to the previous sections , one finds that three out of the four theoretical misfitting of the cluster cm diagram can be accounted for within current evolutiony scenarios . on the contrary , no assumption appears able to reconcile the predicted luminosity of he burning stars with observation . to explore all the possibilities one may guess that a given amount of mass loss could account for this discrepancy .
one generally assumes that mass loss occurs in the advanced phase of h shell burning , so that the internal structure of the he burning star is not affected by such an occurrence , which only decreases the amount of envelope surrounding the central he core . under this assumption ,
the effect of mass loss on he burning models can be easily computed by simply decreasing the envelope of the constant - mass model .
numerical simulations shows that to reach the agreement between theory and observation for the clump luminosity one needs to decrease the he burning mass from the standard value of @xmath3 1.5 m@xmath4 to 1.0 m@xmath4 .
this very high amount of mass loss seems very unlikely to us . at present time
the discrepancy between theory and observation in the luminosity of he burning stars with degenerate rgb progenitors it is not a surprising result ; it appears as a constant prediction of models based on updated physics ( see e.g. p98 , castellani et al .
2000 ) , whereas similar suggestions for the overluminosity of theoretical models have been also derived from the pulsational properties of rr lyrae ( see e.g. caputo et al .
we conclude that using clumping he burning stars as theoretical standard candles , as we did ( castellani et al .
1999 ) , is at least a risky procedure .
we note that in the above quoted work , one could recognize a signature of the overluminosity in the need of assuming rather large reddenings for all the clusters . in this context
, it follows that firm constraints about the reddening of galactic clusters will help in solving this problem .
|
cm diagram presented 1990 by anthony - twarog et al intermediate age open cluster ngc2420 favourite target for evolution mass stars revisiting cluster paper pols et al . ( 1998 p98 ) presented new evolutionary tracks fit galactic clusters ngc2420 constraints on core overshooting decided to go deep into matter settle argument situation far from assessed anthony - twarog et al . 1990 ) metallicity estimates cluster [ fe / h]=-0.35 @xmath00.10 evaluations reaching [ fe / h]=-0.6 assume z=0.007 ( [ fe / h=-0.4 ] ) taking y=0.23 for old metal poor stars galactic he enrichment law @xmath1 obtain cluster y=0.244 adopted evolutionary code physical inputs same as cassisi et al . ( 1998 ) adopted opal eos ( rogers et al . 1996 ) figure 1 shows best fitting of isochrone to cluster cm diagram obtained using colour - temperature relations from kurucz ( 1992 ) adopting same reddening age as in p98found best fitting achieved small difference in cluster distance modulus ( dm = 12.05 against 11.95 in p98 ) result differences between two ms luminosities discussed in prada moroni et al agreement between theoretical scenarios differences in input physics color - temperature relation in predicted models theoretical he burning stars appear too luminous 0.3 mag theoretical isochrones evidence misfitting lower portion ms too blue theoretical models low masses ms stars less affected by external convection difficult to reconcile theory observation by tuning mixing lenght parameter castellani et al . 1999 overshooting figure 1 theoretical expectations synthetic cluster randomly populating isochrone 24 stars brighter than @xmath2 comparison with cm diagram fig . 1 discloses two overshooting signatures larger extension of hook contraction gap lack of concentration of stars at end of gap fitting improved by increasing reddening larger evaluation cluster distance modulus alleviating overluminosity of he burning stars shown in fig . 2 best fitting for e(b - v ) = 0.08 .increasing reddening turn off becomes bluer cluster younger increasing extension of hook see fig . 1 discrepancy no discrepancies completely resolved nor increasing reddening solve disagreement for lower ms problem ms fitting either color temperature relation or ms models wrong models repeated previous computations alternative equation of state straniero ( 1998 ) fig . 2 theoretical observational mss in reasonable agreement solution exists within theoretical scenarios replacement of kurucz ( 1992 ) colour - temperature relations with semiempirical relations by alonso et al . ( 1996 1999 ) solve dicrepancy between theoretical observational low ms obtains shift toward bluer ms colours reddening evaluations by 0.05 mag not ms slope with evidence small overluminosity of burning stars two clear signatures for efficiency of overshooting numerical experiments confirmed moderate overshooting 0.1 pressure scale height theoretical isochrone match better observed diagram previous paper castellani et al . 1999 ) attention evidence binaries stars may mimike overshooting by extending hook above natural maximum luminositytested effects binarity producing synthetic clusters from canonical models allowing 30% binaries obtained rough estimate from cm diagram ) distribution mass ratio : 50% between 0.8 and 1 30% between 0.6 and 0.8 20% random ( tornamb a private communication ) fig 3 binaries extend hook producing cm diagram better agreement with overshooting computations in percentage of random clusters about 50% predicted post - gap distribution deviates from canonical expectations approaching observed in cluster fig . 3 reason for in scarce statistical significance of number luminous stars contribution of binaries conclude ngc2420 failing to give expected constraints about overshooting efficiency canonical and mild overshooting cases appear acceptable numerical simulations suggest overshooting large 0.25 hp would depopulate red part of subgiant branch three out of four theoretical misfitting of cluster cm diagram can be accounted for within current evolutiony scenarios no assumption reconcile predicted luminosity of burning stars with observation given mass loss could account for discrepancyassumes mass loss occurs in advanced phase h shell burning internal structure he burning star not affected decreases envelope surrounding central he core effect mass loss on he burning models computed by decreasing envelope constant - mass model numerical simulations shows reach agreement theory observation for clump luminosity needs decrease he burning mass from 1.5 m@xmath4 to 1.0 m@xmath4 high mass loss unlikely discrepancy between theory and observation in luminosity of he burning stars with degenerate rgb progenitors not surprising appears constant prediction of models based updated physics similar suggestions for overluminosity of theoretical models derived from pulsational properties of rr lyrae using clumping he burning stars as theoretical standard candles risky procedure recognize signature of overluminosity assuming large reddenings for all clusters firm constraints about reddening of galactic clusters help problem
| 0.31785
| 2,014
| 1,018
|
, Saving $0.1 in GPT-4.
|
18,679
|
saturation field entropies of antiferromagnetic ising models on quasi one - dimensional lattices ( ladders ) and the kagome lattice are calculated .
the former is evaluated exactly by constructing the corresponding transfer matrices , while the latter calculation uses binder s algorithm for efficiently and exactly computing the partition function of over 1300 spins to give @xmath0 .
we comment on the relation of the kagome lattice to the experimental situation in the spin - ice compound dy@xmath1ti@xmath1o@xmath2 .
|
ising lattice models are realized in a variety of materials with magnetic interactions , for instance in rare earth compounds where the outer electron in the lanthanide ion acts as an ising spin interacting with its neighbors .
depending on the lattice structure ( frustrated or unfrustrated ) , dimensionality ( one to three ) , and interaction type ( ferromagnetic or antiferromagnetic ) , the properties and phases in the system display a wide range of possibilities @xcite .
coupling of the ising spins to an external field can further introduce interesting behavior such as the presence of a magnetization plateau .
many such characteristics of the system may be captured by the model s partition function ; accurate determination of the partition function poses a numerical challenge if there are competing interactions within the system , which is often the case for antiferromagnetic interactions on non - bipartite lattices .
these competing interactions can result in large degeneracies in phase space .
+ indeed , antiferromagnetic ising models can harbor a macroscopic number of degenerate ground states at zero external field on frustrated lattices like the triangular lattice @xcite , kagome lattice @xcite , pyrochlore @xcite lattice , to name a few .
an extensive entropy may survive , albeit with different values , even for infinitesimal fields @xcite on certain lattices ; as the field is varied , a strongly enhanced peak in the entropy develops just before the field - induced spin - ordering sets in @xcite ; this substantial peak occurs because , at this field strength , a large number of non - neighboring spins may be flipped against the field without a cost in energy @xcite .
in fact , such residual saturation entropies @xmath3 persist in quantum spin models ( anisotropic heisenberg models ) , although with different values from the ising limits , and for different reasons @xcite pertaining to the existence of localized magnons .
+ in section [ sec : ladders ] , residual saturation entropies of related ising quasi one - dimensional lattices or ladders ( fig . [ ladders ] )
are exactly computed .
the statistical properties of the ladders are considered primarily to establish the results on the kagome lattice ; @xmath4 will be used to construct the square lattice to compare with earlier results before we employ ladder @xmath5 to build up the kagome lattice .
the bounds on the kagome lattice saturation entropy will be justified via the construction of ladder @xmath6 from @xmath4 .
moreover , ladders with these geometries are realized in a range of materials @xcite .
the two - leg ladder @xmath4 with magnetic interactions are realized in compounds such as vanadyl pyrophosphate @xmath7 and the cuprate @xmath8 @xcite ; ladder @xmath6 , which is equivalent to the axial - next - nearest - neighbor ising ( anni ) model , describes phase transitions in the charge - lattice - spin coupled system @xmath9 @xcite .
and ladder @xmath5 bears resemblance in geometric structure and interaction to the ising - heisenberg polymer chain @xmath10}_{\infty}$ ] @xcite .
+ in sections [ sec : kagome ] and [ sec : binders ] , we consider the ising kagome lattice , shown in fig .
[ kagome ] , at saturation , which was argued to be realized in the spin - ice compound dy@xmath1ti@xmath1o@xmath2 @xcite . for the kagome lattice , approximate values of @xmath3
may be deduced from calculations for spin ice on the pyrochlore lattice in a [ 111 ] field @xcite ; results of monte carlo simulations , series expansion techniques @xcite and the bethe approximation were found to be comparable @xcite for the saturation entropy . in section [ sec : kagome ] , we elucidate a procedure for obtaining a more accurate estimate of this value through ( a ) transfer matrix methods , and equivalently ( b ) the solution of appropriate difference equations that generate the partition function . finally in section [
sec : binders ] , we provide a considerably improved estimate of @xmath3 for the kagome lattice using binder s algorithm . with which we may exactly calculate the partition function of a system of over , in our case , 1300 ising spins at the saturation field with the expenditure of modest computational resources .
we point out that it is only for the ising kagome lattice , among other two dimensional lattices , that the zero field entropy exceeds the saturation field entropy .
+ the antiferromagnetic ising models we investigate are described by the hamiltonian @xmath11 on an @xmath12 site lattice with @xmath13 , the nearest number of neighbors .
this is the saturation field beyond which ordering sets in . the variables @xmath14 which we represent by down and up spins , and the interaction between nearest neighbors is denoted by the angular brackets , setting the energy scale of the problem .
the boundary conditions are chosen to be either free or periodic .
although the number of allowed states for a given finite system will differ depending on the boundary conditions , the dominant multiplicative degeneracy of the system as @xmath15 will reflect the bulk property .
it will then be a question of computational convenience whether free or periodic boundary conditions be chosen . [
cols="<,>,>",options="header " , ]
we have seen in the preceding section that free boundary conditions along with provide a rapidly convergent sequence for the entropy .
the main limitation was however the calculation of @xmath16 for large @xmath17 values .
this may be achieved by employing binder s algorithm towards an exact evaluation of the partition function of finite lattice systems @xcite .
to briefly recapitulate , the partition function of a system of size @xmath18 is expressed in terms of the degeneracies @xmath19 of the @xmath20 ladder in its @xmath21 state . then
clearly @xmath22 now the degeneracies of an added ladder for the @xmath23 system may be recursively computed by @xmath24 with the summation running over only those values of @xmath25 such that state @xmath26 may be adjacent to it . with this ,
we have computed the partition function of over 1300 spins with modest computational effort .
for instance , we are able to reproduce up to 10 digits in the residual saturation field entropy value for the square lattice@xcite using twenty 10-rung @xmath4 ladders . + using - we compute @xmath27 , @xmath28 and @xmath29 to give six stable digits for the kagome lattice saturation field entropy @xmath30 we compare this with low temperature monte carlo simulation results and the bethe approximation for pyrochlore spin ice which
, at the saturation field , may be described by a two - dimensional network of ising pseudo - spin kagome lattice @xcite . scaling the saturation field results of isakov et al . by a factor of 4/3 ( because the corner spin in the pyrochlore tetrahedron is considered frozen giving a high temperature entropy per site of only @xmath31 ) , we obtain the relevant results to be @xmath32 this value is to be compared with the experimentally observed peak in the pyrochlore compound dy@xmath1ti@xmath1o@xmath2 close to the high - field termination of the plateau @xcite where the physics was argued to be governed by decoupled kagome planes @xcite .
we point out , along with the authors of ref .
[ 7 ] , that the computed values ( in and ) are slightly higher than the magnitude of the experimentally measured peak . for the spin ice compound at saturation ,
the corresponding value of approximately @xmath33 joules / deg./mole ( obtained by multiplying by @xmath34 , where @xmath35 is the gas constant ) may be compared with the first prominent experimental peak in the saturation entropy at @xmath36 of about @xmath37 joules / deg./mole @xcite .
the difference between the two values suggests that either more precise measurements with error bars are required on this compound close to the transition field , or that the applicability of the ising model on decoupled kagome planes close to this spin - ice material s saturation field might need to be slightly reconsidered .
we have considered the degenerate space of states of a few ising ladders and the ising kagome lattice at the saturation external field . for the ladders , by a simple redefinition of a site , the residual entropy may be exactly computed .
we treat the generation of states for periodic and free boundary conditions on a general footing by use of difference equations .
+ for the kagome lattice , we are able to provide six stable digits for the residual entropy by calculating the exact partition function of over 1300 spins using binder s algorithm implemented on a standard computer .
our accurate result compares reasonably with approximate results from low temperature monte carlo simulations and the bethe approximation for an equivalent system .
we believe that by constructing appropriate ladders the residual saturation field entropies of geometrically complex lattices , like the pyrochlore , may be similarly computed with more ease after their transformation to standard lattice structures .
comments on the relation to the experimental situation on the spin - ice compound dy@xmath1ti@xmath1o@xmath2 were made .
+ the primary results are summarized in table [ entropies ] .
the author thanks oleg derzhko , sergei isakov and hartmut monien for discussions , the latter for comments on the manuscript . support of the bonn - cologne graduate school through the deutsche forschungsgemeinschaft is gratefully acknowledged .
|
ising lattice models in materials with magnetic interactions rare earth compounds outer electron in lanthanide ion acts as ising spin with neighbors depending on lattice structure dimensionality to interaction type ferromagnetic or antiferromagnetic properties phases display possibilities coupling ising spins to external field behavior magnetization plateau characteristics system captured by model s partition function accurate determination partition challenge if competing interactions for antiferromagnetic interactions on non - bipartite lattices interactions result in large degeneracies in phase space antiferromagnetic ising models can harbor macroscopic degenerate ground states at zero external field on frustrated lattices like triangular kagome pyrochlore extensive entropy may survive with different values for infinitesimal fields on certain lattices field varied enhanced peak in entropy develops before field - induced spin - ordering sets non - neighboring spins may be flipped against field without cost energy residual saturation entropies persist in quantum spin models with different values for different reasons localized magnonssection ladders residual saturation entropies of one - dimensional lattices ladders fig computed statistical properties ladders establish results kagome lattice @xmath4 construct square lattice before ladder @xmath5 kagome lattice bounds on kagome lattice saturation entropy justified via construction ladder @xmath6 from @xmath4 ladders geometries realized in materials two - leg ladder @xmath4 magnetic interactions in compounds vanadyl pyrophosphate cuprate ladder @xmath6 equivalent to axial - next - nearest - neighbor ising model describes phase transitions in charge - lattice - spin system ladder @xmath5 ising - heisenberg polymer chain sections kagome binders consider ising kagome lattice in fig . kagome at saturation realized in spin - ice compound kagome lattice approximate values of @xmath3 deduced from calculations for spin ice on pyrochlore lattice field results of monte carlo simulations series expansion techniques bethe approximation comparable for saturation entropysection kagome elucidate procedure accurate estimate value through transfer matrix methods solution difference equations partition function section binders improved estimate of @xmath3 for kagome lattice using binder s algorithm calculate partition function of system over 1300 ising spins at saturation field modest computational resources ising kagome lattice zero field entropy exceeds saturation field entropy antiferromagnetic ising models described by hamiltonian @xmath11 @xmath12 site lattice with @xmath13 nearest number neighbors saturation field beyond ordering sets in variables @xmath14 represent by down and up spins interaction between nearest neighbors denoted by angular brackets energy scale problem boundary conditions free or periodic number allowed states system depending boundary conditions dominant multiplicative degeneracy system @xmath15 reflect bulk property question of computational convenience free or periodic boundary conditions chosen free boundary conditions provide rapidly convergent sequence for entropy main limitation calculation of @xmath16 for large @xmath17 values achieved employing binder s algorithm exact evaluation partition function of finite lattice systemspartition function system @xmath18 expressed degeneracies @xmath19 @xmath20 ladder @xmath21 state degeneracies added ladder @xmath23 system computed by @xmath24 summation over values @xmath25 state @xmath26 adjacent computed partition function over 1300 spins effort reproduce 10 digits residual saturation field entropy lattice@xcite using twenty 10-rung @xmath4 ladders compute @xmath27 @xmath28 @xmath29 six stable digits kagome lattice saturation field entropy @xmath30 compare low temperature monte carlo simulation results approximation pyrochlore spin ice described two - dimensional network pseudo - spin kagome lattice @xcite scaling saturation field results isakov et by factor 4/3 corner spin pyrochlore tetrahedron frozen high temperature entropy site @xmath31 obtain relevant results @xmath32 compared with experimentally observed peak pyrochlore compound@xmath1ti@xmath1o@xmath2 close high - field termination plateau @xcite governed decoupled kagome planes computed values slightly higher than magnitude experimentally measured peakspin ice compound at saturation value @xmath33 joules / deg./mole multiplying @xmath34 @xmath35 gas constant compared with peak saturation entropy @xmath36 @xmath37 joules / deg./mole difference suggests precise measurements error transition field or applicability ising model on kagome planes considered degenerate space of states ising ladders ising kagome lattice at saturation external field redefinition site residual entropy computed treat generation of states for periodic free boundary conditions difference equations kagome lattice six stable digits for residual entropy calculating partition function of 1300 spins binder s algorithm result compares with low temperature monte carlo simulations bethe approximation system constructing ladders residual saturation field entropies of complex lattices pyrochlore computed after transformation to standard lattice structures comments on relation experimental situation spin - ice compound dy@xmath1ti@xmath1o@xmath2 made results summarized in table [ entropies ] author thanks oleg derzhko sergei isakov hartmut monien for discussions comments support bonn - cologne graduate school deutsche forschungsgemeinschaft acknowledged
| 0.315359
| 2,091
| 1,068
|
, Saving $0.1 in GPT-4.
|
18,683
|
we report a magnetization study of the heusler compound mn@xmath0ptga that shows the existence of a magnetic - glass state .
mn@xmath0ptga shows a first - order ferromagnetic ( fm)/ferrimagnetic ( fi ) to antiferromagnetic ( afm ) transition in contrast to the martensitic structural transition observed in several heusler alloys .
the kinetic arrest of this first - order fm ( fi ) to afm transition leads to the observed magnetic - glass behavior .
we show that the strength of the applied magnetic field , which is the primary parameter to induce the magnetic - glass state , is also responsible for the stability of the supercooled fm ( fi ) phase in time .
|
first - order magnetic to magnetic phase transition possesses a great research interest due to the existence of various anomalous magnetic behaviors .
though there were several previous studies on first - order magnetic phase transition ( fomt ) , a detailed study was reported in the intermetallic compounds doped cefe@xmath0 @xcite gd@xmath1ge@xmath2 @xcite and in some of the phase separated manganites @xcite . following this ,
several studies related to fomt have been reported in other systems such as nd@xmath3rh@xmath4 @xcite and cobaltites @xcite .
the disordered - broadened first - order transition in most of these compounds arises mainly due to the presence of intrinsic disorder , which serve as nucleation centers below a certain temperature .
this first - order transition leads to supercooling , field - induced irreversibility and phase coexistence , that can be eventually termed as a magnetic - glass phase.@xcite this phase is different from the spin glass one as the glassy state in these systems can be obtained by application of external parameters like magnetic field .
the ni@xmath0mn@xmath5 based heusler alloys show quite similar types of magnetic properties that of systems showing a magnetic - glass phase . however
, these alloys exhibit a structural transition from a high temperature cubic austenite phase to a low temperature tetragonal / orthorhombic martensitic phase with strong magneto - structural coupling.@xcite with help of field cooling it is possible to arrest the high temperature austenite phase below the martensitic transition temperature.@xcite it is also observed that one can get large field induced irreversibility in the magnetization loops when measured near to the martensitic transition temperature.@xcite in contrast to the other systems showing magnetic - glass behavior , the field induced structural change in the heusler alloys plays a major role in inducing the irreversibilities that become stronger on approaching the martensitic transition upon increasing the temperature .
however , the other magnetic - glass systems show irreversible behavior at the lowest temperatures that vanishes by increasing the temperature . in order to explore more functional as well as fundamental properties in the heusler family , we prepare a new heusler compound mn@xmath0ptga @xcite . in this report
we show the existence of a magnetic - glass phase in mn@xmath0ptga that does not show any structural transition . with help of dc - magnetization measurements
we show that mn@xmath0ptga undergoes a first - order ferromagnetic ( fm)/ferrimagnetic ( fi ) to antiferromagnetic ( afm ) transition below the magnetic ordering temperature , which is responsible for the observed effect .
polycrystalline ingots of mn@xmath0ptga were prepared by arc melting stoichiometric amounts of the constituent elements in a high purity argon atmosphere .
the as - prepared ingots were annealed at 1273 k in an evacuated quartz tube for one week and subsequently quenched in an ice - water mixture .
the samples were structurally characterized by x - ray powder diffraction ( xrd ) using cu - k@xmath6 radiation .
magnetization measurements were carried out on the sample using a superconducting quantum interference device ( squid ) vibrating sample magnetometer ( vsm ) .
[ b ! ] ( color online)temperature dependence of magnetization , @xmath7 , measured at 0.1 t.,title="fig:",width=264 ] the powder xrd measurement at room temperature reveals that mn@xmath0ptga crystallizes in a tetragonal structure with space group i-4m2 .
@xmath7 measured in zero field cooled ( zfc ) , field cooled ( fc ) and field heated ( fh ) modes is shown in fig.[fig1 ] . in the zfc mode , the sample
was initially cooled to 2k and the data were taken upon increasing the temperature in applied field . in the fc mode ,
the data were collected while cooling in magnetic field and subsequently in fh mode the data were collected during heating .
all measurements are performed with temperature sweep rate of 3 k / min .
it is found that mn@xmath0ptga undergoes a paramagnetic ( pm ) to fm ( fi ) transition around 230 k followed by a fm ( fi ) to afm transition at 150 k. the small magnetic moment observed in various magnetic measurements suggest that mn@xmath0ptga orders ferrimagnetically like other mn@xmath0yz based compounds.@xcite this is because the mn atoms occupy two different crystallographic positions with opposite spin alignment .
the non - zero nature of the fc / fh magnetization curves below the transition temperature indicates that the low temperature phase is not perfectly afm in nature .
the first - order nature of the low temperature transition is confirmed by the presence of a thermal hysteresis between the fc and fh curves .
as the sample shows a tetragonal crystal structure at room temperature , the low temperature transition should not be a structural phase transition , instead a pure magnetic to magnetic one . to probe the existence of a magnetic - glass state in mn@xmath0ptga
, we have performed @xmath7 measurement in 1 t after cooling the sample in different fields . for this the sample was cooled down to 2 k in presence of a cooling fields @xmath8 from room temperature . at 2 k ,
the field was changed to the measurement field @xmath9 and the magnetization was measured in heating mode . from fig.[fig2 ] two types of magnetic behaviors are observed depending upon the strength of cooling fields . for @xmath10 @xmath9 ,
the @xmath7 curves show an afm to fm ( fi ) transition on increasing temperature .
the increase in magnetization with higher cooling fields at low temperatures is due to the increase in the super cooled fm ( fi ) phase in an afm background . however , for @xmath11 @xmath9 the magnetization decreases with increase in temperature followed by an increase around the afm to fm transition temperature .
a higher cooling field will enable a higher amount of supercooled fm ( fi ) phase .
hence , when the field is reduced to a lower value the system will try to acquire the equilibrium state for that field by a partial conversion of the fm ( fi ) to afm phase .
this results in an initial decrease in the magnetization at low temperature .
it can be mentioned here that irrespective of the strength of cooling field the afm to fm transition temperature does not change for a fixed measurement field .
the above observation confirms that there exists a phase coexistence and a magnetic - glass state in the present sample .
[ t ! ] ( color online ) fh @xmath7 curves measured at 1 t with heating rate of 3 k / min after field cooling the sample in various fields.,title="fig:",width=264 ] [ b ! ] ( color online ) fc @xmath7 curves measured at 0.5 t with different cooling rates .
inset shows fc @xmath7 curves measured at 1 t with different cooling rates.,title="fig:",width=264 ] for a better knowledge of the stability of the supercooled fm ( fi ) phase we have studied the temperature sweep - rate dependency of the field cooled magnetization as shown in fig.[fig3 ] .
for this a field is applied at room temperature and the measurement is performed with a cooling rate of 5 k / min , 1 k / min and 0.2 k / min , respectively . as seen from fig.[fig3 ] the magnetization monotonically decreases with decreasing cooling rate .
this suggests that with higher cooling rate one can quench the high temperature fm ( fi ) phase resulting in a higher amount of fm ( fi ) components in the afm phase . with a decrease in the cooling rate the supercooled fm ( fi )
components get a sufficient amount of time to achieve the equilibrium afm state that results in a lower magnetization value .
the process also gives rise to a slight increase in the fm ( fi ) to afm transition temperature with lower cooling rate .
as both field and cooling rate are responsible for the kinetic arrest of the supercooled fm ( fi ) phase , it is interesting to see how the magnetization responds to the cooling rate in higher cooling fields .
the cooling rate dependence of magnetization measured in a field of 1 t is shown in inset of fig.[fig3 ] .
it is found that the magnetization changes by 5 % as the cooling rate changes from 5 k / min to 0.2 k / min in case of a measurement performed in 0.5 t field . whereas , it is only about 1.7 % when the measurement is performed in 1 t. as the field stabilizes the fm ( fi ) phase , with higher cooling field the supercooled fm ( fi ) phase requires more time to achieve the equilibrium afm phase .
hence , the effect of the cooling rate becomes less prominent at higher field .
figure[fig4 ] shows zfc and fc @xmath12 loops measured at 2 k. in case of fc measurements a field is applied at room temperature and subsequently the sample was cooled down to 2 k. it is found that the zfc @xmath12 undergoes a field induced metamagnetic transition around 4.8 t. this metamagnetic transition corresponds to the first - order afm to fm ( fi ) phase transition .
the presence of a metamagnetic transition in the low temperature zfc @xmath12 loop confirms the existence of a fm ( fi ) to afm transition in mn@xmath0ptga . to verify the kinetic arrest of the supercooled fm ( fi ) phase
as observed in the @xmath7 data in fig.[fig2 ] and fig.[fig3 ] , we have measured the @xmath12 loops in different field cooled protocols . the @xmath12 loop measured after fc in 0.5 t shows a higher magnetization value than the zfc curve .
the 1 t and 5 t fc curves follow a similar increasing trend as the 0.5 t fc curve . the critical field for the metamagnetic transition also increases to 5 t and 5.5 t for fc at 0.5 t and 1 t , respectively .
no metamagnetic transition can be observed for the @xmath12 loop measured after field cooling in 5 t. from the above observations it is clear that depending on the strength of the cooling field a certain amount of the high temperature fm ( fi ) phase is supercooled at low temperatures that gives rise to larger magnetization value than the zfc curve . for 5 t field cooling , the sample transfers to the fm ( fi ) phase in the whole temperature range below the magnetic ordering temperature and hence no metamagnetic transition is observed .
[ tb ! ] ( color online ) field dependence of the magnetization , @xmath12 , measured at 2 k with field sweep rate of 0.01 t / sec after field cooling in 0 , 0.5 t , 1 t and 5 t.,title="fig:",width=264 ] all the above measurements show that the field annealing across the first - order transition forms a new magnetic state at low temperatures .
the observation of unequal magnetic behaviors when the sample is cooled with a field smaller / larger than the measuring field clearly indicates the kinetic arrest of the fm ( fi ) phase .
this is further supported by the cooling rate dependence of magnetization measurements , which show that the supercooled fm ( fi ) phase is highly unstable in time .
the stability of the supercooled phase can be increased by higher applied field .
the evidence for the fm ( fi ) phase at the low temperature is also seen from the @xmath12 loops measured after different field cooling procedure .
furthermore , the present magnetic behaviors are well matched with that observed in various magnetic - glass systems that show a kinetic arrest.@xcite therefore , it is confirmed that the mn@xmath0ptga possesses a magnetic - glass phase .
in conclusion , we have studied the existence of a magnetic - glass phase derived from the first - order fm ( fi ) to afm transition in the heusler compound mn@xmath0ptga . with help of field annealing across the first - order transition
we show that the kinetic arrest of the fm ( fi ) phase that gives rise to phase coexistence is responsible for the magnetic - glass phase .
we also show that the supercooled fm ( fi ) phase is more stable in time in presence of higher fields .
100 m. a. manekar , et al .
, phys . rev .
b 64 , 104416 ( 2001 ) .
m. manekar , et al . ,
j. phys . : condens .
matter 14 , 4477 ( 2002 ) .
e. m. levin , k. a. gschneidner , jr .
, and v. k. pecharsky , phys . rev .
b * 65 * , 214427 ( 2002 ) .
r. mahendiran , et al .
rev . lett . * 89 * , 286602 ( 2002 ) . v. hardy , et al .
b * 68 * , 220402 ( 2003 ) .
k. sengupta and e. v. sampathkumaran , phys .
b * 73 * , 020406 ( 2006 ) . t. sarkar , v. pralong , and b. raveau , phys .
b * 83 * , 214428 ( 2011 ) .
m. k. chattopadhyay , s. b. roy , and p. chaddah , phys . rev .
b * 72 * , 180401 ( 2005 ) .
t. krenke , e. duman , m. acet , e. f. wassermann , x. moya , l. maosa , and a. planes nature mater . * 4 * , 450 ( 2005 ) . w. ito , et al . ,
. lett . * 92 * , 021908 ( 2008 ) .
a. k. nayak , k. g. suresh , and a. k. nigam , j. appl .
* 108 * , 063915 ( 2010 ) .
a. k. nayak , k. g. suresh , and a. k. nigam , appl .
. lett . * 96 * , 112503 ( 2010 ) . v. k. sharma , m. k. chattopadhyay , and s. b. roy , phys .
b 76 , 140401 ( 2007 ) . a. k. nayak , et al .
110 , 127204 ( 2013 ) .
j. winterlik , et al .
, phys . rev .
b 83 , 174448 ( 2011 ) .
p. klaer , et al . ,
98 , 212510 ( 2011 ) .
|
first - order magnetic to phase transition research interest anomalous magnetic behaviors previous studies on transition detailed study reported in intermetallic compounds cefe@xmath0 gd@xmath1ge phase separated manganites studies reported in systems nd@xmath3rh@xmath4 @xcite cobaltites disordered - broadened - transition in compounds due intrinsic disorder nucleation centers below temperature transition leads to supercooling field - induced irreversibility phase coexistence magnetic - glass phase phase different from spin glass glassy state obtained by external parameters like magnetic field ni@xmath0mn@xmath5 based heusler alloys show similar magnetic properties magnetic - glass phase structural transition from high temperature cubic austenite phase to low temperature martensitic phase with strong magneto - structural coupling field cooling high temperature austenite phase below martensitic transition temperature large field induced irreversibility in magnetization loops when near to martensitic transition temperature field induced structural change in heusler alloys irreversibilities stronger on transition temperature other magnetic - glass systems show irreversible behavior at lowest temperatures by increasing temperatureexplore functional fundamental properties heusler family new heusler compound mn@xmath0ptga @xcite report magnetic - glass phase in mn@xmath0ptga structural transition dc - magnetization measurements first - order ferromagnetic to antiferromagnetic transition below magnetic ordering temperature responsible for observed effect polycrystalline ingots prepared arc melting elements in high purity argon atmosphere ingots annealed at 1273 k in evacuated quartz tube for one week quenched in ice - water mixture samples characterized by x - ray powder diffraction cu - k@xmath6 radiation magnetization measurements using superconducting quantum interference device vibrating sample magnetometer)temperature dependence of magnetization @xmath7 measured at 0.1 t measurement room temperature crystallizes in tetragonal structure space group i-4m2 measured in zero field cooled heated modes shown in fig zfc mode sample cooled to 2k data taken increasing temperature fc mode data collected while cooling fh mode during heating measurements with temperature sweep rate 3 k / minmn@xmath0ptga paramagnetic to fm transition around 230 k fm to afm transition at 150 k small magnetic moment orders ferrimagnetically like compounds mn atoms two crystallographic positions opposite spin alignment non - zero fc / fh magnetization curves below transition temperature low temperature phase not perfectly afm first - order thermal hysteresis between fc and fh curves sample shows tetragonal crystal structure at room temperature transition not structural phase transition pure magnetic to magnetic magnetic - glass state in mn@xmath0ptga performed @xmath7 measurement in 1 t cooled to 2 k room temperature at 2 k field changed to @xmath9 magnetization measured in heating mode two types magnetic behaviors strength cooling fields @xmath7 curves show afm to fm fi transition on increasing temperature increase magnetization with higher cooling fields due to super cooled fm fi phase for @xmath11 @xmath9 magnetization decreases with increase temperature increase afm to fm transition temperature higher cooling field higher supercooled fm fi ) phase field reduced to lower system equilibrium state by partial fm ( fi to afm phase results in initial decrease magnetization at low temperature irrespective strength cooling field afm to fm transition temperature change for fixed measurement field confirms phase coexistence magnetic - glass state in present sample fh @xmath7 curves measured at 1 t heating rate 3 k / min after field cooling @xmath7 curves measured at 0.5 t different cooling rates 1 t supercooled fm fi ) phase studied temperature sweep - rate dependency of field cooled magnetization fig. field applied at room temperature measurement with cooling rate 5 k / min 1 k / min 0.2 k / min magnetization decreases with decreasing cooling rate higher cooling rate high temperature fm ( fi ) phase higher fm fi components in afm phase decrease cooling rate supercooled fm fi components time achieve equilibrium afm state lower magnetization value slight increase in fm ( fi ) to afm transition temperature with lower cooling ratefield cooling rate kinetic arrest supercooled fm fi phase magnetization in higher cooling fields cooling rate dependence magnetization 1 t fig magnetization changes 5 % cooling rate from 5 to 0.2 k / min 0.5 t field 1.7 % 1 t field stabilizes fm phase higher cooling supercooled phase requires more time equilibrium effect cooling rate less prominent at higher field shows zfc fc @xmath12 loops measured at 2 k field applied at room temperature cooled to 2 k zfc @xmath12 field induced metamagnetic transition around 4.8 t first - order afm to fm fi phase transition low temperature zfc loop confirms fm to afm transition in@xmath0ptga kinetic arrest supercooled fm phase measured @xmath12 loops in different field cooled protocols @xmath12 loop measured after fc in 0.5 t shows higher magnetization value than zfc curve 1 t 5 t fc curves follow increasing trend 0.5 t fc curve critical field for metamagnetic transition increases to 5 t and 5.5 t for fc at 0.5 t 1 t metamagnetic transition @xmath12 loop after field cooling 5 t strength cooling field high temperature fm ( fi ) phase supercooled at low temperatures larger magnetization value than zfc curve 5 t field cooling sample transfers to fm ( fi ) phase below magnetic ordering temperature no metamagnetic transition field dependence magnetization @xmath12 measured at 2 k field sweep rate 0.01 t / sec after cooling 0.5 1 t 5 t show field annealing across first transition forms new magnetic state at low temperatures unequal magnetic behaviors when with field smaller than field indicates kinetic arrest of fm ( fi ) phase cooling supercooled fm fi phase unstable in time stability increased by higher field evidence for phase at low temperature from @xmath12 loops after field cooling magnetic behaviors matched with magnetic - glass systems kinetic arrest mn@xmath0ptga possesses magnetic - glass phase studied magnetic - glass phase from fm ( fi ) to afm transition in heusler compound mn@xmath0ptgafield annealing transition kinetic arrest fm ( fi ) phase coexistence responsible magnetic - glass phase supercooled fm fi ) phase stable higher fields manekar phys . rev . b 64 , 104416 ( 2001 ) manekar. condens matter 14 , 4477 ( 2002 ) levin gschneidner pecharsky phys . rev 65 * 214427 ( 2002 ) mahendiran al rev lett 89 * 286602 ( 2002 ) hardy 68 * 220402 ( 2003 ) sengupta sampathkumaran . b 73 * 020406 ( 2006 ) sarkar pralong b raveau phys . 83 * 214428 ( 2011 ) chattopadhyay. roy p. chaddah phys . rev . 72 * 180401 ( 2005 ) krenke duman acet wassermann moya maosa planes nature mater 4 * 450 ( 2005 ) ito al lett 92 * 021908 ( 2008 ). nayak suresh nigam appl. 108 * 063915 ( 2010 )nayak suresh nigam appl 96 112503 ( 2010 ) sharma chattopadhyay s. roy phys . b 76 , 140401 ( 2007 ) nayak 110 , 127204 ( 2013 ) winterlik . rev 83, 174448 2011 ) p klaer al 98 , 212510 2011
| 0.499233
| 3,271
| 1,623
|
, Saving $0.1 in GPT-4.
|
18,695
|
two component bose gas in a double well potential with repulsive interactions may undergo a phase separation transition if the inter - species interactions outweigh the intra - species ones .
we analyze the transition in the strong interaction limit within the two - mode approximation .
numbers of particles in each potential well are equal and constant . however , at the transition point , the ground state of the system reveals huge fluctuations of numbers of particles belonging to the different gas components .
that is , probability for observation of any mixture of particles in each potential well becomes uniform .
|
ultra - cold dilute gases of bosonic atoms constitute perfect systems for experimental and theoretical investigations of various phenomena of quantum many body problems @xcite . from the viewpoint of quantum computing and interferometry
an especially relevant subject is quantum fluctuations @xcite .
most experimental studies of fluctuations concentrated on systems of cold atoms in double well @xcite and optical lattice potentials @xcite . in the former system
squeezed states were predicted and produced , with particle number fluctuations ( i.e. uncertainties of populations of the potential wells ) turning from poissonian to sub - poissonian @xcite .
the latter system reveals a superfluid to mott insulator transition @xcite with enhanced phase fluctuations but with decreasing particle number fluctuations . in the present paper we focus on a system where
the total particle number is fixed but occupation of certain single particle states reveals considerable quantum fluctuations .
we are interested in a system where the mean field theory predicts symmetry breaking @xcite and the symmetry broken solutions are degenerated and form a hilbert subspace parameterized by a continuous parameter . if the occupation of single particle states varies a lot as we move in the degenerate subspace than huge particle number fluctuations can be expected in the exact quantum many body eigenstates .
degenerate subspace parameterized by a continuous parameter appears in spin-1 bose gas with an anti - ferromagnetic interaction @xcite or in scalar condensates with solitonic solutions @xcite .
attractive single component bose gas in a symmetric double well potential reveals also huge particle number fluctuations but it constitutes a slightly different example @xcite .
there the degeneracy is small , i.e. the degenerate subspace is two dimensional , and the particle number fluctuations correspond to random localization of all particles in one of the potential wells in different experimental realizations . in all these examples
the correct mean field theory reduces to the gross - pitaevskii equations @xcite . in the present paper
we consider a bose gas system where the gross - pitaevskii equation is not a correct mean - field description , that is , a two - component bose gas in a double - well potential in the strong interaction limit . in sec .
[ model ] we present a theoretical model for a two - component bose gas in a double - well potential . in sec .
[ eh ] we derive the effective hamiltonian using second order perturbation theory valid in the strong interaction limit . in sec .
[ cl ] we analyze its mean field ( classical ) limit and identify phase transition region .
it turns out that the mean - field solutions reveal continuous degeneracy at the transition point .
we deduce the exact ground state of the system in sec .
[ qgs ] and show that the particle number fluctuations are indeed huge at the critical point . in sec .
[ v ] we estimate the range of parameters where the predicted fluctuations can be observed and in sec .
[ con ] the results presented in the paper are summarized .
the hamiltonian of a two component bose gas in a symmetric double well potential , in the tight binding approximation , takes the form of the bose - hubbard model @xmath0 where we have assumed that intra - species interactions are the same in both gas components and they are characterized by a coupling constant @xmath1 .
the parameter @xmath2 is a coupling constant that describes inter - species interactions while @xmath3 stands for the tunneling rate between the two potential wells .
we assume also that numbers of particles of each component are equal to @xmath4 .
such a choice of the system parameters allows us to perform fully analytical calculations .
analysis of a general case is beyond the scope of the present paper .
the hamiltonian ( [ oneh ] ) can be transformed to @xmath5 where @xmath6 , @xmath7 and constant terms have been omitted . in the following we consider @xmath8 as the unit of energy .
we are interested in the strong interaction limit .
therefore , the tunneling part of the hamiltonian will be considered as a small perturbation . for @xmath9
the system hamiltonian has exact eigenstates @xmath10 where @xmath11 , @xmath12 refer to numbers of particles of the component @xmath13 in the first and the second potential well , respectively , and similarly for the component @xmath14 .
the energies of such states ( remember that @xmath8 is the unit of energy ) are @xmath15 switching to variables @xmath16 , @xmath17 we obtain eigenenergies in a very simple form @xmath18 if we assume that the parameters satisfy the condition [ condition1 ] 1 |u_d|n^2 , then manifolds with different values of @xmath19 are separated on the energy scale ( see fig .
[ one ] ) .
the lowest energy manifold is related to @xmath20 and states within each manifold are labelled by different values of @xmath21 . ) versus @xmath22 for a number of particles of each component equal @xmath23 .
black lines : the lowest energy manifold , i.e. @xmath20 , red lines : the manifold corresponding to @xmath24 . ]
matrix elements of the tunneling part of the hamiltonian are zero between states of the same manifold . however , this part of the hamiltonian introduces couplings between different manifolds . in an effective hamiltonian that describes the lowest manifold of the system
the effect of the coupling can be included via the second order perturbation theory .
a compact form of the effective hamiltonian may be obtained if we introduce spin operators s_jx&=&12(a^_jb_j+b_j^a_j ) , s_jy&=&-(a^_jb_j - b_j^a_j ) , s_jz&=&12(a^_ja_j - b_j^b_j ) .
states belonging to the lowest manifold ( @xmath20 ) can be written in the fock basis ( [ fock ] ) as @xmath25 are the eigenstates of the @xmath26 , @xmath27 and @xmath28 operators with the corresponding eigenvalues @xmath29 , @xmath30 and @xmath31 , respectively , so the @xmath20 manifold can be specified by : @xmath32 in the second order in @xmath3 the effective hamiltonian that describes the lowest manifold reads @xcite @xmath33 the above hamiltonian together with the condition ( [ condition ] ) defines our problem where each potential well is associated with an angular momentum operator and there is interaction between such subsystems due to tunneling of atoms .
note that eigenstates of the hamiltonian ( [ ham1 ] ) depend on two parameters only , i.e. @xmath34 and @xmath35 .
let us analyze the hamiltonian ( [ ham1 ] ) [ in the manifold defined in ( [ condition ] ) ] in the classical limit by substituting the spin operators by classical angular momentum components .
the condition ( [ condition ] ) implies that @xmath36 .
we are interested in the ground state of the system .
the value of the tunneling part of the hamiltonian -2j^2*s*_1_2 = -2j^2(s_1xs_2x + s_1ys_2y + s_1zs_2z ) , is minimal for @xmath37 , @xmath38 .
for @xmath39 the ground state corresponds to @xmath40 which can be related to @xmath41 ( i.e. phase separation occurs where different gas components occupy different potential wells ) .
for @xmath42 the @xmath43-components of the angular momenta disappear in the ground state ( @xmath44 ) which corresponds to @xmath45 ( i.e. equal mixture of both components in each potential well ) . when @xmath46 we deal with the transition point where @xmath47 can be arbitrary provided @xmath48 .
then all values of @xmath21 are equally probable ( any mixture of both components in each potential well is equally likely ) .
the transition between the phase separation and miscible regimes is discontinuous .
the analysis of the classical limit suggests that huge particle number fluctuations can be expected in the quantum ground state of the system at the transition point .
let us switch now to quantum analysis of the hamiltonian ( [ ham1 ] ) . for @xmath49
the hamiltonian reads [ ham2 ] h_2=j^2[(s_1x - s_2x)^2+(s_1y - s_2y)^2 - _ 1 ^ 2 - _ 2 ^ 2 ] . applying the unitary ( rotation ) transformation @xmath50 which commutes with @xmath51 and thus leaves the manifold @xmath52 invariant , and defining the total spin operator , @xmath53 , we can rewrite the hamiltonian ( [ ham2 ] ) in the following form [ ham3 ] h_2=j^2(^2 -_1 ^ 2 - _ 2 ^ 2 ) . states @xmath54 with an integer @xmath55 , where @xmath56 is an eigenvalue of the @xmath57 operator and @xmath58 is an eigenvalue of the @xmath59 operator , are therefore eigenstates of our problem .
the energy spectrum reads @xmath60 with @xmath61 and the ground state solution corresponds to @xmath62 .
in the basis ( [ fock ] ) it takes the form of [ uniforms ] |_0=_n =- n^n|n + n , n - n |n - n , n+n . huge particle number fluctuations become apparent in eq .
( [ uniforms ] ) where the ground state turns out to be a uniform superposition of all fock states belonging to the lowest energy manifold ( @xmath20 ) .
that is , all values of @xmath21 are equally probable . for @xmath63 ( a ) and @xmath64 ( b ) .
solid black lines are related to the number of particles in each gas component @xmath65 , dashed red lines to @xmath23 and dotted - dashed blue lines to @xmath66 . ]
it is interesting to note that we can construct the exact quantum ground state using the superposition of symmetry broken solutions obtained in the classical limit . at
the transition point the classical analysis tells us that in the ground state the potential wells are associated with classical angular momenta where orientation of one is given by @xmath67 and the other one by @xmath68 and spherical angles @xmath69 and @xmath70 can be arbitrary .
the best quantum approximation of a classical angular momentum is a coherent state @xcite |_j,_j&= & ( e^i_j/2 a_j^. & & .
+ e^-i_j/2 b_j^)^2n can be approximated by a single tensor product state @xmath71 the rotational symmetry of the hamiltonian ( [ ham1 ] ) will be broken .
a rotationally invariant state can be restored if we prepare a uniform superposition of the tensor product states , i.e. by integrating over all solid angles substituting eq .
( [ cohst0 ] ) into eq .
( [ cohst ] ) , integrating over @xmath70 and employing the identity _
-1 ^ 1 ( ) ( ) ^n+n ( ) ^n - n = ^-1 , that follows from the completeness relation of the coherent states we restore the quantum ground state ( [ uniforms ] ) .
we see that at the transition point the classical analysis allows us to construct the exact ground state of the system .
however , in the close vicinity of the transition point this analysis is not able to provide a good estimate for the ground state of the system .
this is because the classical approach predicts discontinuous transition between the phase separation and miscible regimes but the transition is actually continuous .
starting with the classical ground states and using the coherent states we can construct quantum ground states that depend on @xmath35 and on the sign of the parameter @xmath72 but not on its absolute value .
however , the exact diagonalization indicates that there is a range of @xmath72 where the ground state changes continuously from the miscible to phase separation character . as one can expect this range shrinks with @xmath35 because differences between the classical and quantum angular momentum diminish in the large @xmath35 limit
this is illustrated in fig .
[ two ] where we plot @xmath73 for @xmath74 and @xmath75 , i.e. close to the transition point , for different values of @xmath35 obtained in numerical diagonalization of the effective hamiltonian ( [ ham1 ] ) . ,
@xmath76 and @xmath77 ( a ) , @xmath78 ( b ) and @xmath79 ( c ) .
solid black lines correspond to @xmath80 where @xmath81 is obtained by diagonalization of ( [ h ] ) while dashed red lines are related to @xmath73 with @xmath82 obtained by diagonalization of the effective hamiltonian ( [ ham1 ] ) . in panels ( a ) and ( c )
the black and red lines are hardly distinguishable . ]
our predictions are based on the effective hamiltonian ( [ ham1 ] ) which is second order in @xmath3 , and they are correct provided higher order terms can be neglected .
the fourth order terms are smaller than @xmath83 or @xmath84 . at the transition point
@xmath85 , so if @xmath83 is much smaller than the energy gap between the ground and first excited states of the hamiltonian ( [ ham3 ] ) , i.e. @xmath86 , then the higher order terms can be neglected and the system is properly described by the second order hamiltonian ( [ ham3 ] ) . hence , j^2 ( 2n)^4 1 , [ condition3 ] is a sufficient condition for the validity of the ground state ( [ uniforms ] ) that describes the huge particle number fluctuations in the system .
we have tested our predictions comparing them with exact numerical calculations .
figure [ three ] shows probability densities @xmath87 corresponding to ground states of the system obtained by diagonalization of the full hamiltonian ( [ h ] ) and the effective hamiltonian ( [ ham1 ] ) for @xmath88 and @xmath89 .
different panels are related to different values of @xmath22 in the vicinity of the transition point .
that is , @xmath90 corresponds to the miscible regime , @xmath91 to the transition point and @xmath92 to the phase separation side of the transition point .
we can see that on both sides of the transition point the density @xmath87 is peaked around the classical solutions , while at the transition point it is uniformly distributed .
figure [ three ] indicates perfect agreement between the perturbation calculations and the exact results even though @xmath93 and thus the condition ( [ condition3 ] ) is barely fulfilled .
in summary , we have analyzed a strongly interacting two - component bose gas in a double well potential for parameters close to the transition point where the phase separation occurs .
the second order effective hamiltonian allows us to describe the system in the vicinity of the transition point when higher order corrections are negligible .
we have shown that , at the transition point , the ground state of the system becomes a uniform superposition of fock states .
that is , the system reveals huge quantum fluctuations of populations of the potential wells .
we are grateful to maciej lewenstein for a fruitful discussion and his help in solving the hamiltonian eigenvalue problem at the transition point .
support within polish government scientific funds ( for years 2008 - 2011 pz and ks , 2009 - 2012 bo ) as a research project is acknowledged .
|
ultra - cold gases bosonic atoms systems for investigations quantum problems relevant subject quantum fluctuations studies on cold atoms double well optical lattice potentials former system squeezed states predicted produced particle number fluctuations from poissonian to sub - poissonian latter system superfluid to mott insulator transition enhanced phase fluctuations decreasing particle number fluctuations present paper on system total particle number fixed occupation single particle states reveals quantum fluctuations interested system mean field theory predicts symmetry breaking solutions degenerated form hilbert subspace parameterized by continuous parameter if occupation single particle states varies degenerate subspace huge particle number fluctuations expected quantum eigenstates degenerate subspace appears in spin-1 bose gas anti - ferromagnetic interaction scalar condensates solitonic solutions single component bose gas in symmetric double well potential reveals particle number fluctuations different example degeneracy small subspace two dimensional particle fluctuations correspond to random localization particles potential wells mean field theory reduces to gross - pitaevskii equationspresent paper consider bose gas system gross - pitaevskii equation not correct mean - field description two - component bose gas double - well potential strong interaction limit present theoretical model two - component bose gas double - well potential derive effective hamiltonian second order perturbation theory strong interaction limit analyze mean field limit identify phase transition region mean - field solutions reveal continuous degeneracy at transition point deduce exact ground state system particle number fluctuations huge critical point estimate range parameters predicted fluctuations observed results summarized hamiltonian two component bose gas symmetric double well potential form bose - hubbard model @xmath0 intra - species interactions same both gas components characterized by coupling constant @xmath1 parameter @xmath2 coupling constant describes inter - species interactions @xmath3 tunneling rate between two potential wells assume numbers of particles each component equal to @xmath4 choice system parameters analytical calculations analysis general case beyond scope present paper hamiltonian transformed to @xmath5 @xmath6 @xmath7 constant terms omitted consider @xmath8 unit of energy interested strong interaction limit tunneling part hamiltonian considered small perturbation@xmath9 system hamiltonian eigenstates @xmath10 refer numbers particles @xmath13 first second potential well @xmath14 energies states @xmath8 unit energy @xmath15 switching variables @xmath16 obtain eigenenergies simple form @xmath18 parameters satisfy condition 1 |u_d|n^2 manifolds different values @xmath19 separated energy scale fig . lowest energy manifold related @xmath20 states labelled different values @xmath21 @xmath22 number particles equal @xmath23 black lines lowest energy manifold @xmath20 red lines manifold @xmath24 matrix elements tunneling part hamiltonian zero between states same manifold introduces couplings between manifolds effective hamiltonian lowest manifold effect coupling included second order perturbation theory compact form hamiltonian spin operators s_jx&=&12(a^_jb_j+b_j^a_j ) s_jy&=&-(a^_jb_j - b_j^a_j_jz&=&12(a^_ja_j - b_j^b_jlowest manifold @xmath20 written fock basis @xmath25 eigenstates of @xmath26 operators eigenvalues @xmath29 @xmath30 @xmath31 @xmath20 manifold specified by @xmath32 @xmath3 hamiltonian lowest manifold reads @xmath33 hamiltonian condition defines problem each potential well associated angular momentum operator interaction between subsystems due tunneling atoms eigenstates hamiltonian depend on two parameters @xmath34 @xmath35 analyze hamiltonian classical limit substituting spin operators by classical angular momentum components condition implies @xmath36 interested ground state system value tunneling part hamiltonian -2j^2*s*_1_2 = -2j^2(s_1xs_2y_2z minimal for @xmath37 @xmath38 @xmath39 ground state corresponds to @xmath40 related to @xmath41 phase separation different gas components occupy different potential wells @xmath42 @xmath43-components angular momenta disappear in ground state @xmath44 ) corresponds to @xmath45 equal mixture each potential well @xmath46 transition point @xmath47 arbitrary provided @xmath48 .values @xmath21 probable mixture components transition between phase separation miscible regimes discontinuous analysis classical limit suggests huge particle number fluctuations quantum ground state transition point switch to quantum analysis hamiltonian ham1 @xmath49 hamiltonian reads ham2 ] h_2=j^2[(s_1x -_2x)^2+(s_1y -_2y)^2 - 1 ^ 2 - 2 ^ 2 unitary transformation @xmath50 commutes with @xmath51 leaves @xmath52 invariant defining total spin operator @xmath53 rewrite hamiltonian [ ham3 ] h_2=j^2(^2 -_1 ^ 2 - _ 2 ^ 2 ) states @xmath54 integer @xmath55 @xmath56 @xmath57 @xmath58 @xmath59 eigenstates problem energy spectrum reads @xmath60 with @xmath61 ground state solution @xmath62 basis form uniforms ] = = n^n + particle number fluctuations apparent in eq . uniforms ground state uniform superposition fock states lowest energy manifold @xmath20 all values @xmath21 equally probable @xmath63 @xmath64black lines related to particles in each gas component @xmath65 red @xmath23 blue lines to @xmath66 construct exact quantum ground state using superposition of symmetry broken solutions in classical limit transition point classical analysis ground state potential wells associated with angular momenta orientation by @xmath67 @xmath68 spherical angles @xmath69 and @xmath70 arbitrary best quantum approximation of classical angular momentum is coherent state approximated by single tensor product state @xmath71 rotational symmetry of hamiltonian ham1 ) broken rotationally invariant state restored if uniform superposition of tensor product states integrating over solid angles substituting eq . ( cohst0 into eq . ( [ cohst ] ) integrating over @xmath70 identity -1 ^ 1 ^n+n - n = ^-1 restore quantum ground state transition point classical analysis exact ground state close vicinity of transition point good estimate for ground state classical approach predicts discontinuous transition between phase separation miscible regimes transition continuousclassical ground states coherent states construct quantum ground states on @xmath35 @xmath72 not absolute value exact diagonalization indicates range of @xmath72 ground state changes from miscible to phase separation range shrinks with @xmath35 differences classical quantum angular momentum diminish @xmath35 limit illustrated in fig . two @xmath73 @xmath74 @xmath75 transition different values of @xmath35 diagonalization effective hamiltonian ham1 @xmath76 @xmath77 @xmath78 solid black lines correspond to @xmath80 @xmath81 obtained by diagonalization h dashed red lines @xmath73 @xmath82 diagonalization effective hamiltonian ham1 panels black red lines hardly distinguishable predictions based on effective hamiltonian ham1 second order in @xmath3 correct higher order terms neglected fourth order terms smaller than @xmath83 @xmath84 transition point @xmath85 if @xmath83 smaller than energy gap between ground first excited states hamiltonian @xmath86 higher order terms neglected system described by second order hamiltonian ham3 j^2 ( 2n)^4 1 condition3 ] sufficient for validity ground state huge particle number fluctuationstested predictions with numerical calculations figure three shows probability densities @xmath87 to ground states by diagonalization full effective for @xmath88 @xmath89 panels related to values of @xmath22 vicinity transition point @xmath90 corresponds to miscible regime @xmath91 transition point @xmath92 to phase separation side both sides transition point density @xmath87 peaked around classical solutions at transition point uniformly distributed figure indicates agreement between perturbation calculations results @xmath93 condition barely fulfilled analyzed interacting two - component bose gas in double well potential for parameters close to transition point second order effective hamiltonian describe system vicinity transition point when higher order corrections negligible at transition point ground state becomes uniform superposition of fock states system reveals quantum fluctuations of populations potential wells grateful to maciej lewenstein for discussion help solving hamiltonian eigenvalue problem at transition point polish government scientific funds research project acknowledged
| 0.50114
| 3,376
| 1,748
|
, Saving $0.1 in GPT-4.
|
18,713
|
the haystack 37-meter telescope was used in a pilot project in may 1995 to observe grb error boxes at 23 ghz .
seven batse error boxes and two ipn arcs were scanned by driving the beam of the telescope rapidly across their area .
for the batse error boxes , the radio observations took place two to eighteen days after the batse detection , and several boxes were observed more than once .
total power data were recorded continuously as the telescope was driven at a rate of 0.2 degrees / second , yielding nyquist sampling of the beam with an integration time of 50 milliseconds , corresponding to a theoretical rms sensitivity of 0.5 jy . under conditions of good weather , this sensitivity was achieved . in a preliminary analysis of the data we detect only two sources ,
3c273 and 0552 + 398 , both catalogued sources that are known to be variable at 23 ghz .
neither had a flux density that was unusally high or low at the time of our observations .
|
the detection of radio counterparts to gamma - ray bursts would provide important information on the source emission mechanism , would be likely to produce more accurate position determinations , and would give a measure of the source distance through a measurement of the dispersion delay ( palmer 1993 ) .
there is , therefore , considerable interest in detecting radio counterparts to gamma ray bursts , and several searches are under way .
the haystack telescope can make a unique contribution because of its high frequency capabilities and its ability to slew rapidly .
the haystack telescope is optimized for operation above 1 ghz ; a recently completed upgrade ( barvainis _ et al .
_ 1993 ) has extended operations to frequencies as high as 116 ghz .
the telescope was originally designed to track objects in low earth orbit , and high slew speeds can be tolerated .
any source position above the horizon can be reached from zenith within 30 seconds , and the complementary goals of high resolution and wide field of view may be achieved through rapid scanning of an area of the sky .
rapid continuum mapping of large fields with the haystack telescope had not been previously attempted , and a two - week period in may 1995 was allocated to us to develop the observing techniques . at the observing frequency of 23 ghz , the beam is 1.4 arc minutes and the gain is 0.14 k / jy .
the observing frequency was chosen as a compromise between the desire to observe at as high a frequency as possible and a desire to produce a map within a reasonable period of time .
the bandwidth was 160 mhz and the nominal system temperature was 140 k ; the actual system temperature depended on the elevation and weather conditions ( see below ) .
error boxes were scanned at @xmath0/second in right ascension , stepping in increments of @xmath1 in declination .
continuum data were sampled at 20 hz , yielding nyquist sampling in the right ascension direction and twice nyquist sampling in the declination direction .
oversampling in declination was necessary because with the rapid scanning the telescope failed to settle to its commanded declination before beginning to scan in right ascension .
seven batse error boxes and two ipn arcs were observed ; the observations are summarized in table 1 .
each error box was scanned in several `` slices ; '' and in most cases each slice was observed more than once .
observing conditions varied considerably with source elevation and as the weather changed . for presentation in table 1 we selected just one observation of each slice ; the observation selected was that with the best sensitivity .
.journal of observations [ cols="<,<,^,^,^ " , ] llccc bats3594_1 & 95/05/23 & 95/05/27 & 0.53 & @xmath2 + bats3594_2 & 05:39:29.07 & 95/05/27 & 0.54 + bats3594_3 & & 95/05/27 & 0.50 + bats3594_4 & & 95/05/28 & 0.65 + bats3594_5 & & 95/05/27 & 0.50 + bats3594_6 & & 95/05/28 & 0.52 + bats3598_1 & 95/05/24 & 95/05/26 & 0.55 & @xmath3 + bats3598_2 & 04:08:19.12 & 95/05/26 & 0.51 & + bats3598_3 & & 95/05/27 & 0.52 & + bats3598_4 & & 95/05/27 & 0.55 & + the data were displayed and inspected in real - time during the observations and we believe we would have noted any source with flux density exceeding ten times the rms sensitivity listed in table 1 .
this detection limit must be corrected for the weather - dependent opacity at 23 ghz ; for the data presented here the correction is typically about 15% . as an example of the quality of the data produced in the survey we present in figure 1 our map of part of the error box of batse # 3598 .
this map was produced by fitting a linear baseline to five - second segments of data and subtracting the fit from the central three seconds of data .
the measured pixel - to - pixel rms was 0.49 jy , consistent with the expected value of 0.51 jy ( see table 1 ) .
regions in which the fit was poor are evident in the map as horizontal `` streaks '' over a portion of a single row ; occasional unsampled pixels can also be seen .
sources ( here , 3c273 ) appear as bright regions with the extent of the beam .
further data analysis is in progress .
in the preliminary analysis of the data during the observations , only 3c273 was detected ; 0552 + 398 was noted when we examined our maps for previously known , catalogued sources .
no other source was detected in the maps summarized in table 1 .
3c273 is in the error box of batse#3598 ( see figure 1 ) ; 0552 + 398 is in the error box of batse#3594 .
the data analysis is still in progress ; careful examination of all radio maps and averaging of the data for boxes scanned more than once may yield further detections .
it is possible that radio - loud agn are the sources of the gamma ray bursts .
however , both 3c273 and 0552 + 398 are already known to be variable and neither had a flux density that was unusually high or low during the time of our observations .
therefore , there is no compelling reason to associate either with a grb .
now that the continuum mapping technique with the haystack telescope has been demonstrated , further observations of grb error boxes have been proposed . during this past summer , the telescope servo system was replaced . with the improved pointing control more rapid scanning of boxes should be possible , making feasible observations at higher frequencies .
a new receiver will provide lower receiver noise at 23 ghz and allow us to observe farther from the 22 ghz water line , further increasing the sensitivity .
|
detection of radio counterparts to gamma - ray bursts information on source emission mechanism accurate position determinations source distance through dispersion delay palmer 1993 interest in detecting radio counterparts to gamma bursts searches under way haystack telescope contribution high frequency capabilities rapidly optimized for operation above 1 ghz upgrade extended operations to 116 ghz designed to track objects in low earth orbit high slew speeds tolerated source position above horizon reached from zenith within 30 seconds high resolution wide field of view achieved through rapid scanning sky rapid continuum mapping of large fields with telescope not attempted two - week period in may 1995 allocated to develop observing techniques at frequency 23 ghz beam 1.4 arc minutes gain 0.14 k / jy compromise between map within reasonable time bandwidth 160 mhz nominal system temperature 140 k temperature on elevation weather conditions error boxes scanned at @xmath0/second in right ascension of @xmath1 in declination continuum data sampled at 20 hz nyquist sampling in right ascension twice declination directionoversampling declination necessary rapid scanning telescope failed settle commanded declination before right ascension seven batse error boxes two ipn arcs observed observations summarized in table 1 error box scanned slices observed more than once observing conditions varied source elevation weather presentation table selected one observation each slice best observations bats3594_1 95/05/23 95/05/27 0.53 @xmath2 bats3594_2 05:39:29.07/27 0.54 bats3594_3 0.50_4/28 0.65 bats3594_5/27 0.50 bats3594_6/28 0.52 bats3598_1 95/05/24 95/05/26 0.55 @xmath3 bats3598_2 04:08:19.12 95/05/26 0.51 bats3598_3/27 0.52_4 0.55 data displayed inspected real - time noted source flux density exceeding ten times rms sensitivity table 1 detection limit corrected weather - dependent opacity at 23 ghz correction typically about 15% example quality data figure 1 map error box of batse # 3598 map produced fitting linear baseline to five - second segments data subtracting fit from central three seconds datameasured pixel - to - pixel rms 0.49 jy consistent with expected 0.51 jy table 1 regions fit poor evident as horizontal streaks row unsampled pixels sources 3c273 ) as bright regions beam further data analysis progress preliminary analysis only 3c273 detected 0552 + 398 noted no other source detected in maps table 1 3c273 in error box of batse#3598 0552 + 398 error box batse#3594 data analysis in progress examination radio maps averaging data for may yield further detections possible radio - loud agn sources gamma ray bursts 3c273 and 0552 + 398 variable neither flux density unusually high or low no compelling reason to associate either with grb continuum mapping technique with haystack telescope demonstrated further observations of grb error boxes proposed telescope servo system replaced improved pointing control rapid scanning possible observations at higher frequencies new receiver lower noise at 23 ghz observe farther from 22 ghz water line increasing sensitivity
| 0.187279
| 1,338
| 686
|
, Saving $0.0 in GPT-4.
|
18,717
|
a balanced graph is a bipartite graph with no induced circuit of length @xmath0 .
these graphs arise in linear programming .
we focus on graph - algebraic properties of balanced graphs to prove a complete classification of balanced cayley graphs on abelian groups .
moreover , in section [ sec : planar ] of this paper , we prove that there is no cubic balanced planar graph . finally , some remarkable conjectures for balanced regular graphs are also presented . , and : cayley graph , balanced graph
|
a @xmath1-matrix is _ balanced _ if the sum of the entries of every submatrix that is minimal with respect to the property of containing @xmath2 nonzero entries per row and per column , is congruent to @xmath3 .
balanced matrices were introduced by berge @xcite in the context of hypergraphs , and they arise naturally in linear programming @xcite .
there has been considerable study of balanced matrices ; the reader might check @xcite or @xcite for a survey on the main results and horizons on balanced matrices .
every @xmath1-matrix is also the bipartite adjacency matrix of a bipartite graph . specifically , if @xmath4 is a bipartite graph with vertex bipartition @xmath5 , then the bipartite adjacency matrix for @xmath4 is the @xmath1-matrix @xmath6 with @xmath7 if and only if @xmath8 and @xmath9 .
so , it is natural to consider which bipartite graphs have balanced adjacency matrices .
equivalently , which bipartite graphs have no induced circuits of length @xmath0 .
we refer to such graphs as _
balanced graphs_. most results on balanced graphs are restricted to some subclass .
for instance , balanced graphs in which every induced circuit has length @xmath10 have been characterised in @xcite .
it is our aim in this paper to provide some insight into the structure of some additional classes of balanced graphs .
all graphs in this paper are connected , so , by abuse of terminology we use the term `` graph '' to mean `` connected graph ''
. we will present three main results in this paper , together with a number of conjectures . in two of our results ,
we restrict our attention to a significant family of balanced graphs , and characterise all of the graphs in that family .
first , we characterise balanced cayley graphs on abelian groups .
then we prove that there are no cubic balanced planar graphs . in the remaining result , we provide a condition on the number of vertices of a @xmath11-regular balanced graph .
before we can state our characterisation of balanced cayley graphs on abelian groups , a number of definitions will be required .
let @xmath12 be a group and @xmath13 a subset of @xmath12 such that @xmath13 is closed under taking inverses , i.e. @xmath14 . the _ cayley graph _ of @xmath12 with connection set @xmath13 , denoted @xmath15 , is the graph with vertex set @xmath12 and edge set @xmath16 . if @xmath4 and @xmath17 are graphs , the lexicographic product of @xmath4 with @xmath17 is the graph with vertices @xmath18 , where @xmath19 and @xmath20 are adjacent if and
only if either @xmath21 , or @xmath22 and @xmath23 . we denote by @xmath24 the complement of the complete graph @xmath25 , i.e. @xmath24 has @xmath26 vertices and no edges .
further , we denote by @xmath27 the cycle of length @xmath28 and @xmath29 for the degenerate case
. the following terminology will be used in our characterisation .
let @xmath30 be in @xmath31 , with @xmath32 or @xmath33 and @xmath34 . the lexicographic product of @xmath27 with @xmath24 is called an _ @xmath35-cycle_. ( 0,0)-cycle , title="fig : " ] # 1#2#3#4#5 @font ( 4486,4516)(818,-4044 ) figure [ f : cycle ] shows the example of an @xmath36-cycle .
we recall that the circuits of a cayley graph @xmath4 are well studied and the problem of `` understanding '' the lengths of the circuits of @xmath4 has attracted considerable attention , see @xcite and @xcite .
for example , it is known that if @xmath4 is a bipartite cayley graph on an abelian group , then @xmath4 has circuits of any even length , i.e. @xmath37 , see @xcite .
unfortunately , not much is known about the _ induced _ circuits of @xmath4 .
so , in this paper , we focus only on induced circuits . since it seems hard to get general results on induced circuits of cayley graphs , we restrict our interest to balanced cayley graphs . specifically , in section [ s : circulant ] and section [ s : abelian ] , we study balanced cayley graphs on abelian groups
. we will show that this class of graphs is very restricted .
indeed , we get the following result . [
t : mainabelian ] if @xmath12 is an abelian group and @xmath38 , then the graph @xmath15 is balanced if and only if it is isomorphic to an @xmath35-cycle . in section [ s : divisibility ]
, we use a theorem of berge @xcite and fulkerson , hoffman , and oppenheim @xcite to prove the following result .
[ t : divisibility ] if @xmath4 is a @xmath11-regular balanced graph , then the number of vertices of @xmath4 is divisible by @xmath39 . in section [ sec : planar ] , we narrow our focus to cubic balanced planar graphs and we prove the following theorem .
[ noplanar ] there is no cubic balanced planar graph .
finally , two conjectures for balanced regular graphs are presented in section [ s : conjectures ] .
these conjectures are based on the results for balanced cayley graphs on abelian groups , on theorem [ noplanar ] and on some exhaustive computer computations .
it seems to the authors that the statements and the proofs in section [ s : circulant ] and [ s : abelian ] are neater using a multiplicative notation .
so , all groups in the following two sections will be written using multiplicative notation . as usual ,
if @xmath12 is a group and @xmath40 , the symbol @xmath41 denotes the subgroup of @xmath12 generated by @xmath42 , and @xmath43 denotes the identity element in @xmath12 .
let @xmath44 denote a cyclic group of order @xmath45 , generated by @xmath42 , and let @xmath46 be closed under taking inverses .
the graph @xmath47 is said to be a _ circulant graph _ of order @xmath45 . recall that @xmath47 is bipartite if and only if @xmath45 is even and @xmath48 . proof .
we prove , by induction on @xmath28 , that @xmath52 lies in @xmath13 for every @xmath28 . if @xmath53 or @xmath54 , then there is nothing to prove , by hypothesis @xmath55 lie in @xmath13 .
now , assume that the claim is true for every index @xmath56 such that @xmath57 , and so , @xmath58 .
since @xmath14 , if @xmath59 , then @xmath60 and there is nothing to prove .
assume @xmath61 .
let @xmath62 and let @xmath63 be minimum with @xmath64 .
set @xmath65 where @xmath66 and @xmath67 are non - negative integers with @xmath68 .
we show that @xmath69 and @xmath70 and thus @xmath71 .
note that since @xmath72 , we may assume that @xmath73 .
suppose instead that @xmath74 .
the following table lists the vertices of an induced circuit @xmath75 in @xmath4 with length @xmath76 . in reading the table
, the following remarks may be useful . since @xmath26 is even and @xmath77 is odd
, @xmath66 and @xmath67 have the same parity .
each cycle ends with the vertex @xmath78 .
now , we leave to the reader the straightforward work of checking that every given circuit is induced , since all differences between non - consecutive vertices are either even , or strictly between @xmath77 and @xmath79 .
since @xmath4 is balanced , it follows that @xmath69 .
g.cornujols , _ combinatorial optimization : packing and covering _ , volume * 74 * of _ cbms - nsf regional conference series in applied mathematics _ , society for industrial and applied mathematics ( siam ) , philadelphia , pa , 2001 .
|
@xmath1-matrix balanced if entries submatrix minimal @xmath2 nonzero entries per row column congruent to @xmath3 balanced matrices introduced by berge @xcite hypergraphs arise in linear programming study of balanced matrices check @xcite for survey on results balanced matrices @xmath1-matrix bipartite adjacency matrix of bipartite graph if @xmath4 bipartite graph with vertex bipartition @xmath5 bipartite adjacency matrix @xmath4 @xmath1-matrix @xmath6 with @xmath7 if @xmath8 and @xmath9 to consider which bipartite graphs have balanced adjacency matrices no induced circuits of length @xmath0 refer to graphs as balanced graphs results on balanced graphs restricted to subclass balanced graphs every induced circuit has length @xmath10 characterised in @xcite aim paper insight into structure additional classes of balanced graphs all graphs connected graph present three main results conjectures restrict attention to family of balanced graphs characterise all balanced cayley graphs on abelian groupsprove no cubic balanced planar graphs condition on vertices @xmath11-regular balanced graph characterisation balanced cayley graphs abelian groups definitions required @xmath12 group @xmath13 subset @xmath12 @xmath13 closed under inverses @xmath14 cayley graph of @xmath12 with connection set @xmath13 @xmath15 with vertex set @xmath12 edge set @xmath16 @xmath4 @xmath17 graphs lexicographic product @xmath4 @xmath17 graph with vertices @xmath18 @xmath19 @xmath20 adjacent if @xmath21 @xmath22 @xmath23 denote @xmath24 complement complete graph @xmath25 @xmath26 vertices no edges denote @xmath27 cycle of length @xmath28 and @xmath29 degenerate case terminology characterisation @xmath30 in @xmath31 @xmath32 or @xmath33 @xmath34 lexicographic product @xmath27 with @xmath24 @xmath35-cycle_ example @xmath36-cycle circuits cayley graph @xmath4 well studied problem understanding lengths attracted attention see @xcite known if @xmath4 bipartite cayley graph on abelian group has circuits even length @xmath37 see @xcite not much known about induced circuits @xmath4 focus on induced circuits hard general results on induced circuits restrict interest to balanced cayley graphs section circulant abelian study balanced cayley graphs on abelian groups class graphs restricted result if @xmath12 abelian group and @xmath38 graph @xmath15 balanced if isomorphic to @xmath35-cycle section s : divisibility use theorem of berge @xcite fulkerson oppenheim prove result if @xmath4 is @xmath11-regular balanced graph number of vertices of @xmath4 divisible by @xmath39 section planar narrow focus to cubic balanced planar graphs prove theorem no cubic balanced planar graph two conjectures for balanced regular graphs presented in section [ s : conjectures ]conjectures based on balanced cayley graphs abelian groups theorem noplanar computer computations statements proofs in section circulant abelian neater using multiplicative notation groups sections written multiplicative notation if @xmath12 group @xmath40 symbol @xmath41 subgroup @xmath12 @xmath42 @xmath43 identity element @xmath12 @xmath44 cyclic group @xmath45 @xmath42 @xmath46 closed under inverses graph @xmath47 circulant graph of order @xmath45 @xmath47 bipartite if @xmath45 even @xmath48 @xmath52 lies in @xmath13 every @xmath28 if @xmath53 @xmath54 nothing to prove @xmath55 in @xmath13 assume claim true for every index @xmath56 @xmath57 @xmath58 @xmath14 @xmath59 @xmath60 nothing to prove assume @xmath61 @xmath62 @xmath63 minimum with @xmath64 set @xmath65 where @xmath66 @xmath67 non - negative integers with @xmath68 @xmath69 @xmath70 @xmath71 @xmath72 assume @xmath73 @xmath74table lists vertices induced circuit @xmath75 @xmath4 length @xmath76 remarks useful @xmath26 even @xmath77 odd @xmath66 @xmath67 parity cycle ends vertex @xmath78 reader checking circuit induced differences between non - consecutive vertices even or @xmath77 @xmath79 @xmath4 balanced follows @xmath69 g.cornujols combinatorial optimization packing covering volume 74 cbms - nsf regional conference series applied mathematics society industrial applied mathematics philadelphia 2001
| 0.306592
| 1,911
| 1,024
|
, Saving $0.1 in GPT-4.
|
18,726
|
in this note the author uses order statistics to estimate wcre and wce in terms of empirical and survival functions .
an example in both cases normal and exponential wfs is analyzed . * 2000 msc .
* 62n05 , 62b10 + * keywords : * weighted cumulative residual entropy , weighted cumulative entropy , statistical estimation , weight function .
|
let @xmath0 be a non - negative absolutely continuous random variable ( rv ) describing a component failure time , with the probability density function ( pdf ) , @xmath1 , the cumulative distribution function ( cdf ) , @xmath2 , and the survival function ( sf ) , @xmath3 .
following @xcite for given function @xmath4 , and the pdf @xmath5 , the _ weighted cumulative residual entropy _ ( wcre ) of @xmath0 ( or @xmath6 ) with weight function ( wf )
@xmath7 is defined by [ eq : wcre ] ( x)=(f ) = -_^+(x ) ( x)(x)x . a standard agreement @xmath8 is adopted .
given the cdf , @xmath9 $ ] , with wf @xmath7 , the _ weighted cumulative entropy _
( wce ) of a rv @xmath0 is presented by [ eq : wce ] ( x)=(f ) = -_^+(x ) f(x ) f(x)x .
note that in particular @xmath10 the wcre and wce in ( [ eq : wcre ] ) and ( [ eq : wce ] ) turn ( 8) and ( 9 ) in @xcite .
evidentally for @xmath11 , the wcre and wce take the forms cre and ce , cf .
@xcite . passing to kullback - leibler divergence @xmath12 and cre @xmath13 , it s worthwhile to note that ( f)=-d()=(f)+d ( ) .
( a)suppose an rv @xmath0 follows exponential distribution with mean @xmath14 . then ( f)=_z , where rv @xmath15 has gamma distribution with shape parameter 2 and scale @xmath14 .
note that for any real number @xmath16 and particular form of @xmath17 , the wcre becomes the fourier transform of gamma s pdf .
moreover , if @xmath18 , then @xmath19 takes the gammas s characteristic function ( laplace transform ) .
also assume the case @xmath20 is the polynomial function of @xmath21 , @xmath22 , @xmath23 : ( x)=a_nx^n+a_n-1x^n-1+ +a_1x+a_0.observe that the wcre reads ( f)=_i=0^n a_i , ( i+2)=(i+1)!. the weighted entropy defined in @xcite , @xmath24 , for the equilibrium rv , @xmath25 , associated to a non - negative rv @xmath0 with sf @xmath26 relates to the wcre by h^w_(x_e)=(f)+_^+(x)(x)x .
the reader would be addressed to @xcite for numerous properties and motivations of wcre and wce . also refer to @xcite , @xcite for more details regarding the weighted entropies .
the main aim of this work is to represent an empirical estimator for wcre and wce , following analogue arguments in @xcite , @xcite .
the paper statistically focuses on the estimation of wcre and wce with general wf @xmath7 by using the order statistics . here and below @xmath27 and
@xmath28 stand the empirical distribution and survival function of random sample @xmath29 at point @xmath21 : _
n(x)= _ i=1^n \{x_ix } , _
n(x)=1-_n(x),where @xmath30 is the indicator function of the event @xmath31 .
let @xmath29 be a random sample drawn from a population with distribution function @xmath6 .
again set @xmath32 as wf , according to the definition of wcre and wce in ( [ eq : wcre ] ) and ( [ eq : wce ] ) , the empirical wcre and empirical wce respectively are defined by [ thm1 ] let @xmath0 be a non - negative rv in @xmath33 .
given @xmath34 suppose for given @xmath35 the wf @xmath7 obeys [ assum:1 ] _
0^a ( x)x < _ a^(x ) x^-p x < .then the empirical wcre convergens to the wcre of @xmath0 , that is : ( _ n ) ( f ) a.s .
.5 truecm next , consider the order statistics of random sample , denote by @xmath36 , indeed on the other hand @xmath37 renders the empirical quantity as [ eq : sec3.02 ] ( _ n)=-_i=1^n-1_x_(i)^x_(i+1 ) ( x ) _
n(x ) _ n(x)x.further , set @xmath38 taking into account @xmath39 , @xmath40 , @xmath41 , the eqn ( [ eq : sec3.02 ] ) becomes the note is concluded by giving an example in order to discuss the represented estimation for wcre and wce above .
in fact in example [ exam.simulation ] , two normal and exponential wfs are considered .
the observations from the simulations are coincide with analytical computation here and in @xcite .
cccccccccc 8.23 & 2.86 & 0.906 & 6.66 & 0.912 & 0.127 & 0.290 & 0.422 & 7.23 & 10.93 + 0.126 & 1.65 & 2.18 & 1.18 & 1.43 & 0.521 & 1.34 & 0.428 & 3.40 & 3.36 + 0.119 & 1.83 & 1.24 & 1.37 & 4.54 & 6.44 & 0.626 & 2.37 & 0.906 & 1.72 + 0.049 & 1.51 & 0.123 & 0.651 & 3.32 & 1.42 & 2.74 & 1.96 & 0.047 & 0.120 + 0.247 & 0.417 & 4.24 & 2.04 & 6.01 & 0.721 & 2.57 & 1.45 & 2.22 & 0.221 * ( i)normal wf : * according to the upcoming sample , assume the wf @xmath47 the graphs in figure i.1 , i.2 present the empirical wcre and wce for the given data in particular value of @xmath48 .
these simulations show that both wcre and wce are increasing in @xmath49 , however this is what we were expecting from the analytical calculations .
in addition , for biggest @xmath46 , same as cre and ce , when the number of sample order data , @xmath50 , is increasing the both curves wcre and wce are ascending as well , whereas for small value of @xmath49 this is violated . for instant for @xmath44 , @xmath51 and @xmath52 or when @xmath45 , @xmath53 and @xmath54 .
+ here @xmath55 and @xmath56 are the amount of wcre and wce in @xmath50 respectively . + *
( ii)exponential wf : * suppose that @xmath57 . to satisfy the condition ( [ assum:1 ] ) in theorem [ thm1 ] ,
constant @xmath58 should be considered non - positive .
observe the figure ii.1 , ii.2 for the given sample data .
the graphs represents the wcre and wce for different values of @xmath59 . here
also the wcre and wce are increasing when @xmath58 is increasing .
although in spite of normal wf case , for each value of @xmath58 the wcre and wce increase singly .
.5 truecm _ acknowledgements
_ sys thanks professor yuri suhov for useful discussions .
sys also thanks the capes pnpd - ufscar foundation for the financial support in the year 2014 - 5 and the federal university of sao carlos , department of statistics , for hospitality during the year 2014 - 5 .
|
@xmath0 non - negative continuous random variable component failure time probability density function @xmath1 cumulative distribution function survival function sf @xmath3 @xcite function @xmath4 pdf @xmath5 weighted cumulative residual entropy wcre @xmath0 @xmath6 weight function wf @xmath7 defined ( x)=(f ) = -_^+(x ))x standard agreement @xmath8 adopted cdf @xmath9 wf @xmath7 weighted cumulative entropy wce rv @xmath0 ( x)=(f ) = -_^+(x ) f(x ) f(x)x @xmath10 wcre wce turn ( 8) ( 9 ) @xcite @xmath11 wcre wce forms cre ce kullback - leibler divergence @xmath12 cre @xmath13 ( f)=-d()=(f)+d ( ) rv @xmath0 follows exponential distribution mean @xmath14 ( f)=_z rv @xmath15 gamma distribution shape parameter 2 scale @xmath14 number @xmath16 @xmath17 wcre fourier transform gamma pdf@xmath18 @xmath19 gammas function laplace transform @xmath20 polynomial function @xmath21 x)=a_nx^n+a_n-1x^n-1+ +a_1x+a_0 wcre reads f)=_i=0^n a_i i+2)=(i+1) weighted entropy @xcite @xmath24 equilibrium rv @xmath25 non - negative @xmath26 relates wcre h^w_(x_e)=(f)+_^+(x)(x)x reader @xcite properties motivations wcre wce refer @xcite details weighted entropies empirical estimator for wcre wce arguments focuses estimation wcre wce general wf @xmath7 order statistics @xmath27 @xmath28 empirical distribution survival function random sample @xmath29 @xmath21 n(x)= i=1^n \{x_ix n(x)=1-_n @xmath30 indicator function event @xmath31 @xmath29 random sample population distribution function @xmath6set @xmath32 as wf definition wcre wce empirical wcre wce defined by @xmath0 non - negative rv in @xmath33 @xmath34 @xmath35 wf @xmath7 obeys)x < x < empirical wcre convergens to wcre @xmath0 ( n ) f ) consider order statistics random sample @xmath36 @xmath37 renders empirical quantity as eq : sec3.02 ] n)=-_i=1^n-1_x_(i)^x_(i+1 n(x(x)x set @xmath38 @xmath39 @xmath40 @xmath41 eqn : sec3.02 ] example estimation for wcre wce exam.simulation two normal exponential wfs observations simulations coincide with computation @xcite 8.23 & 2.86 0.906 6.66 0.912 0.127 0.290 0.422 7.23 10.93 + 0.126 1.65 2.18 1.18 1.43 0.521 1.34 0.428 3.40 3.36 + 0.119 1.83 1.24 1.37 4.54 6.44 0.626 2.37 0.906 1.72 + 0.049 1.51 0.123 0.651 & 3.32 1.42 2.74 1.96 0.047 0.120 + 0.247 0.417 4.24 2.04 6.01 0.721 2.57 1.45 2.22 0.221)normal wf upcoming sample assume wf @xmath47 graphs figure i.1 i.2 present empirical wcre wce data value @xmath48 simulations show wcre wce increasing in @xmath49 expecting analytical calculations biggest @xmath46 number sample order data @xmath50 increasing curves wcre wce ascending small value @xmath49 violated @xmath44 @xmath51 @xmath52 @xmath45 @xmath53 @xmath54 @xmath55 @xmath56 are amount wcre wce in @xmath50)exponential wf suppose @xmath57 condition constant @xmath58 non - positive observe figure ii.1 ii.2 sample data graphs wcre wce for different values @xmath59 wcre wce increasing when @xmath58 increasing each value @xmath58 wcre wce increase singly sys thanks professor yuri suhov discussions thanks capes pnpd - ufscar foundation financial support federal university of sao carlos department statistics hospitality
| 0.261472
| 1,789
| 1,027
|
, Saving $0.0 in GPT-4.
|
18,733
|
given a directed graph , an acyclic set is a set of vertices inducing a subgraph with no directed cycle . in this note
we show that there exist oriented planar graphs of order @xmath0 for which the size of the maximum acyclic set is at most @xmath1 , for any @xmath0 .
this disproves a conjecture of harutyunyan and shows that a question of albertson is best possible .
|
an _ oriented graph _ is a digraph @xmath2 without loops and multiple arcs
acyclic set _ in @xmath2 is a set of vertices which induces a subgraph without directed cycles .
the complement of an acyclic set of @xmath2 is a _ feedback vertex set _ of @xmath2 .
a question of albertson , which was the problem of the month on mohar s page @xcite , asks whether every planar oriented graph on @xmath0 vertices has an acyclic set of size at least @xmath3 .
there are three independent strengthenings of this question in the literature . in the following ,
we discuss them briefly .
[ conj : harutyunyan ] every planar oriented graph of order @xmath0 has an acyclic set of size at least @xmath4 .
the _ digirth _ of a directed graph is the length of a smallest directed cycle .
golowich and rolnick @xcite showed that a planar oriented graph of digirth @xmath5 has an acyclic set of size at least @xmath6 in particular proving conjecture [ conj : harutyunyan ] for planar oriented graphs of digirth @xmath7 .
a lower bound of @xmath3 for the size of an acyclic set in an oriented planar graph would immediately follow from any of the following two conjectures .
[ conj : neumann - lara ] every planar oriented graph can be vertex - partitioned into two acyclic sets .
harutyunyan and mohar @xcite proved conjecture [ conj : neumann - lara ] for planar oriented graphs of digirth @xmath8 .
the undirected analogue of conjecture [ conj : neumann - lara ] is false , because it is equivalent to _
tait s conjecture _
( which is false )
. however , the following remains open : [ conj : albertson - berman ] every simple undirected planar graph of order @xmath0 has an induced forest of order at least @xmath3 .
there are many graphs showing that conjecture [ conj : albertson - berman ] , if true , is best - possible , e.g. , @xmath9 and the octahedron .
the best - known lower bound for the order of a largest induced forest in a planar graph is @xmath10 and follows from borodin s result on acyclic vertex - coloring of undirected planar graphs @xcite .
we summarize the discussion in table [ table ] : .lower bounds for acyclic sets in planar oriented graphs . [
cols="<,^,^,^,^",options="header " , ]
here , we give an upper bound for the maximum acyclic set in an oriented planar graph of given order and digirth .
the most important case of this result is the one when the digirth is 3 . for this case
our result implies that , if true , the lower bound of @xmath3 in albertson s question is best possible .
in particular it disproves conjecture [ conj : harutyunyan ] .
we show the corresponding statement for feedback vertex sets . indeed , a little stronger , we show that for any @xmath5 and @xmath12 there is an oriented planar graph @xmath13 such that : @xmath13 has digirth @xmath5 , order @xmath14 , and a minimum vertex feedback set of size @xmath12 .
moreover , @xmath13 has two vertices @xmath15 and @xmath16 on a common face @xmath17 , which do not simultaneously appear in any minimum feedback vertex set .
we induct on @xmath12 . for @xmath18
we take a directed cycle of order @xmath5 .
this clearly satisfies all conditions .
if @xmath19 , take the plane digraph @xmath20 , add a directed path @xmath21 into its face @xmath17 and add arcs @xmath22 , @xmath23 , @xmath24 , and @xmath25 .
see figure [ fig : dessin ] . since in @xmath20
no minimum feedback vertex set uses both @xmath15 and @xmath16 , in order to hit the two newly created directed cycles , an additional vertex @xmath26 is needed .
thus , @xmath13 has a minimum feedback vertex set of size at least @xmath12 .
now , choosing @xmath27 , indeed gives a feedback vertex set of size @xmath12 .
thus , in @xmath13 there is no minimum feedback vertex containing two vertices from @xmath28 .
since each such pair of vertices lies on a newly created common face , it only remains to check the order of @xmath13 . since we added a total of @xmath29 new vertices
, @xmath13 has @xmath30 vertices , i.e. , @xmath31 .
thus , the largest acyclic set in @xmath13 is of size @xmath32 . by theorem [ thm : ub ] , for even @xmath0 , an acyclic set in a planar oriented graph of digirth @xmath33
is of size at most @xmath34 .
a computer check , using tools from sage @xcite , shows that there are 9 planar triangulations with @xmath0 vertices ( @xmath0 is even and @xmath35 ) that are tight examples for conjecture [ conj : albertson - berman ] .
furthermore , for all orientations of these examples , the largest directed acyclic set is of size at least @xmath34 .
we wonder if the following is true : if a largest induced forest in a simple undirected planar graph @xmath36 on @xmath0 vertices is of size @xmath37 , then for every orientation @xmath2 of @xmath36 there is an acyclic set of size at least @xmath38 .
|
oriented graph is digraph @xmath2 without loops arcs acyclic set @xmath2 vertices subgraph without directed cycles complement acyclic set is feedback vertex set @xmath2 question albertson problem planar oriented graph on @xmath0 vertices acyclic set size at least @xmath3 three strengthenings harutyunyan planar oriented graph @xmath0 has acyclic set size at least @xmath4 digirth directed graph length smallest directed cycle golowich rolnick showed planar oriented graph digirth @xmath5 has acyclic set size at least @xmath6 proving conjecture harutyunyan for graphs digirth @xmath7 lower bound of @xmath3 for size acyclic set planar graph from two conjectures neumann planar oriented graph vertex - partitioned into two acyclic sets harutyunyan mohar proved conjecture for graphs digirth @xmath8 undirected analogue conjecture false equivalent to tait s conjecture remains open albertson - berman undirected planar graph @xmath0 has induced forest of order at least @xmath3graphs showing conjecture albertson - berman best @xmath9 octahedron lower bound for largest induced forest in planar graph is @xmath10 follows borodin s result on acyclic vertex - coloring graphs summarize discussion in table bounds for acyclic sets in planar graphs upper bound maximum acyclic set in oriented planar graph important case digirth 3 implies lower bound of @xmath3 albertson s question best possible disproves conjecture harutyunyan corresponding statement for feedback vertex sets @xmath5 @xmath12 oriented planar graph @xmath13 has digirth @xmath5 order @xmath14 minimum vertex feedback set @xmath12 has two vertices @xmath15 @xmath16 on common face @xmath17 not appear minimum feedback vertex set induct on @xmath12 for @xmath18 directed cycle of order @xmath5 satisfies conditions @xmath19 plane digraph @xmath20 add directed path @xmath21 into @xmath17 add arcs @xmath22 @xmath23 @xmath25figure @xmath20 no minimum feedback vertex uses @xmath15 and @xmath16 hit two cycles additional vertex @xmath26 needed @xmath13 has minimum feedback vertex @xmath12 choosing @xmath27 gives feedback vertex size @xmath12 @xmath13 no minimum feedback vertex two vertices from @xmath28 each pair vertices on common face check order of @xmath13 added @xmath29 new vertices @xmath13 has @xmath30 vertices @xmath31 largest acyclic set in @xmath13 size @xmath32 @xmath0 acyclic set in planar @xmath33 size most @xmath34 computer check shows 9 planar triangulations with @xmath0 vertices even @xmath35 ) examples for conjecture largest directed acyclic set size @xmath34 largest induced forest in planar graph @xmath36 on @xmath0 vertices size @xmath37 every orientation @xmath2 of @xmath36 acyclic set size least @xmath38
| 0.182836
| 1,302
| 680
|
, Saving $0.0 in GPT-4.
|
18,734
|
in this paper we consider the problem of how large the hausdorff dimension of @xmath0 needs to be in order to ensure that the radii set of @xmath1-dimensional spheres determined by @xmath2 has positive lebesgue measure .
we also study the question of how often can a neighborhood of a given radius repeat .
we obtain two results .
first , by applying a general mechanism developed in @xcite for studying falconer - type problems , we prove that a neighborhood of a given radius can not repeat more often than the statistical bound if @xmath3 ; in @xmath4 , the dimensional threshold is sharp .
second , by proving an intersection theorem , we prove for a.e @xmath5 , the radii set of @xmath1-spheres with center @xmath6 determined by @xmath2 must have positive lebesgue measure if @xmath7 , which is a sharp bound for this problem .
|
.125 in the classical falconer distance conjecture states that if a set @xmath8 , @xmath9 , has hausdorff dimension greater than @xmath10 , then the one - dimensional lebesgue measure @xmath11 of its distance set , @xmath12 is positive , where @xmath13 denotes the euclidean distance .
falconer gave an example based on the integer lattice showing that the exponent @xmath10 is best possible .
the best results currently known , culminating almost three decades of efforts by falconer @xcite , mattila @xcite , bourgain @xcite , and others , are due to wolff @xcite for @xmath14 and erdoan @xcite for @xmath15 .
they prove that @xmath16 if @xmath17 it is natural to consider related problems , where distances determined by @xmath2 may be replaced by other geometric objects , such as triangles @xcite , volumes @xcite , angles @xcite , @xcite , and others .
generally , if @xmath18 for some @xmath19 , we define a configuration set @xmath20 and ask how large @xmath21 needs to be to ensure @xmath22 . for example , in the distance problem , @xmath23 ; in the volume problem , @xmath24 ; in the angle problem , @xmath25 .
.125 in in this paper , we consider the problem of the distribution of radii of spheres determined by @xmath26-tuples of points from @xmath2 .
we say a sphere is determined by a @xmath26-tuple @xmath27 if it is the unique sphere passing through all the points @xmath28 .
we say a shpere is determined by a set @xmath2 if it is determined by a @xmath26-tuple @xmath29 .
let @xmath30 be the radius of the unique @xmath1-dimensinal sphere determined by @xmath27 and it equals @xmath31 if such a sphere does not exist or it is not unique .
we obtain two types of results .
first , we estimate how often a neighborhood of a given radius occurs , in the sense defined below .
second , we find the optimal dimension such that the lebesgue measure of the set of radii is positive .
our main geometric results are the following .
[ main ] let @xmath32 be compact and @xmath33 be a frostman measure on @xmath2
. then @xmath3 implies @xmath34 where the implicit constant is uniform in @xmath35 on any bounded set .
.125 in moreover , @xmath3 implies @xmath36 when @xmath37 , this result is sharp in the sense that does not generally hold when @xmath38 .
in contrast to the incidence result , using mattila s classical estimate on the dimension of intersections ( see theorem [ mat84 ] ) , one can prove that @xmath39 it s the optimal result because there is no unique @xmath1-dimensional sphere passing through @xmath40 points in a hyperplane .
however , one can never get this bound by improving the incidence result above due to its sharpness .
.125 in we also prove an intersection result where rotations and translations are replaced by dilations and translations ( see theorem [ interthm ] ) . from this intersection theorem
we deduce the following . [ intercor ] given @xmath0 with @xmath7 , then for a.e .
@xmath5 , @xmath41 where @xmath42 is the @xmath1-dimensional sphere with center @xmath6 and radius @xmath43 .
the bound @xmath44 is sharp because a hyperplane can never determine a @xmath1-dimensional sphere of finite radius . .125 in * notation .
* throughout the paper , @xmath45 means that there exists @xmath46 such that @xmath47 .
@xmath48 for @xmath49 , @xmath50 . for a measure @xmath51 on @xmath52 and a function @xmath53 on @xmath52 , @xmath54 is the measure on @xmath55 induced by @xmath53 .
@xmath56 is the fourier transform of the measure @xmath51 .
.125 in the author wishes to thank professor alex iosevich for suggesting this problem and comments that helped improve the manuscript .
.125 in in @xcite , grafakos , greenleaf , iosevich , and palsson develop the following general mechanism to solve falconer - type problems .
.125 in we say @xmath57 is translation invariant
if it can be written as @xmath58 [ t1 ] suppose @xmath57 is translation invariant and for some @xmath59 , @xmath60 where @xmath61 is the natural measure on @xmath62 and the implicit constant is uniform in @xmath35 on any bounded set .
then @xmath63 implies @xmath64 where @xmath33 is a frostman measure on @xmath2 and the implicit constant is uniform in @xmath35 in any bounded set .
it follows that the @xmath65-dimensional lebesgue measure @xmath66 .
.125 in since @xmath67 is translation invariant and it can be written as @xmath68 , by theorem [ t1 ] it suffices to show all the three inequalities in hold for the natural measure @xmath69 on @xmath70 .
observe that @xmath71 hence @xmath72 where @xmath73 is a set of measure @xmath31 .
let @xmath33 be the natural probability measure on @xmath74 and @xmath75 be some smooth cut - off function which may vary from line to line .
by changing variables as , @xmath76 by stationary phase @xcite , @xmath77 and @xmath78 hence @xmath79 .125 in for @xmath80 and @xmath81 , after changing variables as above we have @xmath82 by a similar argument , @xmath83 which completes the proof of theorem [ main ] . .25 in .125 in
if @xmath153 for some @xmath5 , by the compactness of @xmath2 , it suffices to consider the case that @xmath154 is bounded and on any line passing through @xmath6 there is at most one point of @xmath154 .
.125 in let @xmath130 denote the surface measure on @xmath154 .
let @xmath155 be a partition of unity on @xmath154 such that in the support of each @xmath156 , @xmath154 has a local coordinate system @xmath157 .
thus we have a well - defined coordinate system for the cone @xmath158 .
we can also extend @xmath156 to @xmath159 by setting @xmath160 . by changing variables @xmath161 in each @xmath159
, we have @xmath162 where @xmath163 are smooth cut - off functions .
.125 in since @xmath148 , for every @xmath132 , there exists a measure @xmath51 on @xmath2 such that the @xmath164-energy @xmath165 .
let @xmath166 .
define measures @xmath167 on @xmath168 and @xmath169 on @xmath170 by @xmath171 where @xmath172 , @xmath173 and @xmath174 .
.125 in let @xmath175 where @xmath176 and @xmath177 everywhere .
[ lem2 ] under notations above , @xmath178 denote @xmath179 , @xmath180 and @xmath181 . from lemma [ lem2 ] , @xmath182 for a.e . @xmath183 .
then by , , for @xmath184 , @xmath185 therefore , @xmath186 it follows that for a.e .
@xmath5 , @xmath187 .
hence for a.e .
@xmath5 , @xmath188 and @xmath189 for a.e .
since @xmath191 is independent of @xmath192 , by choosing a sequence @xmath193 , we complete the proof of theorem [ interthm ] . .25 in
.125 in when @xmath14 , theorem [ main ] says @xmath84 implies , more precisely @xmath85 where @xmath33 is a frostman measure on a compact set @xmath86 and the implicit constant is uniform in @xmath35 on any bounded set .
now we will show @xmath87 is sharp for with a counterexample motivated by mattila @xcite .
.125 in without loss of generality , fix @xmath88 .
let @xmath89 $ ] denote the cantor set of dimension @xmath90 and @xmath33 denote the natural probability measure on @xmath91 .
let @xmath92\ ] ] and extend @xmath33 to @xmath2 in the natural way .
.25 in .25 in let @xmath93 .125 in when @xmath94 , for all @xmath95 , the angle between the @xmath96-axis and the vector @xmath97 is very small .
therefore we can pick a @xmath98 rectangle in @xmath99 such that its @xmath100-edges are parallel to the @xmath96-axis .
( see the figure above ) .
.125 in if @xmath6 changes continuously , the @xmath98 rectangle translates continuously without any rotation .
then there exsit an @xmath101 such that one of its @xmath100-edges lies on a line @xmath102 for some @xmath103 . by the construction of @xmath2 , for all @xmath104 , @xmath105 hence @xmath106 which implies that when @xmath107 , fails .
.125 in it follows that for @xmath38 , is not generally true , which proves the sharpness arguement of theorem [ main ] .
the sharpness of does nt mean @xmath87 is the best possible for radii problem , but for the method we use , it can not be , generally , improved . the example above can not show the sharpness in higher dimensions .
for example , in @xmath108 , the rectangle we pick will become a @xmath109 rectangle .
if we still construct a set like @xmath110 , we will have a lower bound @xmath111 for .
in nontrivial cases ( i.e. @xmath112 ) it is always true that @xmath113 , which does not contradict the upper bound .
in fact , in many relavant problems , a similar example can show the sharpness in @xmath14 but fail in @xmath114 ( see , e.g. @xcite , @xcite ) . .25 in
.125 in given @xmath115 , we consider the behavior of the intersection of @xmath116 , where @xmath117 is some family of transformations .
mattila ( @xcite , @xcite ) proves a general intersection theorem for orthogonal transformations .
[ mat84 ] in @xmath52 , let @xmath118 and @xmath119 . if @xmath120 are borel sets with @xmath121 , then for @xmath122 almost all @xmath123 , @xmath124 where @xmath122 is the haar measure on @xmath125 .
there are also intersection theorems on larger transformation groups , e.g. similarities ( @xcite , @xcite ) .
let @xmath126 be a closed subgroup of @xmath127 and let @xmath128 be a haar measure .
let @xmath2 and @xmath129 be two @xmath130-compact subsets of @xmath52 . then for @xmath128-almost all @xmath131 and @xmath132 , @xmath133 from theorem [ mat84 ] , we know when @xmath14 , for every @xmath134 , there exists some @xmath135 such that @xmath136 . hence holds for @xmath14 . in higher dimensions
it is followed by the following lemma .
[ indu ] suppose @xmath137 and @xmath138 , then @xmath129 uniquely determines @xmath74 , i.e. @xmath74 is the only sphere which contains all the points of @xmath129 .
it is followed by induction . for @xmath14
, it s trivial because @xmath129 has at least three points .
suppose it holds in @xmath139 .
for @xmath140 with @xmath141 , there exists a hyperplane @xmath142 such that @xmath143 ( see , e.g. @xcite
. then @xmath144 determines the lower dimensional sphere @xmath145 .
hence @xmath129 determines @xmath146 because there is at least one point in @xmath147 .
note all the intersection results above try to determine when the translation set has positive lebesgue measure .
now let us consider when the dilation set has positive lebesgue measure .
.125 in [ interthm ] suppose @xmath0 is compact with @xmath148 and @xmath149 is a smooth hypersurface with nonzero gaussian curvature .
then @xmath150 holds for a.e .
@xmath151 in particularly , letting @xmath152 , theorem [ intercor ] follows from theorem [ interthm ] and lemma [ indu ] . .25 in
.125 in from the the well - known equality @xmath194 ( see , e.g. @xcite ) and plancherel , we have @xmath195 a. greenleaf and a. iosevich , _ on triangles determined by subsets of the euclidean plane , the associated bilinear operators and applications to discrete geometry _ , analysis and pde , vol 5 , no . 2 , 2012 .
|
classical falconer distance conjecture states if set @xmath8 hausdorff dimension greater than @xmath10 one - dimensional lebesgue measure @xmath11 distance @xmath12 positive @xmath13 denotes euclidean distance falconer example exponent @xmath10 best best results three decades efforts falconer mattila bourgain due to wolff @xcite for @xmath14 erdoan @xcite for @xmath15 prove @xmath16 @xmath17 natural to consider related problems distances determined by @xmath2 may be replaced by other geometric objects triangles volumes angles define configuration set @xmath20 ask how large @xmath21 to ensure @xmath22 distance volume angle problem paper consider distribution of radii of spheres determined by @xmath26-tuples points from @xmath2 sphere determined by @xmath26-tuple if unique passing through points @xmath28 determined by @xmath2 if determined by @xmath26-tuple @xmath29@xmath30 radius of unique @xmath1-dimensinal sphere determined by @xmath27 equals @xmath31 if sphere obtain two results estimate often neighborhood of given radius occurs find optimal dimension lebesgue measure of radii positive main geometric results @xmath32 compact @xmath33 frostman measure on @xmath2 @xmath3 implies @xmath34 implicit constant uniform in @xmath35 on bounded set @xmath3 implies @xmath36 when @xmath37 result sharp not hold when @xmath38 mattila s classical estimate dimension intersections prove @xmath39 optimal result no unique @xmath1-dimensional sphere passing through @xmath40 points in hyperplane get bound by improving incidence result due to sharpness prove intersection result where rotations translations replaced by dilations translations deduce @xmath0 with @xmath7 @xmath5 @xmath41 @xmath42 is @xmath1-dimensional sphere with center @xmath6 radius @xmath43 bound @xmath44 sharp hyperplane can determine @xmath1-dimensional sphere of finite radius @xmath45 means exists @xmath46 @xmath47@xmath48 @xmath49 @xmath50 measure @xmath51 @xmath52 function @xmath53 @xmath54 measure @xmath55 @xmath53 @xmath56 fourier transform measure @xmath51 professor alex iosevich problem comments manuscript @xcite grafakos greenleaf iosevich palsson mechanism solve falconer - type problems @xmath57 translation invariant written @xmath58 @xmath59 @xmath60 @xmath61 natural measure @xmath62 implicit constant uniform @xmath35 bounded set @xmath63 implies @xmath64 @xmath33 frostman measure @xmath2 implicit constant uniform @xmath35 bounded set @xmath65-dimensional lebesgue measure @xmath66 @xmath67 translation invariant written @xmath68 show three inequalities natural measure @xmath69 @xmath70 @xmath71 @xmath72 @xmath73 measure @xmath31 @xmath33 natural probability measure @xmath74 @xmath75 smooth cut - off function vary line line changing variables @xmath76 stationary phase @xcite @xmath77 @xmath78 @xmath79125 @xmath80 @xmath81 changing variables @xmath82 similar argument @xmath83 completes proof theorem @xmath153 @xmath5 compactness @xmath2 consider @xmath154 bounded line @xmath6 one point @xmath154 @xmath130 denote surface measure @xmath154 @xmath155 partition unity @xmath154 support @xmath156 @xmath154 local coordinate system @xmath157 well - defined coordinate system cone @xmath158 extend @xmath156 to @xmath159 setting @xmath160 changing variables @xmath161 each @xmath159 @xmath162 @xmath163 smooth cut - off functions @xmath148 @xmath132 measure @xmath51 on @xmath2 @xmath164-energy @xmath165 @xmath166 define measures @xmath167 @xmath168 @xmath169 @xmath170 @xmath171 @xmath172 @xmath173 @xmath174 @xmath175 @xmath176 @xmath177 @xmath178 denote @xmath179 @xmath180 @xmath181 @xmath182 @xmath183 @xmath184 @xmath185 @xmath186 follows @xmath5 @xmath187@xmath5 @xmath188 @xmath191 independent of @xmath192 choosing sequence @xmath193 complete proof of theorem.25 .125 @xmath14 theorem @xmath84 implies @xmath85 @xmath33 frostman measure compact set @xmath86 implicit constant uniform @xmath35 bounded set show @xmath87 sharp counterexample mattila loss generality fix @xmath88 @xmath89 denote cantor set dimension @xmath90 @xmath33 natural probability measure @xmath91 @xmath92 extend @xmath33 to @xmath2 natural way @xmath93 @xmath94 @xmath95 angle between @xmath96-axis vector @xmath97 small pick @xmath98 rectangle @xmath99 @xmath100-edges parallel to @xmath96-axis figure @xmath6 changes continuously @xmath98 rectangle translates continuously without rotation @xmath101 @xmath100-edges on line @xmath102 @xmath103 construction @xmath2 @xmath104 @xmath105 @xmath106 implies @xmath107 fails @xmath38 not generally true proves sharpness arguement of theorem mainsharpness mean @xmath87 best for radii problem improved example show sharpness higher dimensions in @xmath108 rectangle @xmath109 rectangle construct set like @xmath110 lower bound @xmath111 nontrivial cases @xmath112 always true @xmath113 contradict upper bound similar example show sharpness in @xmath14 fail in @xmath114 @xcite .25 in .125 @xmath115 consider behavior intersection of @xmath116 @xmath117 family of transformations proves general intersection theorem for orthogonal transformations in @xmath52 @xmath118 @xmath119 @xmath120 borel sets with @xmath121 @xmath122 @xmath123 , @xmath124 @xmath122 haar measure on @xmath125 intersection theorems on larger transformation groups similarities @xcite let @xmath126 closed subgroup of @xmath127 @xmath128 haar measure @xmath2 and @xmath129 @xmath130-compact subsets of @xmath52 @xmath128-almost @xmath131 @xmath132, @xmath133 theorem @xmath14 every @xmath134 some @xmath135 @xmath136holds for @xmath14 higher dimensions followed by lemma @xmath137 @xmath138 @xmath129 determines @xmath74 only sphere contains points @xmath129 followed by induction @xmath14 trivial @xmath129 has three points holds in @xmath139 @xmath140 with @xmath141 hyperplane @xmath142 @xmath143 @xmath144 determines lower sphere @xmath145 @xmath129 determines @xmath146 one point in @xmath147 intersection results determine translation set positive lebesgue measure consider dilation set positive lebesgue measure @xmath0 compact with @xmath148 @xmath149 smooth hypersurface nonzero gaussian curvature @xmath150 holds for @xmath151 @xmath152 theorem intercor follows from theorem interthm lemma indu equality @xmath194 plancherel @xmath195 greenleaf iosevich triangles determined by subsets euclidean plane bilinear operators applications to discrete geometry analysis pde vol 5 no . 2 2012
| 0.427372
| 3,021
| 1,673
|
, Saving $0.1 in GPT-4.
|
18,735
|
we fit the seds of the tev blazar mkn 501 adopting the homogeneous synchrotron - self compton model to simultaneous x - ray and tev spectra recently become available .
we present detailed model spectra calculated with the above constraints and taking into account the absorption of tev photons by the ir background .
we found that the curved tev spectra can be naturally reproduced even without irb absorption .
taking irb absorption into account changes the required parameter values only slightly .
|
the study of blazars has been recently enriched by the detection of very high energy gamma rays ( energy in the tev range ) from a handful of nearby sources .
this discovery opens the possibility to effectively test and constrain the radiative mechanisms invoked to explain the emission from blazars and to investigate the physical conditions in relativistic jets . as discussed in tavecchio et al .
1998 ( hereafter t98 ) , the knowledge of the simultaneous x - ray and tev spectra of blazars allows to univocally find the set of physical parameters necessary within a homogeneous synchrotron self compton model with an electron distribution described by a broken power - law .
here we apply the ssc model to recent high quality , simultaneous x - ray and tev data of the well studied source mkn 501 and discuss the results .
tev spectra measured by the cat team during 1997 were recently reported in djannati - atai et al ( 1999 ) .
in particular the tev spectra associated with @xmath0sax observations of april 16 and 7 ( reported in pian et al 1998 ) are also discussed . for the large flare of april 16 , given the high flux level , it has been possible to obtain a good quality tev spectrum from a single observation which partially overlaps with the @xmath0sax observation .
on apr 7 , mkn 501 was less bright and the tev spectrum is obtained using different observations with similar tev fluxes and hardness ratios ( for more details see djannati - atai et al 1999 ) .
we combine these data with the x - ray spectra reported in pian et al .
( 1998 ) for the same days constructing quasi simultaneous seds for two epoches .
the tev spectra of mkn 501 are clearly curved .
it was suggested that this curvature could be the `` footprint '' of the absorption of tev photons by the infra red background ( irb , e.g konopelko et al .
1999 , but see the detailed discussion in vassiliev 1999 )
t98 obtained analytical relations for the ic peak frequency in klein - nishina ( kn ) regime adopting the step function approximation for the kn cross - section .
a comparison between these approximate estimates and the detailed numerical calculations with the full kn cross section shows that the analytical formulae for the ic peak frequency given in t98 can overestimate its value by a factor of 3 - 10 , depending on @xmath1 , the index of the steeper part of the electron distribution .
therefore , although the analytical estimates are useful as a guideline , it is very important for the study of the tev spectrum of blazars to use precise numerical calculations , like those discussed in the following .
+ ccccccc @xmath2 & b & @xmath3 & @xmath4 & @xmath5 & @xmath6 & @xmath1 + ( cm ) & ( g ) & & & & & + + 1.8 & 0.02 & 10 & @xmath7 & @xmath8 & 2 & 8 + + 3.5 & 0.005 & 10 & @xmath9 & @xmath10 & 2 & 8 + + 2.5 & 0.01 & 10 & @xmath11 & @xmath12 & 2 & 8 + we reproduced the sed of mkn 501 ( reported in fig.1 ) using the ssc model described in t98 and chiappetti et al 1999 . in a spherical region with radius r , magnetic field b and doppler factor @xmath13
, a population of electrons with energy distribution of the form @xmath14 emits synchrotron and ic radiation .
the ic spectrum is calculated with the full klein - nishina cross - section , using the formula derived by jones ( 1968 ) .
the seed photons for the ic scattering are those produced by the same electrons through the synchrotron mechanism .
for the case of the high state of mkn 501 we considered possible intervening absorption by the irb adopting the prescriptions for the _ low model _ discussed in stecker & de jager ( 1998 ) . in the calculation reported here we assume a typical radius of the emitting region of @xmath15 cm and a doppler factor @xmath16 . with this choice
the minimum variability timescale is of @xmath17 h ( see tab.1 for the parameters used ) .
it is useful to calculate the ic emission from electrons with different energy ranges .
these `` slices '' are reported in fig .
2 ( see figure caption for the detailed energy ranges ) .
it is interesting to note that , because of the kn cut at the high energy emission , the peak of the ic component is produced by electrons with lorentz factor below @xmath4 while the peak of the synchrotron component is produced by electrons at @xmath4 .
this effect has important consequences for the study of the x - ray / tev correlated variability ( see also maraschi et al .
the parameters adopted for the model are reported in table 1 .
our model indicates a rather low value for the magnetic field and a high @xmath4 ( see tab.1 ) .
the transition from the low state to the high state in mkn 501 is consistent with an increase of a factor of 2 in both @xmath4 and b and with an almost constant value of @xmath13 and @xmath18 .
these results are in agreement with a similar analysis of the april 16 flare by bednarek & protheroe ( 1999 ) : for a minimum timescale of 2.5 h they found that the tev spectrum can be well reproduced by @xmath19 and @xmath20 .
although some authors ( see konopelko et al .
1999 ) have recently proposed that the curvature of the tev spectrum of mkn 501 provides evidence for absorption by irb , the curvature could be intrinsic and related to the curved electron distribution necessary to fit the x - ray data .
our models show that a curved spectrum is a plausible explanation for the curvature . the introduction of the irb does not dramatically change the inferred physical parameters . as shown in fig.2 irb / no irb tev spectra are very similar up to 15 tev , while for higher energy the power - law spectrum of the no irb case is changed in an exponential profile .
therefore spectral data above 10 tev are needed in order to understand if irb absorption affects blazar spectra .
finally we note that in the theory of particle acceleration by shocks ( for a recent critical discussion see henri et al .
1999 ) the maximum lorentz factor of accelerated electrons , obtained equating acceleration time and cooling time , is given by @xmath21 , where we used the value of b we found in the high state of mkn 501 .
therefore our fit suggests that during the high activity states of mkn 501 the electrons can reach the maximum energy fixed by the balance between cooling and acceleration processes . in states of lower activity
the acceleration time could be longer and the condition @xmath22 ( where @xmath23 and @xmath24 are the escape time and the acceleration time respectively ) could prevent the electrons for reaching the maximum energy .
|
study of blazars enriched by detection high energy gamma rays from nearby sources discovery opens to test radiative mechanisms emission investigate physical conditions in relativistic jets in 1998 knowledge of simultaneous x - ray tev spectra of blazars find physical parameters within synchrotron self compton model apply ssc model to high quality simultaneous x - ray tev data of source mkn 501 discuss results tev spectra measured by cat team 1997 reported in djannati - atai et al 1999 with @xmath0sax observations of april 16 7 discussed large flare of april 16 high flux level good quality tev spectrum from single observation overlaps with @xmath0sax observation apr 7 mkn 501 less bright tev spectrum obtained using different observations with similar tev fluxes hardness ratios combine data with x - ray spectra in pian et al 1998 constructing quasi simultaneous seds for two epoches tev spectra of mkn 501 curved curvature absorption of tev photons by infra red background1999 discussion vassiliev 1999 t98 obtained analytical relations ic peak frequency klein - nishina kn regime step function approximation kn cross - section comparison approximate estimates detailed calculations full kn cross section shows formulae ic peak frequency t98 overestimate 3 - 10 depending on @xmath1 steeper electron distribution analytical estimates useful important for study tev spectrum blazars use precise numerical calculations @xmath2 g 1.8 & 0.02 + 3.5 & 0.005 8 + 2.5 & 0.01 reproduced sed of mkn 501 fig.1 ) using ssc model t98 chiappetti et al 1999 spherical region radius r magnetic field b doppler factor @xmath13 population electrons energy distribution form @xmath14 emits synchrotron ic radiation ic spectrum calculated with full klein - nishina cross - section formula jones ( 1968 ) seed photons for ic scattering produced same electrons synchrotron mechanism high state of mkn 501 considered possible intervening absorption by irb adopting prescriptions low model stecker & de jager ( 1998 )calculation assume typical radius emitting region @xmath15 cm doppler factor @xmath16 minimum variability timescale @xmath17 h tab.1 parameters calculate ic emission from electrons different energy ranges reported in fig . 2 kn cut high energy emission peak ic component produced by electrons lorentz factor below @xmath4 peak synchrotron component electrons at @xmath4 effect study x - ray / tev correlated variability et parameters model reported in table 1 model indicates low value magnetic field high @xmath4 transition from low to high state in mkn 501 consistent with increase factor of 2 in @xmath4 and b almost constant value @xmath13 and @xmath18 results agreement with analysis april 16 flare by bednarek & protheroe 1999 minimum timescale 2.5 h tev spectrum reproduced by @xmath19 and @xmath20 curvature tev spectrum mkn 501 absorption by irb related to curved electron distribution x - ray data models show curved spectrum plausible explanation for curvature introduction irb change inferred physical parameters fig.irb / no irb tev spectra similar up to 15 tev higher energy power - law spectrum changed spectral data above 10 tev needed irb absorption affects blazar spectra theory particle acceleration by shocks henri et al . 1999 maximum lorentz factor of accelerated electrons acceleration cooling time by @xmath21 high state mkn 501 suggests high activity states mkn 501 electrons reach maximum energy balance cooling acceleration lower activity acceleration time longer condition @xmath22 @xmath23 @xmath24 escape time acceleration time prevent electrons reaching maximum energy
| 0.263579
| 1,577
| 795
|
, Saving $0.0 in GPT-4.
|
18,749
|
instead of using a frequency dependent refractive index , we propose to use the extinction theorem to describe reflection and transmission of an ultrashort pulse passing through the boundary . when the duration of the pulse is comparable with the relaxation time , the results differ significantly from those given by the traditional method , especially if the carrier frequency is close to an absorbtion line .
we compare the two approaches using the data of gaas in the infrared domain .
it is well known that the reflection and refraction of an electromagnetic wave on the boundary of a material system is a light scattering phenomenon .
the atoms in the medium are brought into oscillations by the incoming wave , and then secondary waves are generated by the induced atomic dipoles .
the transmitted wave is the result of superposition of the scattered wave and the external field , while the reflected wave is a result of backscattering .
one side of the process , the solution of the quantum mechanical equations of motion of the perturbed atoms ( or the forced oscillations in the classical model ) is treated in most textbooks in order to calculate the frequency dependence of the polarizability and the dielectric constant .
the other side of the problem , the actual scattering process is usually replaced by phenomenological boundary conditions
fresnel formulas for the macroscopic fields .
one then uses a frequency dependent index of refraction , and calculates the response for each spectral component . instead of that traditional approach which neglects the transient regime of the forced oscillations ,
we use a procedure that exhibits the actual physical process .
this is the method of integral equations , known also as the ewald - oseen extinction theorem in the stationary situation @xcite .
we are going to consider here the one - dimensional variant of this theory applied to ultrafast pulses .
we note that local field effects influence the coupled atom - field dynamics , therefore it can affect the reflection and transmission properties too . for weak fields
this leads only to a constant shift @xcite of the resonance frequencies , therefore we shall treat the problem here without this correction .
the extinction theorem has been applied for the resonant nonlinear case in our works @xcite but with the slowly varying amplitude approximation ( svea ) in time .
the first model calculation for a linear medium treating the full time development of a pulse without svea has been given by one of us @xcite .
we consider the boundary value problem for the transmission of a light pulse through a plane - parallel resonant layer consisting of polarizable atoms .
let the incoming field be a linearly polarized plane wave : @xmath0 we restrict ourselves here to the case of normal incidence .
then the problem is one dimensional in space , thus the macroscopic field obeys the inhomogeneous wave equation : @xmath1 in the situation considered here , @xmath2 is different from zero in a slab placed between @xmath3 and @xmath4 , and the solution of eq.([waveq ] ) has the form@xcite : @xmath5 here @xmath6 is the solution of the homogeneous equation corresponding to ( [ waveq ] ) , and it is identified with the incoming wave , while the second term is a scattered wave which is the superposition of outgoing elementary waves originating in different @xmath7 planes . given an incoming wave , the transmitted wave is determined by the whole solution ( [ inteq ] ) at @xmath8 , while the reflected wave is described only by the second , integral term at @xmath9 . as we are considering the linear case ,
the dynamics of the polarization @xmath10 in the medium can be determined by a first order perturbation theory .
supposing that at the beginning the system is in its ground state , the dipole moment density induced by the field is given by the following expression : @xmath11 \label{pert}\end{aligned}\ ] ] where @xmath12 is the number density of the dipoles in the medium , @xmath13 is the transition dipole matrix element between the ground state and the @xmath14-th excited level , @xmath15 and @xmath16 are the corresponding transition frequencies and decay constants , and @xmath17 is the field strength at the position @xmath18 of the atomic dipole . in the ordinary theory of dispersion the time dependence of the electric field
, @xmath19 is taken to be @xmath20 , and after performing the integration in ( [ pert ] ) the terms containing @xmath21 are omitted , as they are rapidly decaying . in this way one obtains a frequency dependent susceptibility @xmath22 and refractive index @xmath23 .
our main point is that if the duration of the whole pulse is shorter than the decay time of the terms which contain @xmath24 , this traditional approach fails , and all the terms following from ( [ pert ] ) should be kept . in the case of an optically thin layer ,
the calculations can be simplified .
then @xmath25 , the spatial variation of the polarization can be neglected , and instead of integrating in eq.([inteq ] ) we can use the mean value of the time derivative of the polarization . in this thin medium case one can derive a system of coupled differential equations for the polarization components , @xmath26@xmath27 for an arbitrary thick layer one has to solve the coupled integro - differential equations ( [ inteq ] ) and ( [ pert ] ) , with a numerical method .
we have performed calculations , based on the theory given here and compared the results with those of the traditional method of fresnel formulas .
for definitness we have used the data@xcite of gaas in the infrared domain .
two resonant frequencies and the with constants @xmath28 , @xmath29 , @xmath30 , @xmath31 , ( @xmath32 ) , and @xmath33 , with @xmath34 , @xmath35 .
reproduced very well the measured@xcite stationary dispersion and absorbtion of the material in the range @xmath36 . for the sake of simplicity
we have chosen the following form of the incoming pulse @xmath37 , @xmath38 . as we are considering the ultrafast regime we have chosen @xmath39 .
the shape of this incoming pulse is shown in fig .
1(a ) below .
the solution of eq.([diffegy ] ) corresponding to this incoming pulse and to the initial conditions @xmath40 , @xmath41 , @xmath42 can be given for the thin layer by an exact but lengthy formula . far from resonance @xmath43 ,
@xmath44 both methods predict the same results . on the other hand significant differences
can be seen for pulses with @xmath45 , i.e. close to resonance , but still in the linear regime .
the calculations were performed with @xmath46 , for layers of different thicknesses of the order of the central wavelength , @xmath47 .
fig .
1 shows the results obtained for an optically thin layer @xmath48 . in that case
we have solved the system of equations ( [ diffegy ] ) .
the numerical solution of eqs .
( [ inteq ] ) and ( [ pert ] ) are shown in fig . 2 for a layer of thickness of @xmath49 .
the continuous lines are the results obtained from the present transient extinction theory , while the dashed lines are the amplitudes obtained by using the frequency dependent index of refraction .
it can be seen , that some of the overall characteristics of the response obtained by the two different methods are similar .
both treatments predict significant broadening of the reflected and transmitted pulses , since the decay time , @xmath50 is long compared with the duration of the excitation . in addition , till the end of the exciting pulse , @xmath51 , the reflected amplitudes are very similar except for a little phase shift .
the transmitted pulse appears in both cases with the same expected delay that can be calculated as @xmath52 , where @xmath53 is the the group velocity @xcite .
this gives @xmath54 in good agreement with the numerical result .
we note , in addition , that both methods yielded precursors @xcite in the transmitted fields appearing at @xmath55 , not seen in the figures , because of their smallness . in the case of the thin layer
the forms of the fields are quite similar , see fig 1 . on the other hand significant differences
are seen in the time dependences of the transmitted and reflected pulses calculated by the two different treatments in layers of thickness comparable with @xmath56 .
we attribute these differences in the amplitudes , as well as in the phases to the approximative character of the time dependence of the polarization in the fourier method , i.e. to the omission of the transients at the beginning and at the end of the excitation .
this part is non - negligible if the duration of the process is comparable with the relaxation time since it represents an important contribution to the elementary waves generated by the induced dipoles . in conclusion
, we find that for ultrafast pulses the properties of a dispersive medium must be calculated by taking care of the transient response of the system .
this can be done best by using a fully time dependent treatment as proposed in the present work .
we thank z. bor and z. horvth for stimulating discussions .
this work was supported by the hungarian scientific research fund ( otka ) under contracts t022281 and t32920 .
9 m. born and e. wolf , _ principles of optics _ 6th ed .
( pergamon , oxford , 1989 ) .
m.g .
benedict , a.m. ermolaev , v.a .
malyshev , i.v .
sokolov , and e.d .
trifonov , _ superradiance _
( iop , bristol , 1996 ) .
m.g .
benedict , e.d .
trifonov , coherent reflection as superradiation on the boundary of a resonant medium " , phys
. rev .
a * 38 * , 2854 - 2862 ( 1988 ) .
m.g .
benedict , v. a. malyshev , e.d .
trifonov , a. i zaitsev reflection and transmission of ultrashort light pulses through a thin resonant medium : local field effects `` phys .
rev .
a * 43 * , 3845 - 3853 ( 1991 ) .
e. d. palik , ' ' gallium arsenide `` in _ handbook of optical constants of solids _
e. d. palik , ed .
( academic press , 1985 ) , pp .
429 - 443 .
m.g .
benedict , ' ' on the reflection and transmission of femtosecond pulses " , proceedings of spie * 3573 * 486 - 489 ( 1998 ) .
l. brillouin , _ wave propagation and group velocity _
( academic press , new york and london , 1960 ) . k. e. oughstun , o. c. sherman , _ electromagnetic pulse propagation in causal dielectrics _ ( springer - verlag , berlin , 1994 ) .
| 0.000892
| 0
| 0
|
, Saving $0.0 in GPT-4.
|
||
18,754
|
some recent works have introduced a quantum twist to the concept of complementarity , exemplified by a setup in which the which - way detector is in a superposition of being present and absent .
it has been argued that such experiments allow measurement of particle - like and wave - like behavior at the same time .
here we derive an inequality which puts a bound on the visibility of interference and the amount of which - way information that one can obtain , in the context of such modified experiments . as the wave - aspect can only be revealed by an ensemble of detections , we argue that in such experiments , a single detection can contribute only to one subensemble , corresponding to either wave - aspect or particle aspect .
this way , each detected particle behaves either as particle or as wave , never both , and bohr s complementarity is fully respected .
|
the two - slit experiment carried out with particles is a testbed of various foundational ideas in quantum theory .
it has been used to exemplify wave - particle duality and bohr s complementarity principle @xcite .
the two - slit experiment captures the essence of quantum theory in such a fundamental way that feynman went to the extent of stating that it is a phenomenon which has in it the heart of quantum mechanics ; in reality it contains the _ only _ mystery " of the theory @xcite .
neils bohr had stressed that the wave - nature of particles , characterized by interference , and the particle - nature , characterized by the knowledge of which slit the particle passed through , are mutually exculsive .
he argued that in a single experiment , one could see only one of these two complementary properties at a time .
niels bohr elevated this concept to the status of a separate principle , the principle of complementarity @xcite .
two - slit interference experiment with a which - way detector and the mach - zehnder interferometer have been extensively used to study complementarity .
it has been demonstrated in many different kinds of experiments , that if one obtains the which - path information about a particle , the interference pattern can not be obtained .
conversely , if the interference pattern is obtained , the which - path information is necessarily destroyed . in some clever experiments ,
the experimenter can choose to obtain the which - path information , much after the particle has been registered on the screen @xcite .
delayed - choice " experiments present several conceptual difficulties
. nevertheless , it is generally accepted that in an experiment , only one of the two aspects can be seen at a time , and that the two are mutually exclusive .
recently a new kind of experiments to test complementarity have been proposed @xcite and carried out @xcite , where the which - way detector is a quantum device which is prepared in a superposition of being present and absent .
a typical such experiment is shown in fig .
[ qcsetup ] . here ,
if the beamsplitter bs2 is absent , the two photon detectors will give which - way information about every photon detected .
the bs2 is present , the two paths are mixed and which - way information is lost .
however , the phases of the two paths can be tuned in such a way that they destructively interfere at ( say ) detector @xmath0 .
detector @xmath0 not detecting any photons indiciates interference .
now the setup is modified in such a way that bs2 is in a superposition of two locations , one of which is in the path of the photon , and the other is outside it .
if @xmath1 represents the state of bs2 when it is in the path of the photon , and @xmath2 represents the state when it is outside it , the argument is that the combined state of bs2 and the photon can be written as @xcite @xmath3 where @xmath4 represents the state of the photon where it behaves like a particle and @xmath5 represents its state when it behaves like a wave .
the claim is that the wave and particle nature of the photon is present at the same time , in a superposition , which allows one to get some more information as compared to the conventional which - way experiments @xcite .
here we carry out a detailed analysis of a _ gedanken _ setup which represents a typical such experiment , to explore what information such experiments can yield .
consider a conventional two slit experiment with particles , with a single - bit which - way detector sitting in the path of slit a ( see fig .
[ q2slit ] ) .
the which - way detector is initially in the state @xmath6 .
if the particle passes through slit a , the which - way detector comes to a state @xmath7 .
corresponding to the particle passing through slit b , the detector remains in the state @xmath6 .
we can define the distinguishability of the two paths by @xmath8 , where @xmath7 and @xmath6 are assumed to be normalized , but not necessarily orthogonal to each other . clearly , for completely orthogonal @xmath7 and @xmath6 , @xmath9 , and for identical @xmath7 and @xmath6 , @xmath10 .
if @xmath7 and @xmath6 are orthogonal to each other , one can find an observable of the detector , for which the two states can give two distinct eigenvalues .
measuring such an observable , one can find out which of the two slits the particle went through .
next we allow our which - way detector to be a quantum object in the sense that it can be in a superposition of two locations .
the state @xmath11 corresponds to the detector being in front of slit a , and @xmath12 corresponds to it being away from slit a. let the detector be prepared in an intial state @xmath13 where @xmath14 is a real constant between 0 and 1 .
the value of @xmath14 being 1 means that the which - way detector is in front of slit a , and being 0 means it is away from the slit
. the states @xmath15 can give which - way information only when the which - way detector is in front of slit a. keeping this in mind , we define the which - way distinguishability as @xmath16 here we have assumed that when a particle passes through the double slit , the path through slit a gets correlated to @xmath7 , and that through slit b get correlated to @xmath6 . for the state given by ( [ phi0 ] ) , distinguishability takes the form @xmath17 as one can see , the two paths will be fully distinguishable when @xmath18 and @xmath19 .
let us now assume that a particle traveling along the z - direction passes through the double - slit , with a slit separation @xmath20 , and also interacts with a which - path detector . through a unitary process
, the detector states get correlated with the states of the particle coming out of the two slits .
the combined state of the particle and the which - path detector , when the particle emerges from the double - slit ( time @xmath21 ) , is assumed to have the form @xmath22 where @xmath23 .
here we assume the states of the particle coming out of the slits to have a gaussian form , with a width @xmath24 , centered at @xmath25 .
we do not expicitly consider the dynamics of the particle in the z - direction .
we just assume that the wave - packets are moving in the positive z - direction with an average momentum @xmath26 , where @xmath27 is the dbroglie wavelength of the particle .
thus the distance @xmath28 travelled by the particle in a time @xmath29 is given by @xmath30 .
this can be rewritten as @xmath31 . after a time @xmath32 , the state of the particle and the detector evolves to @xmath33 where @xmath34^{-1/2}$ ] .
the probability of finding the particle at position @xmath35 on the screen is given by @xmath36 where @xmath37 .
writing @xmath38 as @xmath39 , and putting @xmath40 , the above can be simplified .
further , for simplicity we put @xmath41 , which reduces the above to @xmath42 eqn.([pattern ] ) represents an interference pattern with a fringe width given by @xmath43 for @xmath44 we get the familiar young s double - slit formula @xmath45 .
visibility of the interference pattern is conventionally defined as @xmath46 where @xmath47 and @xmath48 represent the maximum and minimum intensity in neighbouring fringes , respectively . in reality
, fringe visibility will depend on many things , including the width of the slits .
for example , if the width of the slits is very large , the fringes may not be visible at all .
maxima and minima of ( [ pattern ] ) will occur at points where the value of cosine is 1 and -1 , respectively .
the visibility can then be written down as @xmath49 since @xmath50 , we get @xmath51 using ( [ d ] ) the above equation gives a very important result @xmath52 eqn .
( [ duality ] ) can be considered as a quantitative statement of bohr s complementarity principle .
it sets a bound on the which - path distinguishability and the visibility of interference that one can obtain in a single experiment .
it is similar in spirit to the well - known englert - greenberger duality relation @xcite , but clearly different from it . in the context of the quantum twist to which - way experiments ,
if @xmath7 and @xmath6 are orthogonal , ( [ visibility ] ) tells us that the visibility @xmath53 can at the most be @xmath54 .
however , in that situation the path distinguishability @xmath55 , given by ( [ d ] ) , is @xmath14 .
so , even though the which - way detector is replaced by an equivalent quantum device , it does nt allow one to obtain simultaenously the which - path information and the interference , more precisely than ( [ duality ] ) . in the special case @xmath18
, the relation ( [ duality ] ) will describe the bounds on distinguishability and visibility in the _ conventional _ complementarity experiments .
if one were to correlate every particle detected on the screen with a measurement result on the states @xmath11 and @xmath12 , every click will either give a which - way information or it wo nt . only those clicks which do not yield which - way information
, will contribute to the interference pattern .
so , which - way information and interference remain mutually exclusive .
of course , one can obtain a fuzzy which - way information , but it will result in a fuzzy ( not sharp ) interference pattern .
we now describe a _ gedanken _ experiment based on the so - called quantum eraser @xcite , which also achieves which - way information and interference in the same experimental setup , although with some difference .
let there be a setup of two - slit experiment , with a one - bit which - way detector in front of one of the slits .
the state that comes out of the slit can be written as @xmath56 where @xmath15 are two orthonormal states of the which - way detector , and @xmath57 are the wave - packets emerging from slits a and b , respectively .
the probability of a particle falling at a position @xmath35 on the screen is given by @xmath58 which gives no interference because of the mutual orthogonality of @xmath15 .
measuring an observable , call it @xmath59 , of the which - way detector whose eigenstates are @xmath60 , in coincidence with detected particles , will give which - way information about each particle .
the particle nature is brought out in such measurements .
let us now imagine that there is another observable , call it @xmath61 , whose eigenstates are @xmath62 such that @xmath63 ) can be written as @xmath64 now if one measures the observable @xmath61 in coincidence with the detected particles , the particles in coincidence with @xmath65 will show an interference pattern , and those in coincidence with @xmath66 , will show a @xmath67-shifted interference pattern .
the wave nature is brought out in such measurements .
the measurement on the one - bit which - way detector can be done _
after _ the particle is detected , and one can choose to bring out either particle nature or wave nature . the wave nature and the particle nature are both present at the same time , until the measurement on the one - bit which - way detector is made .
this is an example of the so - called quantum eraser @xcite . now , suppose one randomly measures @xmath59 or @xmath61 in coincidence with the particles falling on the screen .
after detecting all the particles , one can separate out those which were in coincidence with @xmath59 and @xmath61 , respectively .
thus , particle nature and wave - nature can be explored in the same experiment .
the result is quite similar to what has been proposed and shown in refs .
the major way in which the scheme @xcite is different from our quantum eraser scheme is that in the former the choice between the particle nature and the wave nature is randomly made by the quantum nature of the position of the detector , whereas in the latter it is made by the experimenter . in both the schemes
, every single particle detected has to clearly follow either wave nature or particle nature .
another difference is that in the quantum eraser scheme the which - way information is always carried by the which - way detector , but can be erased " by the choice of the observable of the which - way detector which is measured . in the scheme of @xcite ,
the which - way information is there only with a probability ( say ) @xmath14 ; there is a probability @xmath54 that there is no which - way information .
in conclusion , we have theoretically analyzed the quantum twist to complementarity introduced recently in the context of some modified interference experiments .
we have derived a duality relation in the context of such experiments .
it puts a bound on the which - way information that one can extract , and the visibility of interference in the same experiment .
we emphasize that bohr s complementarity continues to hold , and should be viewed in the context of individual outcomes . in each outcome , one can either get which - way information , in which case particle nature will emerge , or the detection will contribute to the interference pattern , which shows wave nature .
although interference builds up after registering many particles , only those detections will contribute to interference for which no which - way information was found .
all those detections where which - way information is found , will not contribute to the interference pattern .
thus , which - way information and interference remain mutually exclusive , although in the new clever experiments @xcite both aspects can be seen in a single experimental setup .
it is always possible to do imprecise which - way measurement and get a fuzzy interference for the same particle .
but this was already known before , and has been the motivation for the englert - greeenberger duality relation .
lastly , the new experiments where a quantum device is added to the interference experiments , do help us understand bohr s complementarity principle better .
|
two - slit experiment with particles foundational ideas quantum theory wave - particle duality bohr s complementarity principle experiment captures essence quantum theory feynman heart of quantum mechanics contains mystery of theory bohr stressed wave - nature of particles interference particle - nature knowledge of slit particle mutually exculsive argued single experiment only one two complementary properties bohr elevated concept to separate principle principle of complementarity two - slit interference experiment with which - way detector mach - zehnder interferometer used to study complementarity demonstrated if obtains which - path information about particle interference pattern not be obtained if interference pattern obtained which - path information destroyed some experimenter can obtain which - path information after particle registered on screen delayed - choice experiments present conceptual difficulties accepted experiment only one of two aspects can be seen at time two mutually exclusive new experiments test complementarity proposed @xcite carried out which - way detector is quantum device prepared in superposition of present and absent typical experiment shown in fig . [ qcsetup ] if beamsplitter bs2 absent two photon detectors give information about every photon bs2 present two paths mixed information lost phases of two paths can be interfere at detector @xmath0 detector @xmath0 detecting photons indiciates interference setup modified bs2 in superposition of two locations one in path photon other outside it @xmath1 represents state bs2 in path photon @xmath2 outside combined state of bs2 and photon can be written as @xcite @xmath3 @xmath4 represents state photon like particle @xmath5 like wave claim wave and particle nature of photon present same in superposition allows more information to conventional - experiments @xcite detailed analysis of gedanken setup typical experiment information consider conventional two slit experiment with particles single - bit which - way detector in path of slit a fig . q2slit detector in state @xmath6 if particle passes through slit a detector comes to state @xmath7 particle through slit b detector remains in state @xmath6 define distinguishability two paths by @xmath8 @xmath7 @xmath6 normalized not orthogonal completely orthogonal @xmath7, @xmath9 identical @xmath7 @xmath10 if @xmath7 orthogonal observable detector two states give two distinct eigenvalues measuring observable which two slits particle went through which - way detector quantum object superposition two locations state @xmath11 in front of slit a @xmath12 away from slit a detector intial state @xmath13 @xmath14 constant between 0 and 1 value @xmath14 1 detector in front of slit a 0 away from slit states @xmath15 give which - way information when in front of slit a define which - way distinguishability as @xmath16 particle passes through double slit path through slit a correlated to @xmath7 slit b @xmath6 state ( [ phi0 ] ) distinguishability takes form @xmath17 two paths fully distinguishable when @xmath18 and @xmath19 particle traveling z - direction passes through double - slit @xmath20 interacts with which - path detectordetector states with particle two slits combined state particle detector emerges from double - slit form @xmath22 @xmath23 states particle gaussian form width @xmath24 centered at @xmath25 dynamics z - direction wave - packets positive z - direction average momentum @xmath26 @xmath27 is dbroglie wavelength particle distance @xmath28 travelled by particle in time @xmath29 given by @xmath30 rewritten as @xmath31 after @xmath32 state particle detector evolves to @xmath33 @xmath34^{-1/2}$ probability of finding particle at position @xmath35 by @xmath36 @xmath37 writing @xmath38 as @xmath39 @xmath40 simplified @xmath41 reduces to @xmath42 represents interference pattern with fringe width by @xmath43 for @xmath44 young s double - slit formula @xmath45 visibility of interference pattern defined as @xmath46 @xmath47 and @xmath48 represent maximum and minimum intensity in neighbouring fringes fringe visibility on width slitsif width slits large fringes visible maxima minima pattern occur at cosine 1 and -1 visibility written as @xmath49 @xmath50 get @xmath51 using [ d ] ) equation gives important result @xmath52 eqn [ duality ] ) quantitative statement of bohr s complementarity principle sets bound on which - path distinguishability visibility interference in single experiment similar to englert - greenberger duality relation @xcite different quantum twist which - way experiments if @xmath7 and @xmath6 orthogonal visibility ] visibility @xmath53 most be @xmath54 path distinguishability @xmath55 is @xmath14 which - way detector replaced by quantum device allow obtain simultaenously which - path information interference precisely duality in special case @xmath18 relation [ duality ] bounds on distinguishability visibility in conventional complementarity experiments every particle detected with measurement result states @xmath11 and @xmath12 every click which - way information or clicks yield which - way information contribute to interference pattern which - information interference mutually exclusive obtain fuzzy which - way information in fuzzy interference patterndescribe experiment quantum eraser @xcite achieves which - way information interference same setup difference two - slit experiment one - bit which - way detector in front of state slit written as @xmath56 @xmath15 orthonormal states of detector @xmath57 wave - packets from slits a and b probability of particle falling at position @xmath35 screen given by @xmath58 no interference orthogonality of @xmath15 measuring observable @xmath59 detector eigenstates @xmath60 with detected particles which - way information about each particle particle nature brought out in measurements imagine another observable @xmath61 eigenstates @xmath62 @xmath63 written as @xmath64 measures observable @xmath61 with detected particles particles with @xmath65 show interference pattern with @xmath66 @xmath67-shifted interference pattern wave nature brought out in measurements measurement on one - bit which - way detector after particle detected choose bring out particle nature or wave nature wave nature particle nature present until measurement made example of quantum eraser @xcite suppose one randomly measures @xmath59 or with particles on screen after detecting particles those with particle nature and wave - nature explored in same experiment result similar to proposed shown in refs scheme @xcite different from quantum eraser scheme former choice between particle nature and wave nature randomly made by quantum position detector latter by experimenter every particle detected follow either wave nature or particle nature in quantum eraser scheme which - way information carried by detector can be erased by choice observable detector in @xcite which - way information there only with probability @xmath14 ; probability @xmath54 no which - way information theoretically analyzed quantum twist to complementarity modified interference experiments derived duality relation bound on which - way information and visibility of interference in same experiment bohr s complementarity continues viewed in context of individual outcomes each outcome can get which - way information particle nature or detection to interference pattern wave nature interference builds up after registering many particles only those detections contribute to interference for no which - way information founddetections which - way information contribute to interference pattern information interference mutually exclusive new experiments @xcite both aspects seen in single setup possible imprecise - way measurement fuzzy interference for same particle known motivation for englert - greeenberger duality relation new experiments quantum device added to interference help understand bohr s complementarity principle
| 0.49765
| 3,090
| 1,568
|
, Saving $0.1 in GPT-4.
|
18,765
|
we present optical spectroscopy of projected qso pairs to investigate the and the absorption features imprinted on the spectrum of the background object by the gaseous halo surrounding the foreground qso .
we observed 13 projected pairs in the redshift range @xmath0 spanning projected separations between 60kpc and 120kpc . in the spectra of the background qsos , we identify intervening absorption systems associated to the foreground qsos in 7 out of 10 pairs , and 1 absorption system out of 3 is found for .
the distribution of the equivalent width as a function of the impact parameter shows that , unlike the case of normal galaxies , some strong absorption systems ( @xmath11 ) are present also beyond a projected radius of @xmath2kpc . if we take into account the mass of the galaxies as an additional parameter that influence the extent of the gaseous haloes , the distribution of the absorptions connected to the qsos is consistent to that of galaxies . in the spectra of the foreground qsos we do not detect any absorption lines originated by the gas surrounding the qso itself , but in 2 cases these features are present for .
the comparison between the absorption features observed in the transverse direction and those along the line of sight allows us to comment on the distribution of the absorbing gas and on the emission properties of the qsos .
+ based on observations undertaken at the european southern observatory ( eso ) very large telescope ( vlt ) under programmes 085.b-0210(a ) and 086.b-0028(a ) .
[ firstpage ] galaxies : haloes quasars : general quasars : absorption lines
|
absorption lines in quasar ( qso ) spectra provide a unique tool for probing the gas and dust content of foreground galaxies and of intergalactic medium at almost any redshift . since the works of @xcite and @xcite these features are considered to be linked to large gaseous haloes around galaxies extending up to @xmath3kpc ( see the review by * ? ? ?
despite a number of studies aimed at connecting metal absorption systems ( in particular and ) with galaxy properties ( e.g. , * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ) , the origin of the absorbing gas is still unclear .
however , in the last decades , it is progressively emerging a scenario in which the stronger absorption lines ( rest frame equivalent width @xmath4 ) are linked to winds driven by the star formation activity , while the weaker one are associated with inflows of gas onto the host galaxies .
for instance , @xcite , stacking sdss images of 2800 absorbers with @xmath5 , show that the stronger absorption systems reside preferentially in blue star forming galaxies , while the weaker ones in red passive galaxies .
this result was confirmed by @xcite in a sample of 8500 absorption systems present in the sdss qso spectra .
they discovered a strong correlation between the of the absorbers and the luminosity of the associated [ ] lines , considered as a tracer of the star formation rate ( sfr ) of galaxies .
@xcite investigated the evolution of the number density of @xmath6 strong absorption systems and found rough correspondence with the evolution of the star formation rate at redshifts between @xmath7 and @xmath8 , suggesting a link between the two phenomena .
recently @xcite reported clear evidence that ultrastrong absorbers ( @xmath9 ) reside in galaxies with very high sfrs .
in addition to that , spectroscopic observations of highly star forming galaxies reveals the presence of blueshifted absorption features , further supporting the outflowing winds scenario @xcite .
the existence of a link between galaxy luminosity / halo mass and strength of absorption features , expected in the infalling scenario , is still debated . @xcite and @xcite found that the and the extent of and absorption systems are related to host galaxy luminosity . more directly , @xcite searched for absorption systems in a sample of 94 galaxies at redshifts between @xmath10 and @xmath11 within @xmath12kpc from a qso sightline .
the of the systems found ( the great majority of which have @xmath13 ) scales with the stellar mass and only little with the star formation rate of the host galaxies @xcite .
these results are interpreted considering that absorption systems arise from infalling clouds to fuel star formation .
@xcite directly compared the relative halo gas and host galaxy kinematics for 13 l@xmath14 galaxies at @xmath15 .
they found that these galaxies have low sfrs and a kinematically quiescent interstellar medium containing no outflowing gas . given that these galaxies live in isolated environment , they suggest a scenario in which the cool gas halo was infalling and providing a gas reservoir that could maintain the low levels of star formation within the host galaxies .
@xcite , in a sample of luminous red galaxies ( lrgs ) with redshifts @xmath16 , found a low covering factor ( @xmath17 ) for absorber with @xmath18 and a lack of correlation between and impact parameter or r band absolute magnitude of the galaxies .
they suggested that this is due or to the rich environment of these objects that makes their haloes too hot to maintain cool gas , or to the low rates of star formation that are not intense enough to fill their haloes with clouds .
cross correlating absorption systems and the properties of lrgs @xcite found at redshift @xmath19 an anti correlation between the halo mass and the of absorbers ( most of which have @xmath4 ) , which suggests that the absorption systems are not virialised within the haloes .
these results were further confirmed in larger sample by @xcite and by @xcite .
intriguingly , @xcite detect inflow of gas into isolated star forming galaxies at @xmath19 .
in contrast to the large attention given to absorptions detected around normal galaxies , only few studies have been focused on the properties of the gaseous halo of galaxies hosting a qso in their centre .
the observation of projected qso pairs allows to probe the properties of the foreground qso ( , @xmath20 ) , through the study of absorption features imprinted on the background qso spectra ( , @xmath21 ) .
the standard model on the origin of qso high luminosity requires an intense gas accretion on a supermassive black hole that dramatically increases its activity .
feasible mechanisms responsible for the gas infall are instabilities caused by strong gravitational interactions and galaxy mergers ( e.g. , * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
the close ( few hundreds kiloparsecs ) environment of qsos is expected to be populated by tidal debris , streams , and diffuse cool gas clouds , as commonly observed in interacting galaxies ( e.g. , * ? ? ?
* ; * ? ? ?
given their low surface brightness , most of the properties of these features could be investigated almost exclusively in absorption , especially at high redshift .
some studies have been performed to analyse the distribution of neutral hydrogen around qsos .
for instance @xcite , starting from a sample of 149 projected qso pairs ( projected distance : @xmath22kpc@xmath23mpc ; redshift : @xmath24 ) , found that the probability to have an absorber with @xmath25@xmath26 coincident within 200kpc with a is high ( @xmath27 ) , and that the distribution of these absorbers is highly anisotropic ( @xcite , see also @xcite ) .
the study of projected qso pairs gives also the possibility to investigate the so called _ transverse proximity effect _
: i.e. , the expected decrease of absorption systems in the ly@xmath28 forest of a due to the ionising flux of a . intriguingly the many attempts to measure this effect , with perhaps one exception @xcite , have led to only marginal or no detection ( e.g. , * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
the presence of a transverse proximity effect for heavier elements is still unclear .
for instance it was observed for heii by @xcite , but not for @xcite or for @xcite . up to now , only a few metal absorption systems associated or near to a qso have been serendipitously discovered ( e.g. , * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
the limited statistics is due to the little number of known close projected qso pairs .
even the large spectroscopic qso catalogue of the sloan digital sky survey , made of more than 100000 objects @xcite , contains only 22 qso pairs with separation less than @xmath29 .
one should recall that the fiber collisions prevents the spectroscopic observations of two sources with separations below @xmath30 in a single plate .
@xcite studied the distribution of metal absorption features ( in most case ) present in the spectra of 170 close ( @xmath31 ) projected qso pairs with separations @xmath3kpc@xmath32mpc in order to investigate their mpc scale clustering properties around qsos and other absorbers .
they found 16 absorbers within @xmath33 km / s from the , all with @xmath34kpc , that cluster with an approximately isotropic distribution , with a hint of an excess for systems with redshift @xmath35 .
@xcite select from the sample of projected qso systems of @xcite 4 the pairs with @xmath36kpc and @xmath37 . in all these systems
they detect absorption lines clearly associated to ( see figure [ fig:1 ] ) . despite the small sample size , they speculate that the absence of corresponding absorption lines in the spectra of involve a non isotropic distribution of the absorbing gas . on the basis of these data @xcite proposed that the gas in the outer region of qsos ( i.e. , at radius larger than @xmath38kpc ) is distributed in the same way of @xmath39 galaxies , but their thermal and ionisation structure is highly influenced by the central black hole emission . in this paper
we search for and absorption features in a sample of 13 projected pairs .
the aim of this work is to investigate the physical properties and the spatial distribution of the cool gas associated to the halo of qsos .
it is worth noting that the considered ions have very different ionisation energies , probing different gas conditions .
the properties of the detected features are compared with those found in _
normal _ galaxies ( i.e. , galaxies not hosting a qso ) in order to investigate the effects of the central black hole emission on the cool gas .
we present our sample in
[ sec:2 ] and the data reduction and analysis in [ sec:3 ] . in [ sec:4 ]
we investigate the properties of the detected absorption systems . in
[ sec:5 ] we compare and contrast our results with those found in galaxies .
we conclude and summarise in
[ sec:6 ] . throughout this paper
we consider a concordance cosmology with h@xmath40km / s / mpc , @xmath41 , and @xmath42 .
we searched in the @xcite quasar catalogue for projected pairs that match the following requirements : ( i ) the angular separation is @xmath43 that , at the redshifts considered in our sample ( i.e. , @xmath44 ) , allows us to explore the outer regions of a typical galaxy halo ( i.e. , from 60 to 120kpc ) ; ( ii ) the redshifts of fore and back ground qsos combine so that the and emissions of the fall within the wavelength range observed with fors2 grism 1400v or grism 1200r , avoiding important sky features or narrow emission lines in the spectrum of the ; ( iii ) targets have declination @xmath45 , so that they are visible from the paranal site ; and finally ( iv ) the qso@xmath46 is brighter than m@xmath47 in order to collect spectra with signal to noise @xmath48 .
the resulting sample consists of 19 close pairs , 13 of which were observed with fors2 at vlt . in table [ tab:1 ] and in figure [ fig:1 ] we present the general properties of the 13 observed pairs .
these are radio quiet qsos , with an average angular separation of 11.4@xmath49 that corresponds to an average projected distance of @xmath50kpc . in our sample
we do not take into account the presence of absorption _ a priori _ , thus it seems suitable to estimate the unbiased frequency of absorption systems .
|
absorption lines in quasar qso spectra provide unique tool for probing gas dust content of galaxies intergalactic medium at redshift works @xcite and features linked to gaseous haloes around galaxies to @xmath3kpc despite studies at connecting metal absorption systems with galaxy properties origin of absorbing gas still unclear emerging scenario stronger absorption lines linked to winds star formation activity weaker associated with inflows of gas onto host galaxies @xcite stacking images of 2800 absorbers with @xmath5 show stronger absorption systems reside in blue star forming galaxies weaker in red passive galaxies result confirmed by @xcite in sample of 8500 absorption systems in qso spectra discovered strong correlation between absorbers and luminosity of associated lines tracer of star formation rate of galaxies @xcite investigated evolution of number density of @xmath6 strong absorption systems found correspondence with evolution star formation rate at redshifts between @xmath7 and @xmath8 suggesting link between phenomena@xcite reported evidence ultrastrong absorbers @xmath9 ) in galaxies high sfrs spectroscopic observations forming galaxies blueshifted absorption features supporting outflowing winds scenario link between galaxy luminosity halo mass strength absorption features debated @xcite found absorption systems related to host galaxy luminosity searched for absorption systems in 94 galaxies at redshifts between @xmath10 and @xmath11 systems found majority @xmath13 with stellar mass little with star formation rate host galaxies absorption systems arise from infalling clouds fuel star formation compared relative halo gas host galaxy kinematics for 13 l@xmath14 galaxies at @xmath15 galaxies have low sfrs kinematically quiescent interstellar medium no outflowing gas galaxies suggest scenario cool gas halo infalling gas reservoir low star formation @xcite found low covering factor ( @xmath17 ) for absorber with @xmath18 lack of correlation between impact parameter band magnitude galaxiessuggested due to rich environment haloes too hot cool gas or low rates star formation not intense fill haloes clouds correlating absorption systems properties lrgs @xcite found at redshift @xmath19 anti correlation between halo mass absorbers @xmath4 ) suggests absorption systems not virialised within haloes results confirmed in larger sample by @xcite @xcite @xcite detect inflow gas into isolated star forming galaxies at @xmath19 contrast normal galaxies few studies focused on properties gaseous halo of galaxies hosting qso observation of projected qso pairs allows probe properties foreground qso @xmath20 study absorption features background qso spectra @xmath21 ) standard model origin qso high luminosity requires intense gas accretion on supermassive black hole activity feasible mechanisms for gas infall instabilities strong gravitational interactions galaxy mergers environment of qsos expected populated by tidal debris streams diffuse cool gas clouds low surface brightness properties features investigated in absorption especially at high redshift studies performed analyse distribution neutral hydrogen around qsos@xcite from 149 projected qso pairs ( distance : @xmath22kpc@xmath23mpc redshift : @xmath24 found probability absorber with @xmath25@xmath26 within 200kpc with a high distribution highly anisotropic ( study of projected qso pairs investigate transverse proximity effect _ expected decrease of absorption systems in ly@xmath28 forest of a due to ionising flux attempts to measure effect led to marginal or no detection presence transverse proximity effect for heavier elements unclear observed for heii by @xcite not for @xcite or @xcite few metal absorption systems associated near to qso discovered limited statistics due to little number of known close projected qso pairs large spectroscopic qso catalogue of sloan digital sky survey 100000 contains 22 qso pairs with separation less than @xmath29 fiber collisions prevents spectroscopic observations of two sources with separations below @xmath30 in single plate@xcite studied metal absorption features in 170 projected qso pairs with separations @xmath3kpc@xmath32mpc mpc scale clustering properties around absorbers found 16 absorbers within @xmath33 km / s from all with @xmath34kpc isotropic distribution excess for systems with redshift @xmath35 @xcite from pairs with @xmath36kpc and @xmath37 absorption lines associated figure small sample size speculate absence of absorption lines non isotropic distribution absorbing gas proposed gas in outer region of qsos larger than @xmath38kpc distributed same @xmath39 galaxies thermal ionisation structure influenced by central black hole emission paper search for absorption features in 13 projected pairs aim investigate physical properties spatial distribution of cool gas associated to halo of qsos ions have different ionisation energies different gas conditions properties detected features compared with in normal galaxies investigate effects central black hole emission on cool gas present sample in sec:2 data reduction analysis in sec:3 ] in sec:4 ] investigate properties detected absorption systemssec:5 ] compare contrast results galaxies conclude summarise sec:6 ] consider concordance cosmology with h@xmath40km / s / mpc @xmath41 @xmath42 searched @xcite quasar catalogue for projected pairs requirements angular separation @xmath43 redshifts @xmath44 allows explore outer regions typical galaxy halo 60 to 120kpc redshifts fore back ground qsos combine emissions fall within wavelength range observed fors2 grism 1400v grism 1200r avoiding important sky features narrow emission lines targets declination @xmath45 visible from paranal site qso@xmath46 brighter than m@xmath47 collect spectra signal noise @xmath48 resulting sample 19 close pairs 13 observed with fors2 vlt table tab:1 figure fig:1 ] present general properties 13 observed pairs radio quiet qsos average angular separation 11.4@xmath49 average projected distance @xmath50kpc presence absorption suitable estimate unbiased frequency absorption systems
| 0.351834
| 2,486
| 1,234
|
, Saving $0.1 in GPT-4.
|
18,774
|
fluid dynamics videos . the effect of flexibility on the hydrodynamic loads and on the flow structures generated on a rectangular foil when oscillating in pitch has been studied .
hydrodynamic loads were measured with a 6-axes balance , and the flow structures were investigated by using a digital particle image velocimetry ( @xmath0 ) . it is known from nature s fin based propulsion mechanisms , that appendage stiffness plays an important role in their propulsive efficiency . we have studied four different stiffnesses , ranging from completely rigid to highly flexible .
optimal efficiency has been observed for an intermediate case . in this case , a moderately stronger trailing - edge vortex system takes place . a very high level of flexibility of the foil results in a reduction of efficiency .
|
experiments were conducted in the towing carriage of the laboratory for fluid - structure itneraction ( life ) , at the the department of mechanical engineering of the universitat rovira i virgili .
the water tank is 2 m long and it has a cross section of @xmath1 .
towing speeds in the carriage can be accurately controlled , see figure [ fig : imageset ] for details .
the steel foil has a chord of @xmath2 = 11 cm and a vertical span of @xmath3 = 20 cm .
it is atached to a shaft driven a stepper motor which can be accurately controlled at the same time as the towing speed .
the mean vertical position of the plate is 15 cm below the water surface and 15 cm above the floor of the tank .
a balance is used to measure lift and drag forces , as well as pitch moment [ fig : imageset ] .
the pitch has equation : planar @xmath0 data was obtained after illuminating a region around the foil using a planar laser sheet generated by a diode - pumped solid state device .
the light scattered by the tracer was captured using a digital camera based on a 4 mpixel cmos sensor .
the flow was seeded using @xmath7 m diameter silver coated hollow glass spheres ( s - hgs ) .
our set up installed at the towing tank , allowed the control of the flapping amplitude ( a ) , frequency ( f ) , as well as the free - stream or towing velocity ( u ) .
four different flexibilities have been studied , rigid foil , semi - rigid foil , semi - flexible foil and flexible foil .
a total of 720 experimental runs have been done with the techniques described above as you can see at the figure [ fig : imagepara ] .
the following definitions apply : as already mentioned , the flexibility plays an important role in propulsion .
we have found out that the optimal efficiency is produced for an intermediate case of flexibility .
efficiency is higher for two main reasons :
|
experiments conducted in towing carriage laboratory for fluid - structure itneraction at department of mechanical engineering universitat rovira i virgili water tank 2 m long cross section @xmath1 towing speeds controlled figure steel foil has chord @xmath2 = 11 cm vertical span @xmath3 = 20 cm atached to shaft driven stepper motor controlled as towing speed mean vertical position plate 15 cm below water surface 15 cm above floor tank balance lift drag forces pitch moment pitch equation : planar @xmath0 data obtained after illuminating region around foil using planar laser sheet diode - pumped solid state device light scattered captured using digital camera 4 mpixel cmos sensor flow seeded using @xmath7 m diameter silver coated hollow glass spheres set up control of flapping amplitude frequency free - stream towing velocity four flexibilities studied rigid semi - rigid semi - flexible flexible 720 experimental runs done with techniques figure flexibility important in propulsion optimal efficiency for intermediate case of flexibility efficiency higher for two reasons
| 0.075033
| 423
| 206
|
, Saving $0.0 in GPT-4.
|
18,777
|
neoclassical economics has two theories of competition between profit - maximizing firms ( marshallian and cournot - nash ) that start from different premises about the degree of strategic interaction between firms , yet reach the same result , that market price falls as the number of firms in an industry increases .
the marshallian argument is strictly false .
we integrate the different premises , and establish that the optimal level of strategic interaction between competing firms is zero .
simulations support our analysis and reveal intriguing emergent behaviors .
pacs code : 89.65.gh microeconomics , profit maximization , competition , monopoly , oligopoly , cournot - nash game theory
|
the underlying assumption of the marshallian model is that the @xmath0 firm in a competitive industry does not react strategically to the hypothetical actions of other firms . in an @xmath1 firm industry where the output of the @xmath0 firm is @xmath2 , this assumption , known as
atomism or price - taking,@xcite means that @xmath3 @xmath4 .
this model then claims that the market demand function @xmath5 ( where @xmath6 ) has the dual properties that @xmath7 and @xmath8 for large @xmath1 .
elementary calculus shows this is false : @xmath9 where @xmath10 given @xmath11 @xmath4 .
therefore @xmath12 ( @xcite ) .
this false belief is essential to the marshallian derivation of the model of perfect competition , which occurs when @xmath5the marginal benefit to society equals the marginal cost of production @xmath13.@xcite the derivation starts from the proposition that a profit maximizing firm will produce where its marginal cost @xmath14 equals its marginal revenue @xmath15 : @xmath16 given this alleged profit - maximization rule and the assumption that @xmath17 , it followed that for perfect competition , price equalled marginal cost .
since the assumption is logically incompatible with @xmath7 , the marshallian derivation of perfect competition fails .
the cournot - nash model is not dependent on this fallacy , arguing instead that strategic interactions lead to a nash equilibrium in which market price converges to marginal cost as the number of firms increases ( @xcite ; @xcite)though this process is , at best , highly conditional at best ( see @xcite ) .
standard neoclassical analysis assumes that firms _ will _ strategically interact , and calculates the @xmath0 firm s best response on this basis under various conditions .
we instead treat @xmath18 , the response of the @xmath0 firm to a hypothetical change in output by the @xmath19 , as a decision variable , and consider what is its optimal value of @xmath18 for a profit - maximizing firm . as a preliminary ,
we show that the proposition that ( [ profitmaxcournot ] ) maximizes profits for the @xmath0 firm is false .
in a multi - firm industry , the profit maximum is given by the zero , not of its _ partial _ derivative , but its _ total _ derivative since the actions of other firms affect the profitability of any given firm , even though ( or rather , especially because ) the @xmath0 firm can not control what the other firms in the industry do
. maximizing profit while ignoring what other firms do is rather like rowing a boat to a specific location while ignoring the wind and tides .
the profit maximum for the @xmath0 firm is therefore given by : @xmath20 since @xmath21 , ( [ profitmaxcondition ] ) can be expanded to @xmath22 converting ( [ profitmaxconditionexpanded ] ) into an expression in terms of reaction coefficients @xmath18 yields : @xmath23 with the marshallian assumption of atomism , @xmath24 @xmath4 , and equation ( [ generalprofitmaximum ] ) reduces to @xmath25 this contradicts the neoclassical belief , epitomized by ( [ profitmaxcournot ] ) , that , in the context of atomistic behavior , profit is maximized by equating marginal revenue and marginal cost .
( [ profitmaximumthetazero ] ) can be rearranged to yield : @xmath26 this equals zero only in the case of a monopoly which is the one time that the accepted marshallian formula is correct . at all other times ,
the profit maximum for an individual firm will occur where marginal revenue _ exceeds _ marginal cost . as a consequence
, the marshallian model leads to industry output being independent of the number of firms in it . in cournot - nash game
theoretic analysis , firms decide their own actions on the basis of the expected reactions of other firms , in such a way that each firm s best response is to set @xmath27 . in our terms , this is equivalent to setting @xmath28where e is the market elasticity of demand ( @xmath29 ) .
our equation ( [ generalprofitmaximum ] ) lets us combine marshallian and cournot - nash analysis , by treating @xmath18 as a decision variable whose optimum value can be identified by the firm . in this paper , we consider an industry of @xmath1 identical firms ( a common heuristic device in economic theory ) so that @xmath30 @xmath4 and @xmath31 , where @xmath32 can take on any value
. then ( [ generalprofitmaximum ] ) reduces to : @xmath33 this defines the maximum profit achievable by the individual firm in the context of strategic behavior if each firm reacts to output changes by other firms with a reaction coefficient of @xmath32 .
we can now consider what value of @xmath32 would be chosen by a profit - maximizing firm .
it transpires that the optimum value of this parameter is in fact zero .
the optimum value for @xmath32 for the @xmath0 firm occurs where @xmath34 .
this condition reduces to : @xmath35 since it can be shown that @xmath36 , ( [ profitmaxwrttheta ] ) equals zero iff @xmath37 .
as established above , this requires that @xmath38 .
firms thus achieve higher profits if they _ do not _ react strategically to each other . in the classic words of the movie _ war games _
, firms may conclude that cournot - nash strategic interaction is a curious game .
the only winning strategy is not to play .
we consider this question using a multi - agent model of instrumentally rational profit maximizers facing comparable marginal cost functions .
our hypothetical market has a linear demand curve ( @xmath39 ) and a given number @xmath1 of profit - maximizing agents .
firm @xmath40 chooses an initial output level @xmath41 and a fixed amount by which to vary output at each step @xmath42 .
if profit falls after an iteration , @xmath40 reverses the sign of @xmath42 for the next iteration .. ] total cost functions for the firms are identical : @xmath43 in the following simulations , @xmath44 and @xmath45 , @xmath46 , @xmath47 , @xmath48and @xmath49 and @xmath1 ranges between @xmath50 and @xmath51 ( higher values made no significant difference to our results . ) ; the fixed @xmath52 for each firm is drawn from a normal distribution @xmath53 where @xmath54 and @xmath55 is a given fraction of the cournot prediction .
monte carlo simulations reveal a rich range of interactions , and in general show that instrumentally rational profit - maximizers will learn not to play the cournot - nash game . for low @xmath55
, output converges to the keen equilibrium given by ( [ profitmaximumthetazero ] ) for all values of @xmath1 ( figure [ risingmc_low_dq ] ) .
[ ptbh ] keenfig01.eps however , as @xmath55 rises from 1% to 20% of the cournot prediction , the outcome shifts from the keen to the cournot level ( figure [ dispersalrisingmc ] ) .
aggregate and individual agent behavior also becomes much more unstable , as figure [ comparison_dq_firms ] indicates .
we surmise that the emergent collusion we identified in @xcite breaks down as @xmath56 rises ; perhaps the increasing size of unpredictable output changes by other firms makes the overall market environment more chaotic , forcing each firm to rely more on feedback from its own output.changes .
[ ptbh ] keenfig02.eps [ ptb ] keenfig03.eps
contrary to the beliefs of the vast majority of economists , equating marginal revenue and marginal cost is not profit - maximizing behavior , the number of firms in an industry has no discernible impact on the quantity produced , the deadweight loss of welfare exists regardless of how many firms there are in the industry , and instrumentally rational profit - maximizers do not play cournot - nash games . moving from hollywood to the bard , it appears that the dominant theory of the firm is much ado about nothing .
standish and s. keen , emergent effective collusion in an economy of perfectly rational competitors , stonier , et al .
( eds . ) , proceedings 7th asia - pacific conference on complex systems , cairns , arxiv : nlin.ao/0411006 , ( 2004 ) , 228
|
assumption marshallian model is @xmath0 firm in competitive industry react strategically to actions other firms in @xmath1 firm industry output @xmath0 firm is @xmath2 assumption atomism or price - taking means @xmath3 model claims market demand function @xmath5 has dual properties @xmath7 @xmath8 @xmath1 calculus shows false @xmath9 @xmath11 false belief essential to marshallian derivation model perfect competition when marginal benefit equals marginal cost production derivation starts from profit maximizing firm produce marginal cost equals marginal revenue profit - maximization rule perfect competition price equalled marginal cost assumption incompatible with @xmath7 marshallian derivation perfect competition fails cournot - nash model not dependent on fallacy strategic interactions lead to nash equilibrium market price converges to marginal cost as number firms increases process highly conditional neoclassical analysis assumes firms strategically interact calculates @xmath0 firm s best response treat @xmath18 response to change output as decision variable consider optimal value @xmath18 for profit - maximizing firmpreliminary proposition profitmaxcournot ] maximizes profits for @xmath0 firm false in multi - firm industry profit maximum given by zero not partial but total derivative actions other firms affect profitability @xmath0 firm control other firms maximizing profit ignoring other firms like rowing boat location ignoring wind and tides profit maximum for @xmath0 firm given by @xmath20 @xmath21 profitmaxcondition can be expanded to @xmath22 converting into expression reaction coefficients @xmath18 yields @xmath23 @xmath24 @xmath4 generalprofitmaximum reduces to @xmath25 contradicts neoclassical belief profit maximized by equating marginal revenue and marginal cost profitmaximumthetazero ] can rearranged to yield : @xmath26 equals zero only in monopoly one time marshallian formula correct other times profit maximum where marginal revenue exceeds marginal cost marshallian model leads to industry output independent of number of firms cournot - nash game analysis firms decide actions expected reactions other firms each firm s best response set @xmath27 .equivalent to setting @xmath28where e market elasticity of demand @xmath29 ) equation generalprofitmaximum marshallian cournot - nash analysis @xmath18 as decision variable optimum value identified by firm consider industry of @xmath1 identical firms @xmath30 @xmath32 can take any value generalprofitmaximum reduces to @xmath33 defines maximum profit individual firm if reacts to output changes reaction coefficient @xmath32 value @xmath32 chosen by profit - maximizing firm optimum value zero optimum value for @xmath32 firm occurs @xmath34 condition reduces to @xmath35 @xmath36 profitmaxwrttheta equals zero @xmath37 requires @xmath38 firms achieve higher profits if react strategically cournot - nash strategic interaction curious game not play consider question using multi - agent model of rational profit maximizers comparable marginal cost functions hypothetical market linear demand curve @xmath39 number @xmath1 of profit - maximizing agents firm @xmath40 chooses initial output level @xmath41 fixed amount to vary output at each step @xmath42profit falls after iteration @xmath40 reverses sign @xmath42 next iteration total cost functions firms identical @xmath43 simulations @xmath44 @xmath1 ranges between @xmath50 and @xmath51 higher values no difference results fixed @xmath52 drawn from normal distribution @xmath53 @xmath54 @xmath55 given fraction of cournot prediction monte carlo simulations reveal interactions show rational profit - maximizers not play cournot - nash game low @xmath55 output converges to keen equilibrium profitmaximumthetazero for all values @xmath1 @xmath55 rises from 1% to 20% outcome shifts from keen to cournot level aggregate individual agent behavior unstable comparison_dq_firms emergent collusion in @xcite breaks down as @xmath56 rises increasing size unpredictable output changes market environment chaotic firm rely on feedback output.changeskeenfig02.eps keenfig03.eps contrary to economists equating marginal revenue cost not profit - maximizing number firms impact on quantity produced deadweight loss of welfare exists regardless firms rational profit - maximizers play cournot - nash games from hollywood to bard dominant theory firm ado standish s. keen effective collusion rational competitors stonier proceedings 7th asia - pacific conference on complex systems cairns arxiv nlin.ao/0411006 2004 228
| 0.30964
| 1,892
| 939
|
, Saving $0.1 in GPT-4.
|
18,781
|
we propose the entropy density as the thermodynamic condition driving best the chemical freeze - out in heavy - ion collisions .
taking its value from lattice calculations , we find that it is excellent in reproducing the experimentally estimated freeze - out parameters .
the two characteristic endpoints in the freeze - out diagram are reproduced as well .
|
at critical temperature @xmath0 , the hadronic matter is conjectured to dissolve into quark - gluon plasma ( qgp ) . reducing the qgp temperature
disposes hadronization and the interacting system goes into chemical equilibrium and finally the produced particles freeze out . below @xmath1 ,
thermal equilibrium takes place and the compositions of matter turn to confine into hadrons .
the best way to determine the freeze - out parameters is to combine various particle ratios in order to obtain a window in the @xmath2 diagram compatible with the experimental results .
@xmath3 is the baryo - chemical potential .
the question we intent to answer is : what is the universal condition describing the freeze - out parameters ?
@xcite _ without energy input the chemical reactions always proceed toward chemical equilibrium , i.e. balancing particle - absorption and -production_. to study the consequences of this equilibrium , we recall the equilibrium constant @xmath4 . in a chemical reaction like @xmath5 , @xmath4 can be calculated according to the law of mass action @xcite @xmath6^c_{ch } \ ; [ d]^d_{ch}\right)\right/\left([a]^a_{ch}\ ; [ b]^b_{ch}\right ) , \label{eq : chconst } \end{aligned}\ ] ] where @xmath7 and @xmath8 refer to the reactants and products , respectively . @xmath9 and @xmath10 are the corresponding concentrations . in heavy - ion collisions ,
the decay channels are - in structure - similar to the above chemical reaction
. the backward direction can be viewed as annihilation / absorption processes .
analogy to eq .
( [ eq : chconst ] ) we deal so far with one specific type of hadron interactions . the hadron system and its approach towards the chemical equilibrium
are allowed to have many dynamical processes .
the most important ones are particle - absorption and -production .
the different mechanisms that drive the system towards the chemical equilibrium are to be taken into consideration by summing over all hadron resonances .
the total free energy of the system @xmath11 can be used to determine the likely direction .
when the reactant and product concentrations are given , then for an ideal gas ( no enthalpy change ) , @xmath12 . at equilibrium free energy
gets minimum ( @xmath13 vanishes ) and pressure is constant .
then @xmath14 .
@xmath15 is the difference of free energies of products and reactants at standard state , i.e. at @xmath16 .
@xmath17 at equilibrium , the entropy gets maximum .
the change in particle number is minimum .
therefore , the equilibrium constant is mainly influenced by entropy change .
in the following , we list some thermodynamic expressions for one particle and its anti - particle in boltzmann limit .
@xmath18 , \label{eq : entr } \\
\frac{\epsilon(t,\mu_b)}{n(t,\mu_b ) } & = & \left[3 t + m \frac{k_1\left(\frac{m}{t}\right)}{k_2 \left(\frac{m}{t}\right)}\right ] \ ; { \mathbf \coth\left(\frac{\mu_b}{t}\right ) } , \label{eq : eovern1 } \end{aligned}\ ] ] where @xmath19 is the spin - isospin degeneracy factor and @xmath20 are the modified bessel functions .
they will be summed over all resonances taken into account .
these quantities are related to the consequences of chemical equilibrium via eq .
( [ eq : chconst3 ] ) . in this letter ,
full quantum statistics has been properly taken into account .
@xmath21 , \label{eq : lnz } \hspace*{5 mm } \end{aligned}\ ] ] where @xmath22 is the single - particle energy and @xmath23 stand for bosons and fermions , respectively .
we apply the hadron resonance gas model ( hrgm ) @xcite in order to study the conditions driving the freeze - out .
all observed resonances up to mass @xmath24gev are included .
the particle decays are entirely left away .
we use grand canonical ensemble and full quantum statistics .
corrections due to van der waals repulsive interactions and the excluded volume have not been taken into account .
freeze - out curve under the condition of constant energy per particle @xcite .
the points are the parameters taken from indicated accelerators . ]
freeze - out curve under the condition @xcite . in calculating the short - dashed curve @xcite ,
the percolation theory has been taken into account . ] before we report the results , we remind of the two characteristic points of the freeze - out diagram ; one at @xmath25 and and the other at @xmath26 and very large @xmath3 .
localizing the first point has been the subject of different experimental studies @xcite .
it has been found that @xcite .
the lattice estimation for the deconfinement temperature is @xcite .
this implies that the deconfinement and freeze - out lines seem to be coincident at low @xmath3 . for the second point , we are left with applying effective models . as @xmath27 ,
the nucleons in the hadron gas get dominant . applying fermi statistics , eq .
[ eq : raiot0 ] , we find that the chemical potential corresponding to the normal nuclear density , is
. this value can slightly be different according to the initial conditions @xcite .
a proposal to describe the freeze - out parameters at different incident energies has been reported in ref .
the authors started from phenomenological observations at gsi / sis energy that @xmath28gev .
they have applied boltzmann approximations in calculating @xmath29 , eq .
( [ eq : eovern1 ] ) , and analytically handled the hadron resonance gas at @xmath30mev ( @xmath31gev ) , i.e. the freeze - out parameters at gsi / sis energy , as a fermi gas of degenerate nucleons , eq .
[ eq : raiot0 ] . at high @xmath32 and small @xmath3
, the authors assumed that the pions and rho - mesons get dominant .
the baryons are entirely neglected .
applying eq .
( [ eq : eovern1 ] ) with the effective mass @xmath33 they got almost the same value for the ratio @xmath29 @xcite . in fig
. [ fig:1 ] , we use hrgm in order to map out @xmath34 freeze - out diagram according to this condition . in calculating @xmath35 and @xmath36 , we take into account full quantum statistics and all observed resonances up to mass @xmath37gev . in ref .
@xcite , _ total _ baryon number density @xmath38 was imposed to interpret the chemical freeze - out curve . for this scenario ,
the baryon - baryon and baryon - meson interactions were assumed to drive the chemical equilibrium .
for the value @xmath39@xmath40 , two - third the normal nuclear density , it has been argued that it depends on the correction due to van der waals repulsive interactions . in fig .
[ fig:2 ] , we plot hrgm results under the condition , the normal nuclear density .
we use this value , since we entirely leave away all corrections .
we find that our results suggest that the assumption of baryon - baryon and baryon - meson and the repulsive interactions are not well - founded .
nevertheless , we find that the value is satisfactorily able to reproduce the two endpoints of freeze - out diagram .
another model we consider is in the framework of percolation theory @xcite . at
, the freeze - out occurs when the nucleons no longer form interconnected matter .
the corresponding density is found to be and consequently , @xmath41gev . at @xmath42
, it has been found that for @xmath43 @xcite .
@xmath44 gives the strangeness saturation .
the results are shown in fig .
[ fig:2 ] .
we can so far conclude that the last two models @xcite are able to reproduce the two endpoints .
both apparently overestimate the freeze - out parameters at bnl / ags and gsi / sis energies .
model @xcite describes well the freeze - out parameters at low energy .
it slightly underestimates the parameters at bnl / rhic and cern / sps energies .
its largest discrepancy is at energies lower than gsi / sis . at @xmath45gev , which as given above corresponds to @xmath46
, we find that the freeze - out under the condition @xmath47gev occurs at @xmath48mev ! furthermore , extrapolating the resulting curve to abscissa results in particle number density @xmath49 . according to eq .
[ eq : raiot0 ] , the ratio @xmath29 at @xmath50 and @xmath45gev equals @xmath51gev .
@xmath52 this relation is valid for fermions and therefore , we drop out the exponent @xmath53 @xcite .
lattice qcd results on entropy density normalized to @xmath54 for @xmath55 and @xmath56 quark flavors at @xmath42 .
the thin curves give hrgm results for physical masses .
the results for re - scaled resonance masses are given by the other two curves . ]
the freeze - out curve under the condition of constant @xmath57 . for non - strange resonances ,
@xmath58 and for all resonances , @xmath59 ( fig .
[ fig:3 ] ) .
the two solid circles as well as the experimentally estimated points are very well reproduced . ]
@xmath1 , @xmath60 and @xmath29 are calculated along the freeze - out curve .
we notice that @xmath60 decreases much faster than @xmath1 , so that at very large @xmath3 the condition @xmath59 is no longer valid
. the ratio @xmath47gev does not remain constant along @xmath3-axis . ]
as mentioned above , our condition for chemical equilibrium in heavy - ion collisions is the entropy density , eq .
[ eq : chconst3 ] @xcite . for vanishing free energy ,
the equilibrium entropy gives the amount of energy which ca nt be used to produce additional work . in this context
, the entropy can be defined as the degree of sharing and spreading the energy inside the system .
the way of distributing the energy is not just an average value , but rather the way that controls the chemical equilibrium . as @xmath27 and @xmath61 ,
the thermodynamic quantities are given in eq .
( [ eq : raiot0 ] ) . in this limit ,
the entropy density vanishes and hrgm is no longer applicable . at @xmath42 ,
the system becomes meson - dominant . in this case , the entropy is finite @xcite .
what is the entropy that characterizes the freeze - out at finite @xmath32 and @xmath3 ? as mentioned above , the deconfinement transition is coincident with the freeze - out at small @xmath3 .
we therefore rely on the lattice calculations @xcite . in fig .
[ fig:3 ] , we plot the lattice results on @xmath57 vs. @xmath62 at @xmath42 @xcite for @xmath63 and @xmath64 quark flavors . to compare with the lattice calculations
in which very heavy quark masses are used , the resonance masses have to be re - scaled to values heavier than the physical ones @xcite .
the results with the physical masses are given by the thin curves .
the two horizontal lines point at the value of @xmath57 at corresponding @xmath0 . for physical masses
, we find that @xmath58 for @xmath63 and @xmath59 for @xmath64 .
the normalization with respect to @xmath54 should not be connected with massless ideal gas .
either the resonances in hrgm or the quarks on lattice are massive . at given @xmath3 , we calculate @xmath1 according to constant @xmath57 . the results are plotted in fig .
[ fig:4 ] .
the dotted curve represents @xmath63 results , ( @xmath58 ) .
the solid curve gives @xmath64 results , ( @xmath59 ) .
we find that the characteristic endpoints as well as all experimentally estimated freeze - out parameters are very well reproduced .
comparing with fig .
[ fig:1 ] and fig .
[ fig:2 ] , one finds that our results fit best freeze - out parameters . in fig .
[ fig:5 ] , we plot @xmath29 , @xmath1 and @xmath60 in dependence on @xmath3 along the freeze - out curve .
we notice that as @xmath3 increases , both @xmath60 and @xmath1 decrease , too .
we also find that @xmath60 decreases much faster than @xmath32 .
the ratio @xmath57 becomes greater than @xmath65 at very large @xmath3 . in this limit , hrgm is no longer applicable and the numerics terminates . at very large @xmath3 ,
_ thermal _ entropy @xmath60 is expected to vanish , since it becomes proportional to @xmath32 ( third law of thermodynamics ) .
the _ quantum _
entropy @xcite is entirely disregarded here .
we also find that @xmath29 does not seem to remain constant along the freeze - out curve as assumed in @xcite .
since hrgm is not applicable in the limit @xmath50 , we apply fermi statistics , eq .
[ eq : raiot0 ] , as given above .
we reviewed the conditions suggested to describe the freeze - out parameters .
we used hrgm in order to map out the freeze - out curve according to these conditions .
full quantum statistics has been properly taken into account .
we compared the results of the models proposed and check their abilities in reproducing the experimentally estimated freeze - out parameters and the characteristic endpoints ( fig .
[ fig:1 ] and fig .
[ fig:2 ] ) .
we found that there are different constraints in reproducing the endpoints and fitting the parameters .
we proposed the entropy density @xmath60 as the thermodynamic condition driving the chemical freeze - out , eq . [ eq : chconst3 ] .
taking its value from lattice qcd simulations at @xmath42 and assuming that @xmath60 normalized to @xmath54 remains constant in the entire @xmath3-axis , we obtained the results shown in fig .
[ fig:4 ] .
the freeze - out parameters @xmath1 and @xmath3 are very well described under this condition .
the two characteristic endpoints are also reproduced .
we conclude that the given ratio @xmath57 characterizes very well the final states observed in all heavy - ion experiments .
increasing the incident energy leads to increasing particle yields .
the production rates of particles decrease exponentially with their masses .
this phenomenological observations are regarded in the way , that increasing energy / temperature is considered by including heavy resonances . changing energy with changing particle number
is given by chemical potential @xmath3 .
the amount of energy which produces no additional work , i.e. vanishing free energy , is the entropy at chemical equilibrium .
+ i thank rudolf baier , tamas biro , rajiv gavai , krzysztof redlich and helmut satz for useful discussions .
|
critical temperature @xmath0 hadronic matter into quark - gluon plasma qgp reducing qgp temperature disposes hadronization system chemical equilibrium produced particles freeze out below @xmath1 thermal equilibrium compositions confine into hadrons determine freeze - out parameters combine particle ratios window @xmath2 diagram compatible with experimental results @xmath3 is baryo - chemical potential question universal condition describing freeze - out parameters ? without energy input chemical reactions proceed toward equilibrium balancing particle - absorption -production study consequences equilibrium recall equilibrium constant @xmath4 @xmath4 calculated according law of mass action @xmath6^c_{ch }_ chconst @xmath7 @xmath8 refer to reactants products @xmath9 @xmath10 corresponding concentrations heavy - ion collisions decay channels similar to chemical reaction backward direction as annihilation / absorption processes analogy to eq with specific hadron interactions hadron system approach towards chemical equilibrium many dynamical processes important particle - absorption and -productionmechanisms drive system towards chemical equilibrium by summing hadron resonances total free energy system @xmath11 likely direction reactant product concentrations given ideal gas no enthalpy change @xmath12 . at equilibrium free energy minimum @xmath13 vanishes pressure constant @xmath14. @xmath15 difference of free energies of products reactants at standard state @xmath16. @xmath17 at equilibrium entropy maximum change in particle number minimum equilibrium constant influenced by entropy change thermodynamic expressions for one particle anti - particle in boltzmann limit @xmath18 \label{eq : entr }\frac{\epsilon(t,\mu_b)} +{eq : eovern1 } @xmath19 spin - isospin degeneracy factor @xmath20 modified bessel functions summed over all resonances quantities related to consequences chemical equilibrium via eq eq : chconst3 full quantum statistics taken into account@xmath21\label{eq : lnz\hspace{5 mm{aligned} @xmath22 single - particle energy @xmath23 bosons fermions apply hadron resonance gas model @xcite study conditions freeze - out observed resonances up to mass @xmath24gev included particle decays left away use grand canonical ensemble full quantum statistics corrections van der waals repulsive interactions excluded volume not freeze - out curve constant energy per particle @xcite points parameters from accelerators freeze - out curve short - dashed curve percolation theory two characteristic points freeze - out diagram @xmath25 @xmath26 large @xmath3 localizing first point subject experimental studies lattice estimation deconfinement temperature @xcite deconfinement freeze - out lines coincident at low @xmath3 second point applying effective models @xmath27 nucleons in hadron gas dominant fermi statistics raiot0 chemical potential normal nuclear density value different initial conditions proposal to describe freeze - out parameters at different incident energies reported ref authors started from phenomenological observations at gsi / sis energy @xmath28gevapplied boltzmann approximations calculating @xmath29 eovern1 handled hadron resonance gas @xmath30mev @xmath31gev freeze - out parameters gsi / sis energy fermi gas degenerate nucleons raiot0 high @xmath32 small @xmath3 assumed pions rho - mesons dominant baryons neglected applying eq eovern1 effective mass @xmath33 same value ratio @xmath29 @xcite fig use hrgm map @xmath34 freeze - out diagram calculating @xmath35 @xmath36 quantum statistics observed resonances up mass @xmath37gev total baryon number density @xmath38 imposed interpret chemical freeze - out curve baryon - baryon baryon - meson interactions assumed drive chemical equilibrium value @xmath39@xmath40 normal nuclear density depends on correction due van der waals repulsive interactions fig plot hrgm results under normal nuclear density use value corrections results suggest assumption baryon - baryon baryon - meson repulsive interactions not well - founded value two endpoints freeze - out diagrammodel percolation theory @xcite freeze - out occurs nucleons form interconnected matter density @xmath41gev @xmath42 @xmath43 @xcite @xmath44 gives strangeness saturation results fig last two models @xcite endpoints overestimate freeze - out parameters at bnl / ags gsi / sis energies low energy underestimates bnl / rhic cern / sps energies discrepancy at energies lower than gsi / sis @xmath45gev @xmath46 freeze - out @xmath47gev occurs at @xmath48mev extrapolating curve to abscissa results particle number density @xmath49 ratio @xmath29 @xmath50 @xmath45gev equals @xmath51gev valid for fermions drop out exponent @xmath53 @xcite lattice qcd results entropy density to @xmath54 @xmath55 @xmath56 @xmath42 thin curves give hrgm results physical masses re - scaled resonance masses curves freeze - out curve constant @xmath57 non - strange resonances @xmath58 all resonances @xmath59fig:3 two solid circles experimentally estimated points reproduced @xmath1 calculated along freeze - out curve @xmath60 decreases faster than @xmath1 at large @xmath3 condition @xmath59 no longer valid ratio @xmath47gev constant along @xmath3-axis condition for chemical equilibrium in heavy - ion collisions entropy density vanishing free energy entropy gives energy additional work entropy defined sharing spreading energy system distributing energy controls chemical equilibrium @xmath27 @xmath61 thermodynamic quantities in eq . raiot0 limit entropy density vanishes hrgm no applicable at @xmath42 system becomes meson - dominant entropy finite @xcite entropy freeze - out at finite @xmath32 @xmath3 ? deconfinement transition coincident with freeze - out at small @xmath3 rely on lattice calculations @xcite fig:3 lattice results on @xmath57 vs. @xmath62 at @xmath42 @xcite for @xmath63 @xmath64 quark flavorscompare lattice calculations heavy quark masses resonance masses re - scaled to heavier physical results physical masses thin curves two horizontal lines point at @xmath57 @xmath0 physical masses @xmath58 @xmath63 @xmath59 for @xmath64 normalization @xmath54 not connected with massless ideal gas resonances in hrgm or quarks on lattice massive @xmath3 calculate @xmath1 according constant @xmath57 results plotted in fig:4 dotted curve represents @xmath63 results @xmath58 solid curve @xmath64 characteristic endpoints experimentally estimated freeze - out parameters well reproduced:2 results fit best freeze - out parameters:5 plot @xmath29 @xmath1 @xmath60 @xmath3 freeze - out curve @xmath3 increases @xmath60 @xmath1 decrease @xmath60 decreases faster than @xmath32 ratio @xmath57 greater than @xmath65 at large @xmath3 hrgm no applicable numerics terminates at large @xmath3 thermal entropy @xmath60 proportional to @xmath32 third lawquantum entropy @xcite disregarded @xmath29 constant along freeze - out curve hrgm not applicable in limit @xmath50 apply fermi statistics raiot0 reviewed conditions freeze - out parameters used hrgm to map freeze - out curve full quantum statistics account compared results models reproducing freeze - out parameters characteristic endpoints fig different constraints in reproducing endpoints fitting parameters proposed entropy density @xmath60 as thermodynamic condition driving chemical freeze - out chconst3 ] value from lattice qcd simulations at @xmath42 @xmath60 to @xmath54 remains constant in @xmath3-axis obtained results in fig fig:4 ] freeze - out parameters @xmath1 and @xmath3 well described two characteristic endpoints reproduced ratio @xmath57 characterizes final states in heavy - ion experiments increasing incident energy leads to increasing particle yields production rates particles decrease with masses increasing energy / temperature by heavy resonances changing energy with particle number given by chemical potential @xmath3 energy no additional workvanishing free energy entropy chemical equilibrium rudolf baier tamas rajiv gavai redlich helmut discussions
| 0.558185
| 3,456
| 1,745
|
, Saving $0.1 in GPT-4.
|
18,789
|
we study one - dimensional neighborhood - five conservative cellular automata ( ca ) , referred to as particle cellular automata five ( particle ca5 ) .
we show that evolution equations for particle ca5s that belong to certain types can be obtained in the form of max - min - plus expressions from a fundamental diagram .
the obtained equations are transformed into other max - min - plus expressions by ultradiscrete cole - hopf transformation , which enable us to analyze the asymptotic behaviors of general solutions .
the equations in the lagrange representation , which describe particle motion , are also presented , which too can be obtained from a fundamental diagram .
finally , we discuss the generalization to a one - dimensional conservative neighborhood-@xmath0 ca , i.e. , particle ca@xmath0 .
|
cellular automata ( ca ) are dynamic systems in which space and time are discrete and physical quantities take on a finite set of discrete values . despite their simple construction , ca exhibit complicated behavior and generate complex patterns . by virtue of these properties , ca have been used as mathematical models for complex phenomena in the fields of physics , chemistry , biology , economics , and sociology@xcite .
recently , one - dimensional conservative ca have attracted much attention as models for traffic flow@xcite .
one of the simplest models is rule 184 , which is a neighborhood - three ca ( also called an elementary ca ) . since rule 184 exhibits phase transition from a free - flow state to a congestion state as real traffic flow does , it has been used as a basic model and extended to many other ca models .
however , despite the intensive research on ca models for traffic flow , there are few studies dealing with all one - dimensional conservative ca in a unified way .
a powerful method for dealing with ca is the ultradiscretization method@xcite , which connects difference equations and ca by applying the following simple formula for the transformation of variables : @xmath1 a conservative ca called the `` box and ball system '' ( bbs ) is obtained from the discrete kdv equation using this method , and other ca that possess a solitonic nature are obtained from soliton equations .
moreover , rule 184 is derived from the discrete burgers equation@xcite .
equation ( [ udlimit ] ) shows that the addition of the difference equations corresponds to the max operation of the ultradiscrete equation .
the multiplication and division correspond to @xmath2 and @xmath3 , respectively , since we have @xmath4 though the subtraction is not well defined for the ultradiscrete equation , we can automatically obtain the ultradiscrete equation and its solution by replacing @xmath2 , @xmath5 and @xmath6 by max , @xmath2 and @xmath3 , respectively , if the subtraction is not included explicitly in the difference equations and their solutions . the algebra defined by operations of max , @xmath2 , and @xmath3
is called `` max - plus '' algebra .
binary operations such as and , or , and not can be easily converted to max - plus operations . in a previous study@xcite
, we investigated one - dimensional neighborhood - four conservative ca , referred to as particle cellular automata four ( particle ca4 ) , and found that evolution equations for particle ca4 - 1 , 4 - 2 , and 4 - 3 can be obtained in the form of max - plus expressions in combination with `` min , '' i.e. , `` max - min - plus '' expressions , which are the key to solving the equations and analyzing asymptotic behaviors . in this study , we investigate particle ca5s and show that the evolution equations for particle ca5s that belong to certain types can be obtained in the form of max - min - plus expressions from fundamental diagrams .
in addition , we show that the equations obtained are transformed into other max - min - plus expressions by ultradiscrete cole - hopf transformation , which enables us to analyze the asymptotic behaviors of general solutions . furthermore
, we give the lagrange representation for the class of particle ca5s , which describes the motion of particles and can be obtained from a fundamental diagram .
finally , we discuss the generalization to the neighborhood-@xmath0 ca case , that is , particle ca@xmath0 .
let us consider the following equation @xmath7 where @xmath0 and @xmath8 are integers representing the timestep and space site number , respectively , and @xmath9 and @xmath10 are positive integer constants . assuming that @xmath11 takes the value of 0 or 1 , ( [ r - neighbor ca ] ) is an evolution equation for a one - dimensional ca with the rule defined by @xmath12 variable function @xmath13 .
we call this ca a `` neighborhood-@xmath14 ca . ''
following wolfram@xcite , to each rule @xmath13 , we assign a rule number @xmath15 such that @xmath16 in this study , we focus on the one - dimensional cas that satisfy @xmath17 where @xmath18 is the size of the one - dimensional lattices , and @xmath19 holds for all @xmath8 . from ( [ pca ] ) , the condition @xmath20 holds , which means that the sum of @xmath11 , that is the number of 1s at all space sites , is conserved for arbitrary @xmath0 .
let @xmath21 denote the number of particles at the @xmath8th site and the @xmath0th timestep , and each `` 1 '' in the solution represents a particle .
then , particles move among sites according to the evolution rule defined by ( [ r - neighbor ca ] ) without creation or annihilation .
we call the ca satisfying this condition ( [ pcacond ] ) a `` particle ca '' in this sense .
in @xcite , hattori and takesue showed that a neighborhood-@xmath14 ca with rule @xmath13 is a particle ca if and only if @xmath13 satisfies @xmath22 for all @xmath23 . applying hattori and takesue s result to neighborhood - five ca expressed by the equation @xmath24 we obtain a system of @xmath25 linear equations with @xmath25 variables @xmath26 for all @xmath27 from ( [ ht1 ] ) and ( [ ht2 ] ) . by finding binary solutions to the system
, we obtain 428 rules for one - dimensional conservative neighborhood - five ca ( particle ca5 ) .
reflection symmetry @xmath28 and boolean conjugation symmetry @xmath29 for rules
@xmath30 and @xmath31 reduce the 428 rules to 129 rules . furthermore , by excluding the rules for neighborhood - three and -four ca ( particle ca3 and particle ca4 , respectively ) , we have the following 115 rules : which is the smallest rule number among their equivalent rules . in this paper
, we assign a number `` @xmath32 '' in the range 1 - 115 to each rule , and call them particle ca5-@xmath32 .
in the field of traffic - flow theory , a fundamental diagram is a useful tool for determining the traffic state of a roadway .
this diagram relates traffic flux and traffic density . under periodic boundary conditions ,
the density is defined by @xmath33 where @xmath34 is the period of sites .
since the number of particles is conserved , @xmath35 is a constant irrespective of time @xmath0 .
the average flux is defined by @xmath36 for large enough @xmath0 , the evolution often approaches a steady state where @xmath37 becomes a constant . in case of convergence ,
the constant is defined by @xmath38 the graph of @xmath39 versus @xmath35 is called a `` fundamental diagram . '' the following subsection shows that the evolution equations for particle ca5s that belong to certain types can be obtained in the form of max - min - plus expressions from a fundamental diagram .
let us take particle ca5 - 34 ( rule 3163536512 ) as an example .
the evolution equation for particle ca5 - 34 is given by @xmath40 together with the following rule table of @xmath13 . [
cols="^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^,^",options="header " , ] this work was supported by jsps kakenhi grant number 22560068 .
99 wolfram s 1986 _ theory and applications of cellular automata _
( singapore : world scientific ) wolfram s 2002 _ a new kind of science _ ( champaign : wolfram media ) boccara n and fuk h 1998 6007 tokihiro t , takahashi d , matsukidaira j and satsuma j 1996 324750 matsukidaira j , satsuma j , takahashi d , tokihiro t and torii m 1997 a * 225 * 287295 nishinari k and takahashi d 1998 543950 takahashi d , matsukidaira j , hara h and feng b 2011 135102 hattori t and takesue s 1991 _ physica _ d * 49 * 295322 matsukidaira j and nishinari k 2003 088701 matsukidaira j and nishinari k 2004 _ int . j. mod
_ c * 15 * 50715
|
cellular automata ca ) are dynamic systems space time discrete physical quantities finite discrete values simple construction ca exhibit complicated behavior generate complex patterns ca used as mathematical models for complex physics chemistry biology economics sociology one - dimensional conservative ca attracted attention as models for traffic flow simplest is rule 184 neighborhood - three ca elementary ca ) rule phase transition from free - flow to congestion traffic used as basic model extended to other ca models few studies dealing with all one - dimensional conservative ca powerful method for is ultradiscretization method connects difference equations ca formula transformation conservative ca box and ball system '' obtained from discrete kdv equation other ca solitonic from soliton equations rule 184 derived from discrete burgers equation addition of difference equations corresponds to max operation of ultradiscrete equationmultiplication division correspond to @xmath2 @xmath3 @xmath4 subtraction not defined ultradiscrete equation obtain equation solution replacing @xmath2 @xmath5 @xmath6 by max @xmath2 @xmath3 if subtraction not included in equations solutions algebra defined by operations max @xmath2 @xmath3 max - plus algebra binary operations converted to max - plus operations previous study investigated neighborhood - four conservative ca particle cellular automata four particle ca4 evolution equations for particle ca4 - 1 4 - 2 4 - 3 obtained max - plus expressions expressions key to solving equations analyzing asymptotic behaviors particle ca5s evolution equations obtained max - min - plus expressions from fundamental diagrams equations transformed into max - min - plus expressions by ultradiscrete cole - hopf transformation analyze asymptotic behaviors solutions lagrange representation for particle ca5s describes motion of particles obtained from fundamental diagram discuss generalization to neighborhood-@xmath0 ca case particle ca@xmath0consider equation @xmath7 integers timestep space site number positive constants @xmath11 0 or 1 [ r - neighbor ca ] evolution equation for one - dimensional ca rule defined @xmath12 variable function @xmath13 call neighborhood-@xmath14 ca each rule @xmath13 assign rule number @xmath15 focus on one - cas @xmath17 @xmath18 size one - dimensional lattices @xmath19 holds for @xmath8 condition @xmath20 holds sum of @xmath11 number of 1s at all space sites conserved for arbitrary @xmath0 @xmath21 number particles @xmath8th site @xmath0th timestep each 1 '' represents particle particles move among sites evolution rule r - neighbor ca ] without creation or annihilation ca satisfying condition pcacond ] ) particle ca '' neighborhood-@xmath14 ca with rule @xmath13 particle ca if satisfies @xmath22 all @xmath23 applying result to neighborhood - five ca system @xmath25 linear equations @xmath25 variables @xmath26 for @xmath27 from ht1 ht2finding binary solutions obtain 428 rules conservative neighborhood - five ca particle ca5 ) reflection symmetry @xmath28 boolean conjugation symmetry @xmath29 rules @xmath30 @xmath31 reduce 428 rules to 129 excluding rules neighborhood - three -four ca particle ca3 ca4 115 rules smallest rule number assign number @xmath32 1 - 115 each rule particle ca5-@xmath32 traffic - flow theory fundamental diagram traffic state relates traffic flux density boundary conditions density defined by @xmath33 @xmath34 period sites number particles conserved @xmath35 constant irrespective time average flux defined by @xmath36 evolution approaches steady state @xmath37 constant convergence constant defined by @xmath38 graph @xmath39 versus @xmath35 fundamental diagram evolution equations for particle ca5s certain types obtained max - min - plus expressions fundamental diagram particle ca5 - 34 ( rule 3163536512 ) example evolution equation given by @xmath40 rule table @xmath13^ work supported jsps kakenhi grant 22560068 wolfram 1986 theory cellular automata singapore world scientific wolfram 2002 new science champaign wolfram media boccara fuk h 1998 6007 tokihiro takahashi matsukidaira satsuma j 1996 324750 matsukidaira takahashi torii 1997 287295 nishinari takahashi d 1998 543950 takahashi matsukidaira hara feng b 2011 135102 hattori t takesue s 1991 295322 matsukidaira j nishinari 2003 088701 matsukidaira nishinari 2004 int 15
| 0.310139
| 1,873
| 960
|
, Saving $0.1 in GPT-4.
|
18,796
|
current models of galaxy evolution suggest that feedback from active galactic nuclei is needed to explain the high - luminosity cutoff in the galaxy luminosity function .
exactly how an agn outflow couples with the ambient medium and suppresses star formation remains poorly understood .
however , we have recently uncovered an important clue to how that coupling might work .
observations of h@xmath0 emission and blue light from the universe s most luminous galaxies , which occupy the centers of galaxy clusters , show that star formation happens only if the minimum specific entropy of the intracluster gas is @xmath1 . here
we suggest that this threshold for star formation is set by the physics of electron thermal conduction , implying that conduction is critical for channeling agn energy input toward incipient star - forming regions and limiting the progress of star formation .
|
what determines the upper limit to the luminosity of a galaxy ?
this question has received a great deal of attention lately because the answer seems to involve feedback from a galaxy s nucleus .
semi - analytic models of galaxy formation show that feedback of some kind is necessary to account for the observed characteristics of the galaxy luminosity function .
models without feedback overpredict the number of both low - luminosity and high - luminosity galaxies .
plausible amounts of feedback from supernovae bring predictions for low - luminosity galaxies into agreement with observations , but getting things right at the high - luminosity end is more difficult the amount of supernova feedback needed to quench star formation in these systems is implausibly large @xcite
. numerical simulations of galaxy formation treat the physics of merging and cooling more realistically but still do not solve the problem of the high - luminosity cutoff . in current simulations ,
late - time cooling of hot gas in the central galaxies of clusters produces so many stars at @xmath2 that the galaxies have luminosities several times larger than the observed cutoff in the galaxy luminosity function and colors that are much too blue ( e.g. , * ? ? ?
a closely related cooling problem has long bedeviled our understanding of galaxies and galaxy clusters , and x - ray observations strongly suggest that the solution lies with active galactic nuclei . in roughly half of nearby clusters , the cooling time at @xmath3 kpc is less than a hubble time , implying that gas at the center of the cluster must cool and condense , if there is no mechanism to offset cooling .
however , the star - formation rates in these systems are at most 1% to 10% of the expected gas condensation rate , and x - ray spectroscopy shows that the the bulk of the central gas remains suspended at temperatures @xmath4 of the virial temperature ( see * ? ? ? * for a review ) .
high - resolution imaging with _
chandra _ has revealed that many clusters and giant elliptical galaxies with short central cooling times also have cavities in their icm that coincide with radio - emitting plasma outflows from the active nucleus in the central galaxy . in many cases the agn energy output inferred from these cavities
is similar to the x - ray cooling rate of the central gas a strong piece of circumstantial evidence in favor of agn feedback as the mechanism that limits cooling and star formation in high - mass halos @xcite .
not all clusters with short central cooling times have obvious cavities , but that finding can be understood if agn heating is episodic .
the most recent versions of semi - analytic models have therefore incorporated schematic implementations of agn feedback and find that radio - mode " feedback is a plausible explanation for both the observed cutoff in the galaxy luminosity function and the fact that the largest galaxies in the universe are red , not blue @xcite . to match the observations ,
radio - mode feedback must occur preferentially in high - temperature systems and must provide enough feedback energy to suppress star formation without making many stars . in this context ,
agn feedback is most effective in systems experiencing hot - mode accretion because an extended hot galactic atmosphere is necessary to halt and thermalize the energy of the agn outflow .
here we consider the implications of two recent studies showing that star formation in brightest cluster galaxies ( bcgs ) is closely linked to the entropy ( see * ? ? ?
* for more background ) .
] structure of the intracluster medium ( icm ) .
section 2 presents evidence that star formation occurs only in bcgs whose central entropy is @xmath1 , equivalent to a cooling time @xmath5 years .
the star formation rates in these systems are generally much smaller than the gas cooling rates in the absence of feedback , and understanding why star formation still proceeds at a reduced rate is likely to tell us something about the coupling between agn feedback and the icm . in section
3 we suggest that the critical central entropy threshold for star formation is determined by electron thermal conduction , because multiphase structure can not persist in the icm if the central entropy is much larger than the observed threshold . if conduction is indeed responsible for governing the rate of star formation , then it is also likely to be a major conduit of thermal energy in the cluster core and a crucial part of the agn feedback loop .
section 4 summarizes the paper .
star formation in brightest cluster galaxies has long been known to correlate with the central cooling time of the host cluster .
@xcite showed that h@xmath0 nebulosity is present in a bcg only if the cluster s cooling time is less than a hubble time , and much of the h@xmath0 emission seen in these objects can be attributed to photoionization by hot stars ( e.g. , * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ) . while it is possible that some of the h@xmath0 comes from other sources like conductive interfaces ( e.g. , *
* ) , turbulent mixing layers @xcite , or cosmic rays @xcite , there is a clear connection between h@xmath0 emission and the presence of extended excess blue light within the bcg ( e.g. , * ? ? ?
furthermore , clusters with short central cooling times also often have substantial co luminosities , indicating that they contain enough cool molecular gas to support the observed level of star - formation @xcite .
two recent studies have brought the star - formation threshold into sharper focus .
chandra _ archival survey of galaxy clusters by @xcite that measured the radial entropy profiles of 222 galaxy clusters , fitting them with the three - parameter expression @xmath6 here we will refer to @xmath7 as the central entropy , although in some cases it is not necessarily the minimum entropy level of the icm but rather the entropy scale at which the radial profile departs from the best - fitting power law at large radii .
figure [ ha - k0 ] shows that central h@xmath0 emission has been detected only in clusters with @xmath8 ( cavagnolo et al .
emission - line luminosities in this plot have been taken from the literature and correspond to a variety of apertures , so the quantitative values of @xmath9 are not very meaningful . however , the entropy threshold for having detectable h@xmath0 emission is quite distinct .
the presence of h@xmath0 emission clearly indicates that the intracluster medium can have a multiphase structure below this entropy threshold , with a component at @xmath10 k in addition to the x - ray emitting component at @xmath11 k. observations of color gradients in bcgs have led to a similar conclusion . in a sample of 46 clusters , @xcite find that 34 of the 20 clusters with central entropy @xmath12 have bcgs with extended blue light in their cores consistent with ongoing star formation , while none of the clusters with central entropy @xmath13 have bcgs with colors bluer than expected from a passively evolving stellar population ( see figure [ bluegrad - k0 ] . ) here the central entropy has been measured from a small x - ray aperture @xmath14 at the center of the cluster , and the color gradients have been measured in @xmath15 and @xmath16 , with @xmath17 and @xmath18 .
the transition to h@xmath0 emission and star formation is sharp in both cases , but it is not yet clear whether the threshold ought to be expressed in terms of central entropy or central cooling time .
here we are presenting the results as a function of central entropy because we are going to interpret them in terms of the icm entropy structure in the next section .
however , it is interesting that the central cooling times at which h@xmath0 and blue light appear are substantially smaller than @xmath19 years .
simply having gas that is able to cool within a hubble time is not enough for star formation in a bcg .
some other more restrictive condition must also be satisfied .
it is also interesting that in both figures there are clusters with central entropy @xmath20 and cooling time @xmath21 years that do not show evidence for star formation .
low entropy and a correspondingly short cooling time are therefore not sufficient to guarantee star formation .
rafferty et al .
( 2008 ) present evidence suggesting that star formation proceeds only if the agn heating rate is less than the gas cooling rate and the central galaxy is close to the x - ray brightness peak .
we suspect that the critical entropy threshold for multiphase gas and star formation in bcgs may result from electron thermal conduction .
cool star - forming clouds should appear only in systems whose size is greater than a critical length scale , known as the _ field length _ , below which thermal conduction smoothes out temperature inhomogeneities @xcite .
one can derive the field length heuristically by considering thermal balance for a cool cloud of radius @xmath22 embedded in a medium of temperature @xmath23 .
electron thermal conduction sends energy into the cloud at a rate @xmath24 , where @xmath25 is the spitzer conduction coefficient and @xmath26 is a suppression factor depending on the magnetic field structure in the medium .
radiative cooling can rid the cloud of energy at a rate @xmath27 , where the cooling function @xmath28 for @xmath29 kev .
cooling and conduction are therefore in approximate balance for systems with a radius of order the field length , @xmath30^{1/2 } = 4 \ , { \rm kpc } \ ; \left [ \frac { k } { 10 \ , { \rm kev \ ,
cm^2 } } \right]^{3/2 } f_c^{1/2 } \ ; \ ; .\ ] ] through a coincidence of scaling , the field length is a function of entropy alone when free - free emission is the dominant cooling mechanism @xcite . figure 3 illustrates how this criterion translates into the entropy - radius plane .
the long - dashed lines give the loci of points for which @xmath31 , given suppression factors @xmath32 and 1 .
magnetic suppression of conduction is a complicated and incompletely understood process , but most recent estimates have been in the range @xmath33-@xmath34 @xcite . below each line ,
gas within radius @xmath22 constitutes a subsystem with @xmath35 .
conduction can not stabilize that gas against cooling , allowing multiphase gas to persist and star formation to proceed .
above each line is the region of stability , in which conduction leads to evaporation and homogeneity . for comparison ,
the solid lines in figure 3 show schematic intracluster entropy profiles motivated by the large _ chandra _ entropy survey of cavagnolo et al .
( 2008a ) .
fitting the form in equation ( [ eq - kfit ] ) to those profiles gives @xmath36 and @xmath37 for clusters with @xmath38 and temperatures ranging from 2 kev to 12 kev .
the solid lines therefore represent typical intracluster entropy profiles with @xmath39 , @xmath40 , and @xmath41 , 10 , 20 , 30 , and 50 kev @xmath42 .
notice that only the schematic profiles with @xmath43 , corresponding to clusters with central star formation and h@xmath0 emission , dip below the threshold for conductive stabilization corresponding to @xmath32 .
colored lines giving entropy profiles from ( cavagnolo et al .
2008a ) reinforce this correspondence : short - dashed blue lines show rafferty et al .
( 2008 ) clusters with central star formation , and dotted red lines show rafferty et al .
( 2008 ) clusters without clear evidence for star formation and without detectable h@xmath0 emission ( cavagnolo et al .
2008b ) .
this simple analysis suggests that conduction is responsible for the strong dependence of h@xmath0 emission and star formation on central entropy . even though the suppression factor @xmath26 is uncertain
, a threshold must exist in the @xmath44-@xmath22 plane above which conduction heats and evaporates cooler gas clouds faster than radiative losses can cool them .
one therefore expects to see a transition from a multiphase icm at low central entropy levels to a more homogeneous , isothermal icm at higher entropy levels .
the h@xmath0 observations are indicating that this transition is at approximately the expected location in the @xmath44-@xmath22 plane for thermal conduction with @xmath33 .
we note that the presence of such a threshold is independent of the origin of the line - emitting gas , which could come either from condensation of the icm or from stripping of cool interstellar clouds from galaxies passing through the cluster core .
stripped gas in an ambient medium above the critical @xmath45 profile would quickly evaporate , while stripped gas in a medium below the profile could persist indefinitely .
a case - by - case analysis of the effectiveness of conduction in the clusters from @xcite agrees with the broader conclusions drawn from figure 3 . for each cluster
we have determined the minimum value of @xmath46 $ ] , where @xmath47 represents the full cooling function and not just free - free emission , from _ chandra _ observations . if @xmath46 < f_c^{-1}$ ] , then conduction can not compensate for radiative cooling ( see figure 4 ) .
the fact that blue gradients are seen only in the bcgs of clusters with @xmath46 \lesssim 5 $ ] therefore provides further support for the idea that thermal conduction with @xmath33 determines whether or not a bcg can form stars .
two recent studies have shown that the star - forming properties of bcgs depend on the entropy structure of the host cluster s icm .
clusters with central entropy @xmath48 , corresponding to a cooling time @xmath5 years often have bcgs with h@xmath0 emission ( cavagnolo et al .
2008b ) and blue cores ( rafferty et al .
2008 ) indicative of ongoing star formation , while none of the clusters with high central entropy show the same features .
we suggest that this entropy threshold for star formation is set by the physics of thermal conduction .
clusters typically have entropy profiles that approximately follow the law @xmath49 , with differing values of @xmath7 ( cavagnolo et al .
if @xmath50 , then conduction can carry heat energy toward the center of the cluster faster than the icm can radiate it away , as long as the suppression factor @xmath51 .
therefore , we should not expect clusters with higher central entropy levels to have a persistent multiphase medium in their cores .
conversely , conduction in lower - entropy clusters can not fully compensate for radiative cooling , allowing star formation to proceed .
@xcite have recently presented a model explaining how agn feedback can suppress star formation in these thermally unstable cluster cores .
the correspondence we find between the observed star - formation threshold and the predictions of conductive models indicates that conduction indeed is important in cluster cores and may be crucial to the agn feedback mechanism thought to regulate star formation in these systems
. however , detailed hydrodynamical simulations including conduction will be necessary to determine more precisely how the phase structure of the icm depends on a cluster s entropy profile .
|
determines upper limit luminosity galaxy ? question attention answer feedback from galaxy nucleus - analytic models galaxy formation show feedback necessary for galaxy luminosity function models without feedback overpredict low high - luminosity galaxies feedback from supernovae bring predictions low - luminosity galaxies high - luminosity difficult supernova feedback needed quench star formation large numerical simulations galaxy formation treat merging cooling realistically solve problem high - luminosity cutoff simulations late - time cooling of hot gas in central galaxies produces many stars at @xmath2 galaxies have luminosities larger than observed cutoff colors too blue cooling problem bedeviled understanding galaxies x - ray observations suggest solution with active galactic nuclei in half of nearby clusters cooling time at @xmath3 kpc less than hubble time gas center cluster must cool condense no star - formation rates most 1% to 10% of expected gas condensation rate x - ray spectroscopy shows bulk central gas remains suspended at temperatures virial temperature see reviewresolution imaging with chandra revealed clusters giant galaxies with short central cooling times have cavities in icm with radio - emitting plasma outflows from active nucleus agn energy output from cavities similar to x - ray cooling rate central gas evidence agn feedback cooling star formation in high - mass halos @xcite not all clusters short cooling times have cavities understood if agn heating episodic recent semi - analytic models incorporated implementations agn feedback radio - mode feedback for cutoff galaxy luminosity function largest galaxies are red not blue @xcite radio - mode feedback must in high - temperature systems provide energy to suppress star formation without agn feedback effective in systems hot - mode accretion extended hot galactic atmosphere necessary to halt energy agn outflow studies star formation in brightest cluster galaxies linked to entropy intracluster medium star formation in bcgs central entropy @xmath1 equivalent to cooling time @xmath5 years star formation rates smaller than gas cooling rates in absence of feedback understanding why star formation coupling between agn feedback icmsection 3 critical central entropy threshold for star formation determined by electron thermal conduction multiphase structure persist in icm if central entropy larger than threshold if conduction star formation likely major conduit of thermal energy in cluster core crucial part of agn feedback loop section 4 summarizes paper star formation in brightest cluster galaxies with central cooling time host cluster @xcite showed h@xmath0 nebulosity present in bcg if cluster cooling time less than hubble time h@xmath0 emission attributed to photoionization by hot stars possible h@xmath0 from other sources conductive interfaces turbulent mixing layers cosmic rays clear connection between h@xmath0 emission and extended excess blue light within bcg clusters with short central cooling times have substantial co luminosities contain enough cool molecular gas star - formation recent studies star - formation threshold survey by @xcite measured radial entropy profiles of 222 galaxy clusters expression to @xmath7 as central entropy not minimum entropy level icm entropy scale radial profile departs from best - fitting power law at large radiifigure - k0 ] shows central h@xmath0 emission detected in clusters with @xmath8 emission - line luminosities taken from literature correspond to apertures quantitative values of @xmath9 not meaningful entropy threshold for h@xmath0 emission distinct presence emission indicates intracluster medium multiphase structure below entropy threshold component at @xmath10 k at @xmath11 k observations color gradients in bcgs similar conclusion sample 46 clusters 34 of 20 clusters with central entropy @xmath12 have bcgs with extended blue light consistent with star formation none clusters with central entropy @xmath13 have bcgs with colors bluer figure - central entropy measured from small x - ray aperture @xmath14 color gradients measured in @xmath15 and @xmath16 @xmath17 and @xmath18 transition to h@xmath0 emission and star formation sharp clear threshold expressed in central entropy or central cooling time presenting results as function of central entropy central cooling times h@xmath0 and blue light appear smaller than @xmath19 years gas within not enough for star formation restrictive condition mustin figures clusters with central entropy @xmath20 cooling time @xmath21 years show evidence star formation low entropy short cooling time not guarantee star formation rafferty et al . 2008 evidence star formation proceeds if agn heating rate less than gas cooling rate central galaxy close to x - ray brightness peak critical entropy threshold for multiphase gas star formation in bcgs may from electron thermal conduction cool star - forming clouds in systems size greater than critical length scale field length thermal conduction smoothes temperature inhomogeneities derive field length thermal balance for cool cloud radius @xmath22 in medium temperature @xmath23 electron thermal conduction sends energy into cloud at @xmath24 @xmath25 conduction coefficient suppression factor magnetic field structure radiative cooling cloud of energy at @xmath27 cooling function cooling conduction balance for systems with radius field length = 4 field length function of entropy when free - emission dominant cooling mechanism figure 3 illustrates criterion translates into entropy - radius planelong dashed lines give @xmath31 suppression factors @xmath32 1 magnetic suppression conduction complicated estimates @xmath33-@xmath34 below line gas within radius @xmath22 subsystem with @xmath35 conduction stabilize gas against cooling multiphase gas star formation above line region stability conduction leads to evaporation homogeneity solid lines in figure 3 show intracluster entropy profiles entropy survey cavagnolo et al . equation - gives @xmath36 @xmath37 for clusters with @xmath38 temperatures 2 kev to 12 kev solid lines represent typical intracluster entropy profiles with @xmath39 @xmath40 @xmath41 10 20 30 50 kev @xmath42 profiles with @xmath43 clusters with central star formation@xmath0 emission dip below threshold for conductive stabilization @xmath32 colored lines entropy profiles from reinforce blue lines show clusters with central star formation red lines show clusters without star formation h@xmath0 emission suggests conduction responsible for dependence h@xmath0 emission star formation on central entropysuppression factor @xmath26 uncertain threshold in @xmath44- plane above conduction heats evaporates cooler gas clouds faster than radiative losses transition from multiphase icm low entropy to homogeneous isothermal icm higher entropy observations transition expected location in @xmath44- plane for thermal conduction with @xmath33 threshold independent of origin line - emitting gas from condensation or stripping cool interstellar clouds from stripped gas above @xmath45 profile evaporate below profile persist indefinitely case - by - analysis effectiveness conduction in clusters agrees with conclusions figure 3 each cluster determined minimum value of @xmath46 @xmath47 full cooling function not emission if @xmath46 < f_c^{-1}$ ] conduction compensate for radiative cooling figure 4 blue gradients in bcgs of clusters with @xmath46 thermal conduction with @xmath33 determines bcg stars star - forming properties of bcgs depend on entropy structure host cluster s icm clusters with central entropy @xmath48 cooling time @xmath5 years have bcgs with h@xmath0 emission2008b blue cores rafferty indicative ongoing star formation clusters high central entropy show same features entropy threshold for star formation set by physics thermal conduction clusters entropy profiles follow law @xmath49 differing values @xmath7 cavagnolo conduction heat energy toward center faster than icm suppression factor @xmath51 expect clusters higher central entropy persistent multiphase medium conduction in lower - entropy clusters compensate for radiative cooling allowing star formation @xcite presented model agn feedback star formation thermally unstable cluster cores correspondence between star - formation threshold predictions conductive models indicates conduction important cores crucial to agn feedback mechanism star formation detailed hydrodynamical simulations conduction necessary determine phase structure icm cluster entropy profile
| 0.504044
| 3,303
| 1,638
|
, Saving $0.1 in GPT-4.
|
18,816
|
when using einstein s equations , there exist a number of techniques for embedding non - linear structures in cosmological backgrounds .
these include swiss cheese models , in which spherically symmetric vacua are patched onto friedmann solutions , and lattice models , in which weak - field regions are joined together directly . in this talk we will consider how these methods work in @xmath0 theories of gravity . we will show that their existence places constraints on the large - scale expansion of the universe , and that it may not always be possible to consider the friedmann solutions and weak - field solutions of a theory independently from each other .
|
there are a number of methods that can be used to consistently include non - linear structures in cosmological models .
the most well - known of these is probably the `` swiss cheese '' approach , in which spherically symmetric solutions are joined to homogeneous and isotropic robertson - walker geometries@xcite ( see fig . [ fig1](a ) ) .
an alternative approach is to take regions of perturbed minkowski space , and join them together at reflection symmetric boundaries@xcite ( see fig . [ fig1](b ) ) .
the former of these approaches has the benefit of admitting exact solutions . the latter benefits from admitting space - times with reduced symmetry , and from removing the regions of locally homogeneous and isotropic space - time entirely .
# 1 ( # 1 ) in the context of einstein s theory , the swiss cheese and lattice models can be used to elucidate the links between the gravitational fields of non - linear structures , and those of the cosmological models within which they reside . they show that the friedmann solutions of einstein s equations are entirely compatible with the coulomb - like gravitational fields that are expected on small scales .
one does not restrict the other . in this paper
we will consider the corresponding situation in the @xmath0 theories of gravity .
we will reach quite different conclusions in this case .
the @xmath0 theories of gravity are a generalisation of einstein s theory of gravity .
they are defined by replacing the ricci scalar , @xmath1 , in the einstein - hilbert action , with some function , @xmath0 .
variation with respect to the metric then gives the following set of field equations : [ fes ] g _
= + , where subscript @xmath1 denotes a derivative with respect to that quantity , and where @xmath2 is the energy - momentum tensor of the matter fields ( defined in the usual way ) . these equations are fourth order in derivatives of the metric , and if one want to join together two space - times then the following conditions@xcite are required for their union to be a solution of eq .
( [ fes ] ) : @xmath3^+_- & = & 0\ , , \hspace{40pt } \left [ \partial_y k \right]^+_- = 0 \ , , \hspace{40pt } \left [ \partial_y \gamma^*_{ab } \right]^+_- = 0 \ , , \\ f_{rr } \left [ \partial_y r \right]^+_- & = & 0\ , , \hspace{40pt } \left [ \partial_y r \right]^+_- = 0\ , , \label{jc2}\end{aligned}\ ] ] where @xmath4 is the normal derivative to the boundary , @xmath5 is its induced metric , and @xmath6 and @xmath7 are its trace and trace - free parts of the extrinsic curvature , respectively .
the brackets @xmath8^+_-$ ] denote the difference in a quantity when evaluated on either side of the boundary , and we have assumed here that there are no surface layers ( _ i.e. _ there are no @xmath9-function matter fields on the boundary ) .
the first three of these equations are the same as required by einstein s theory ( up to a factor of @xmath10 ) , while the last two are new .
these latter equations constitute additional requirements that a geometry must obey , in order to be a solution of the field equations . in much of the analysis reported here , we will us a post - newtonian appoximation to describe weak gravitational fields in the presence on non - linear structures . the leading - order part of the perturbed metric is then given by ds^2 -(1 - 2 ) dt^2 + ( 1 + 2 ) _
ij dx^i dx^j , where @xmath11 and @xmath12 can be interpreted as gravitational potentials .
the taylor series approximation to theories that can be expanded around @xmath13 is then given by [ anal ] f(r ) = f(0 ) + f_r(0 ) r + f_rr(0 ) r^2 + o(r^3 ) . if we take @xmath14 , then the gravitational potentials become@xcite [ anal2 ] = ( + f_rr r ) = ( u - f_rr r ) , where @xmath15 , @xmath16 and @xmath1 are functions that satisfy @xmath17 , @xmath18 , and @xmath19 .
the reader will note that the first two of these potentials are exactly the same as the potentials that result from solving einstein s equations with a cosmological constant ( where @xmath20 takes the place of the usual symbol @xmath21 ) .
the ricci scalar , @xmath1 , plays the role of an additional yukawa potential .
let us first consider swiss cheese constructions , in theories that can be expanded as in eq .
( [ anal ] ) .
if we model the region around a point - like mass using the post - newtonian approximation , discussed above , then an application of the junction conditions in eq .
( [ jc1 ] ) tells us that the radius of the vacuole that surrounds it must obey@xcite @xmath22 where the boundary is at coordinate distance @xmath23 from the centre of the vacuole , and where @xmath24 is a constant .
the first two terms in each of these equations behave in the same way as the contributions from dust and @xmath21 in the friedmann solutions of einstein s equations . the second term in eq .
( [ sc1 ] ) behaves in the same way as a spatial curvature term , and the last terms in eqs .
( [ sc1 ] ) and ( [ sc2 ] ) have no counterparts in the solutions of einstein s equations . in we now impose the remaining junction conditions , from eq .
( [ jc2 ] ) , then we see that @xmath25 on the boundary , such that the last terms in each of eqs .
( [ sc1 ] ) and ( [ sc2 ] ) must vanish . recall that these are the only two terms that show any difference from the solutions of einstein s equations , and one
is led to the conclusion that the only swiss cheese models that can be constructed within this class of theories are ones that expand at leading order in a way that is identical to the friedmann solutions of einstein s equations with @xmath21 .
this is a strong restriction , imposed on the large - scale expansion simply by demanding that the theory have a well - defined post - newtonian limit in the vicinity of point - like masses .
. the lattice models , while mathematicall and conceptually quite different from the swiss chees models , display a remarkable similarity in the final result of their construction . in this case
it can be shown , as a result of both the field equations and the junction conditions , that the position of the boundary must satisfy@xcite , where here the boundary is taken to be at coordinate distance @xmath26 from the centre of the lattice cell .
this is again for theories that can be expanded as in eq .
( [ anal ] ) .
the right - hand side of the equation above takes the same form as the source terms in the friedmann solutions of einstein s equation in the presence of dust and @xmath21 .
we therefore have the same result as before : the only large - scale expansion that is possible , in the leading - order behaviour of these constructions , is identical to that of the friedmann solutions of einstein s equations with @xmath21 .
the results derived so far seem quite limiting , but one might question whether they are a result of assuming the theory can be expanded as in eq .
( [ anal ] ) .
another possiblity is to consider non - analytic functions , where this is not possible .
the simplest of these would be theories with @xmath27 .
exact solutions for point - masses surrounded by spherically symetric vacua have been found in refs . & .
a static vacuum solution is given by@xcite [ e1 ] ds^2 = -a_1(r ) dt^2 + + r^2 ( d^2 + ^2 d ^2 ) , where @xmath28 a non - static solution , on the other hand , also exists , and is given by@xcite [ e2 ] ds^2 = -a_2(r ) dt^2 + t^ b_2(r ) ( dr^2 + r^2 ( d^2 + ^2 d ^2 ) ) , where @xmath29 the quantities @xmath30 and @xmath31 that appear in these equations are both arbitrary constants .
the only other remaining quantitiy is @xmath32 . although the weak - field limit of these non - analytic theories is cumbersome to probe , these exact solutions can be used to try and construct swiss cheese models .
if one attempts this , however , then one finds that no such constructions are possible@xcite .
the junction conditions across the boundary can not be satisfied unless @xmath33 , which reduces the theory to that of einstein .
this is true for the geometry described in eq .
( [ e1 ] ) , and the geometry described in eq .
( [ e2 ] ) .
it is also true of the schwarzschild solution , which is often another solution of the field equations of @xmath0 theories .
the only exception to this latter case is if @xmath0 is linear in @xmath1 , which is again just the einstein equations with @xmath21 .
so , once again , we find that the only large - scale expansion that is possible is the same as that prescribed by the friedmann solutions of einstein s equations .
another family of theories that can not be expanded as in eq .
( [ anal ] ) are those considered in refs . , & .
these theories have attracted a lot of attention in the cosmology community , so it seems well worth investigating them within the current context .
we start by expanding the quantities @xmath34 and @xmath10 in terms of their order - of - smallness in the post - newtonian expansion .
this gives f= f^(0 ) + f^(2 ) + o(^4 ) f_r = f_r^(0 ) + f_r^(2 ) + o(^4 ) , where superscripts in brackets denote the order of a quantity in @xmath35 , which is the post - newtonian expansion parameter .
this is exactly the way that the weak - field limit of these theories is usually treated .
if one now tries to build one of the constructions we considered earlier , then one is immediately led to the following@xcite : [ first ] f^(0 ) = 0 f_r^(0 ) = q(t ) , where @xmath36 is an , as yet unspecified , function of time only .
this leads us to consider two possible classes of theory : * class i : * these are theories in which @xmath37constant .
it immediately follows that @xmath38 in this class , where @xmath39 .
* class ii : * these are theories in which @xmath40 constant .
this requires @xmath41 , as @xmath42 .
for this to be true implies @xmath1 is a function of time only .
let us consider each of these classes separately : this class of theories contains all of those considered in refs .
, & . in this case
the field equations ( [ fes ] ) and junction conditions ( [ jc1 ] ) give@xcite [ classi ] = ( + f_r ) = ( u- f_r ) , where @xmath43 and @xmath44 , and where @xmath45 constant .
the reader can once again note that the @xmath15 and @xmath16 functions are exactly as one would expect from the solutions of einstein s equations with a cosmological constant ( where @xmath46 now plays the role of what is usually denoted @xmath21 ) .
the only possible new behaviour comes the the terms containing @xmath47 , which must obey@xcite ^2 f_r = r + f(0 ) - . if , however , we impose the junction conditions from eq .
( [ jc2 ] ) , then it can be seen that the normal derivative of @xmath47 must vanish on the boundary .
this means that the extra terms in eq .
( [ classi ] ) can not contribute to the motion of the boundary .
we therefore find , once again , that the only possible large - scale expansion is indistinguishable from that found in the friedmann solutions of einstein s equations with @xmath21 .
the leading - order part of @xmath1 , in all theories in this class , must be a function of time only .
this immediately implies that the leading - order part of @xmath48 must also be a function of time only , as @xmath49 .
if this is true , it is straightforward to show the post - newtonian parameter @xmath50 must be given by@xcite = .
this is strongly inconsistent with observational bounds , and occurs because the fifth - force that occurs in this class of @xmath0 theories can not be screened by the chameleon mechanism .
this can be seen from the equation of motion of the effective scalar degree of freedom , which is given by ^2 f_r^(2 ) = - + homogeneous terms .
there does not exist sufficient freedom to create a non - trivial potential for @xmath51 in this expression , and so the fifth - force goes un - screened .
this means that all theories within this class , while potentially admitting interesting new cosmological behaviour , can not be considered observationally viable .
we find that , in the presence of non - linear structure , the observationally viable theories we have studied all evolve on large scale like the friedmann solutions of einstein s equations with @xmath21 .
we also note that the oscillatory behaviour that is generically present in the friedmann solutions of many of these @xmath0 theories@xcite appears to be supressed .
this indicates that either the weak - field limit of these theories is destroyed when the oscillations occur , or that the existence of non - linear structures prevents the oscillations from occuring at all .
whatismore , in every viable case , the effective cosmological constant that emerges must be constructed from constant parameters that appear linearly at lowest order in the gravitational lagrangian ( _ i.e. _ just like @xmath21 does ) .
this leads us to the conclusion that these theories do not solve any of the problems associated with the cosmological constant , and hence that the difficulties created by introducing a new light degree of freedom on small scales have no obvious benefit .
|
methods include non - linear structures in cosmological models known swiss cheese '' approach spherically symmetric solutions joined to homogeneous isotropic robertson - walker geometries alternative approach regions perturbed minkowski space at reflection symmetric boundaries former admitting exact solutions latter admitting space - times with reduced symmetry removing regions locally homogeneous isotropic space - time einstein s theory swiss cheese lattice models elucidate links between gravitational fields of non - linear structures cosmological models show friedmann solutions of einstein s equations compatible with coulomb - like gravitational fields on small scales one restrict other consider situation in @xmath0 theories of gravity different conclusions generalisation of einstein s theory gravity defined by replacing ricci scalar , @xmath1 in einstein - hilbert action with function , @xmath0 variation metric gives field equations : [ fes ] g _ = + subscript @xmath1 derivative quantity @xmath2 is energy - momentum tensor of matter fieldsequations fourth order derivatives metric join two space - times conditions@xcite required for union solution eq @xmath3^+_- & = & 0\\hspace{40pt }\left\partial_y k\right]^+_- = 0 _y\gamma^*_\right]^+_- = 0 \partial_y r \right]^+_- & = & 0\_y r\right]^+_- = 0\{aligned} @xmath4 normal derivative to boundary @xmath5 induced metric @xmath6 and @xmath7 trace trace - free parts of extrinsic curvature brackets @xmath8^+_-$ ] denote difference in quantity evaluated either side boundary assumed no surface layers no @xmath9-function matter fields on boundary first three equations same required by einstein s theory up to factor of @xmath10 ) last two new latter equations additional requirements geometry obey solution field equations post - newtonian appoximation describe weak gravitational fields non - linear structuresleading - order perturbed metric by ds^2 -(1 - 2 ) dt^2 + ( 1 + 2 ) _ ij dx^i dx^j @xmath11 @xmath12 as gravitational potentials taylor series approximation theories @xmath13 by f(r ) = f + f_r r + f_rr r^2 + o(r^3 ) @xmath14 gravitational potentials become@xcite [ anal2 = ( + f_rr r ) = ( u - f_rr r ) @xmath15 @xmath1 @xmath17 @xmath19 first two potentials same as solving einstein s equations with cosmological constant @xmath20 @xmath21 ricci scalar @xmath1 additional yukawa potential consider swiss cheese constructions theories eq . region around point - like mass post - newtonian approximation junction conditions radius vacuole obey@xcite @xmath22 boundary at coordinate distance @xmath23 from centre vacuole @xmath24 constant first two terms equations as contributions from dust @xmath21 solutions einstein s equations second term[ sc1 ] ) behaves as spatial curvature term last terms in eqs sc1 and sc2 ] ) no counterparts in einstein s equations impose remaining junction conditions from eq . ( [ jc2 ] ) @xmath25 on boundary last terms in eqs [ sc1 ] ) and sc2 ] ) must vanish only two terms show difference from solutions einstein s equations only swiss cheese models can expand at identical to friedmann solutions einstein s equations with @xmath21 strong restriction on large - scale expansion - defined post - newtonian limit in point - like masses lattice models different from swiss chees models display similarity in final result construction position of boundary must satisfy@xcite at coordinate distance @xmath26 from centre of lattice cell theories expanded as in eq . ( [ anal ] ) right - hand side of equation takes same form as source terms in friedmann solutions of einstein s @xmath21 same result only large - scale expansion possible is identical to friedmann solutions of einstein s equations with @xmath21results limiting question assuming theory eq . consider non - analytic functions possible simplest theories with @xmath27 solutions for point - masses symetric vacua found in refs static vacuum solution by@xcite [ e1 ] ds^2 = -a_1(r ) dt^2 + + r^2 ( d^2 + ^2 d ^2 ) @xmath28 non - solution exists given by@xcite [ e2 ] ds^2 = -a_2(r ) dt^2 + t^ b_2(r ) ( dr^2 + r^2 ( d^2 + ^2 d ^2 ) ) @xmath29 quantities @xmath30 @xmath31 arbitrary constants remaining @xmath32 weak - field limit non - analytic theories cumbersome exact solutions construct swiss cheese models no constructions possible junction conditions across boundary satisfied unless @xmath33 reduces theory to einstein true for geometry eq e1 e2 schwarzschild solution solution field equations of @xmath0 theories exception if @xmath0 linear in @xmath1 einstein equations with @xmath21only large - scale expansion possible same friedmann solutions of einstein s equations theories not expanded in refs . , & . theories attracted attention cosmology worth investigating current context expanding quantities @xmath34 @xmath10 order - of - smallness in post - newtonian expansion gives f= f^(0 ) + f^(2 ) + o(^4 ) f_r = f_r^(0 ) + f_r^(2 ) + o(^4 ) superscripts in brackets denote order of quantity in @xmath35 post - newtonian expansion parameter weak - field limit of theories treated build led to@xcite f^(0 ) = 0 f_r^(0 ) = q(t ) @xmath36 function of time only two classes of theory class i @xmath37constant follows @xmath38 class ii @xmath40 constant requires @xmath41 @xmath42 implies @xmath1 function of time only consider classes separately class theories contains all in refs . , & .field equations fes junction conditions [ jc1 ] give@xcite [ classi = ( + f_r ) = ( u- f_r ) @xmath43 @xmath44 @xmath45 constant @xmath15 @xmath16 functions from einstein s equations with cosmological constant @xmath46 role @xmath21 new behaviour terms @xmath47 obey@xcite ^2 f_r = r + f(0 ) - impose junction conditions from jc2 normal derivative of @xmath47 must vanish on boundary extra terms in eq classi contribute to motion boundary possible large - scale expansion from friedmann solutions s equations with @xmath21 leading - order part of @xmath1 function of time only implies @xmath48 function of time only @xmath49 post - newtonian parameter @xmath50 given by@xcite = inconsistent with observational bounds fifth - force @xmath0 theories not screened by chameleon mechanism from equation of motion of effective scalar degree of freedom given by ^2 f_r^(2 ) = - + homogeneous terms sufficient freedom non - trivial potential for @xmath51 expression fifth - force un - screened all theories class potentially admitting new cosmological behaviour observationally viable non - linear structure observationally viable theories evolve on large scale like friedmann solutions of einstein s equations with @xmath21 oscillatory behaviour present in friedmann solutions of @xmath0 theories@xcite supressed weak - field limit destroyed when oscillations occur or non - linear structures prevents oscillations effective cosmological constant must be constructed from constant parameters linearly at lowest order in gravitational lagrangian like @xmath21 conclusion theories solve problems cosmological constant difficulties introducing new light degree of freedom on small scales no benefit
| 0.505685
| 3,170
| 1,635
|
, Saving $0.1 in GPT-4.
|
18,822
|
the kinematical properties of elliptical galaxies formed during the mergers of equal mass , stars+gas+dark matter spiral galaxies are compared to the observed low velocity dispersions found for planetary nebulae on the outskirts of ellipticals , which have been interpreted as pointing to a lack of dark matter in ellipticals ( which poses a problem for the standard model of galaxy formation ) .
we find that the velocity dispersion profiles of the stars in the simulated ellipticals match well the observed ones .
the low outer stellar velocity dispersions are mainly caused by the radial orbits of the outermost stars , which , for a given binding energy must have low angular momentum to reach their large radial distances , usually driven out along tidal tails .
|
there is a wide consensus that spiral galaxies must be embedded within dark matter halos , as there have been no other good explanations of the observed flat rotation curves of spiral galaxies , unless one resorts to modifying physics ( e.g. mond , see mcgaugh in these proceedings ) .
moreover , dissipationless cosmological @xmath0-body simulations lead to structures , whose halos represent most spiral galaxies ( hayashi et el . 2005 ; stoehr 2005 ) .
if elliptical galaxies originate from major mergers of spiral galaxies ( toomre 1977 ; mamon 1992 ; baugh , cole & frenk 1995 ; springel et al .
2001a ) , then they too should possess dark matter halos .
using planetary nebulae ( pne ) as tracers of the dark matter at large radii , romanowsky et al .
( 2003 ) found low velocity dispersions for their outermost pne , which after some simple jeans modeling and more sophisticated orbit modeling led them to conclude to a dearth of dark matter in ordinary elliptical galaxies .
this result is not expected in the standard model of structure and galaxy formation .
this has led us ( dekel et al . 2005 ) to analyze the final outputs of @xmath0-body simulations of spiral galaxies merging into ellipticals .
the merger simulations we have analyzed were run by cox ( 2004 , see also cox et al .
2004 ) . in these simulations , the initial spiral galaxies had an exponential spherical bulge and a thin exponential disk , as well as a thin gaseous exponential disk and a spherical nfw ( navarro et al .
1996 ) dark matter halo .
the particles were advanced with the gadget tree - sph code ( springel et al .
2001b ) until 23 gyr after the final merger .
the galaxies were thrown at one another on a variety of near parabolic orbits ( see fig . [ snapshots ] ) .
the left hand plot of figure [ 2dplots ] shows the surface density of the different components of the simulated galaxies , and the surface brightness profiles of galaxies ngc 3379 and ngc 821 .
the match is excellent , except perhaps in the very inner regions , where the simulations predict too much mass .
the @xmath1 and @xmath2 axes are normalized to the values at the half - projected light ( mass ) radius , i.e. effective radius , @xmath3 . , title="fig:",width=207 ]
the @xmath1 and @xmath2 axes are normalized to the values at the half - projected light ( mass ) radius , i.e. effective radius , @xmath3 . , title="fig:",width=253 ]
more important , the right - hand plot of figure [ 2dplots ] shows that the simulated and observed velocity dispersion profiles are very similar . in other words ,
_ our simulations , which include normal amounts of dark matter , reproduce very well the observed velocity dispersion profiles_. hence , we conclude that _ the low outer velocity dispersions do not imply a lack of dark matter in elliptical galaxies_.
what causes this discrepancy between the _ kinematic _ modeling of romanowsky et al . , which concludes to no or little dark matter in ellipticals , and the _ dynamical _ modeling , which concludes to a normal content of dark matter in ellipticals ? figure [ beta ] shows that for @xmath4 , while the dark matter particles travel along very slightly radial orbits , as found in cosmological simulations ( see mamon & okas 2005 , and references therein ) , _ the outer stellar particles travel along very elongated orbits_. why do the stars at a few @xmath3 travel on much more elongated orbits than do the dark matter particles at the same distances from the elliptical galaxy center ?
since the stars in the initial spiral galaxies lie at small radii ( while the dark matter particles lie in a wide range of radii ) , they will usually end up at small radii in the merging pair , since the most bound particles usually remain the most bound ( barnes 1992 ) .
so the outermost stars must have traveled along elongated orbits to reach their large present radial distances : i.e. , not only they have low binding energies , but they must have low angular momentum given their binding energy .
a more detailed analysis indicates that these stars are driven outwards on nearly radial orbits in the tidal tails ( see fig .
[ snapshots ] ) that are formed after the first passage of the two spirals . in a companion contribution ( mamon , in these proceedings )
, we analyze in further detail what quantity of dark matter can be derived from kinematical modeling and what we can learn from the detailed structure and internal kinematics of the simulated merger remnants .
barnes , j. e. 1992 , apj 393 , 484 baugh , c. m. , cole , s. & frenk , c. s. 1996 , mnras 283 , 1361 cox , t. j. 2004 , phd thesis , univ . of california at santa cruz cox ,
t. j. , primack , j. , jonsson , p. & somerville , r. s. 2004 , apjl 607 , l87 dekel , a. , stoehr , f. , mamon , g. a. , cox , t. j. et al .
2005 , nat 437 , 707 hayashi , e. , navarro , j. f. , jenkins , a. et al .
2005 , arxiv : astro - ph/0408132 mamon , g. a. 1992 , apjl 401 , l3 mamon , g. a. & okas , e. l. 2005 , mnras 363 , 705 navarro , j. f. , frenk , c. s. & white , s. d. m. 1996 , apj 464 , 563 romanowsky , a. , douglas , n. , arnaboldi , m. et al . 2003 , sci 301 , 1696 springel , v. , white , s. d. m. , tormen , g. & kauffmann , g. 2001a , mnras 328 , 726 springel , v. , yoshida , n. & white , s. d. m. 2001b , newa 6 , 79 stoehr , f. 2006 , mnras , 365 , 147 toomre , a. 1977 , in evolution of galaxies and stellar populations , ed . b. m. tinsley & r. b. larson ( new haven : yale univ .
press ) , p. 401
|
consensus spiral galaxies embedded within dark matter halos no other explanations of flat rotation curves unless modifying physics mond dissipationless cosmological @xmath0-body simulations lead to structures halos represent most spiral galaxies hayashi 2005 stoehr 2005 elliptical galaxies originate from mergers spiral galaxies toomre 1977 mamon 1992 1995 springel possess dark matter halos planetary nebulae tracers dark matter romanowsky et al . 2003 found low velocity dispersions for outermost pne dearth of dark matter in elliptical galaxies result not expected in standard model structure galaxy formation led us dekel 2005 analyze final outputs @xmath0-body simulations spiral galaxies merging into ellipticals merger simulations run by cox 2004 initial spiral galaxies had spherical bulge thin exponential disk thin gaseous exponential disk spherical navarro 1996 dark matter halo particles advanced with gadget tree - sph code springel 2001b until 23 gyr after final merger galaxies thrown at on near parabolic orbits see fig .left hand plot figure 2dplots shows surface density of simulated galaxies surface brightness profiles of galaxies ngc 3379 and ngc 821 match excellent except inner regions simulations predict too much mass @xmath1 @xmath2 axes normalized to half - projected light radius effective radius axes normalized half - projected light radius right - hand plot shows simulated and observed velocity dispersion profiles similar simulations normal amounts dark matter reproduce well observed velocity dispersion profiles low outer velocity dispersions not imply lack of dark matter in elliptical galaxies causes discrepancy between kinematic _ modeling of romanowsky et al . no or little dark matter in ellipticals and dynamical modeling normal content dark matter ellipticals ? figure [ beta ] shows for @xmath4 dark matter particles travel slightly radial orbits outer stellar particles travel elongated orbitsstars at @xmath3 travel more elongated orbits dark matter particles from elliptical galaxy center stars in initial spiral galaxies at small radii dark matter particles wide range radii end up at small radii in merging pair most bound particles remain bound ( barnes 1992 ) outermost stars elongated orbits reach large radial distances low binding energies low angular momentum detailed analysis stars driven outwards on nearly radial orbits in tidal tails fig . snapshots formed after first passage two spirals companion contribution mamon analyze quantity dark matter from kinematical modeling structure kinematics of simulated merger remnants barnes 1992 , apj 393 , 484 baugh cole frenk 1996 mnras 283 , 1361 cox t. j. 2004 phd thesis univ . of california at santa cruz cox primack jonsson somerville 2004 apjl 607 , l87 dekel stoehr mamon cox t. 2005 nat 437 , 707 hayashi navarro jenkins2005 arxiv astro - ph/0408132 mamon 1992 apjl 401 l3 mamon okas 2005 mnras 363 , navarro frenk white d. 1996 apj 464 , 563 romanowsky douglas arnaboldi 2003 sci 301 , 1696 springel white. tormen kauffmann 2001a mnras 328 , 726 springel yoshida white d.. 2001b newa 6 , 79 stoehr 2006 mnras 365 , 147 toomre 1977 evolution galaxies stellar populations tinsley larson new haven yale univ press p. 401
| 0.261961
| 1,464
| 735
|
, Saving $0.0 in GPT-4.
|
18,827
|
unlike @xmath0-plane nitrides , non - polar " nitrides grown in e.g. the @xmath1-plane or @xmath2-plane orientation encounter anisotropic in - plane strain due to the anisotropy in the lattice and thermal mismatch with the substrate or buffer layer .
such anisotropic strain results in a distortion of the wurtzite unit cell and creates difficulty in accurate determination of lattice parameters and solid phase group - iii content ( @xmath3 ) in ternary alloys . in this paper
we show that the lattice distortion is orthorhombic , and outline a relatively simple procedure for measurement of lattice parameters of non - polar group iii - nitrides epilayers from high resolution x - ray diffraction measurements .
we derive an approximate expression for @xmath3 taking into account the anisotropic strain .
we illustrate this using data for @xmath1-plane algan , where we measure the lattice parameters and estimate the solid phase al content , and also show that this method is applicable for @xmath2-plane structures as well .
a1 .
high resolution x - ray diffraction ; a3 .
metalorganic vapor phase epitaxy ; b1 .
non - polar ; b2 .
semiconducting iii - v materials . _
pacs codes _ : 81.05.ea , 78.55.cr , 81.15.gh , 61.05.cp , 61.50.ah
|
group iii - nitrides semiconductors have potential applications in optoelectronics and microelectronics devices .
nitride semiconductors epilayers grown along the @xmath4 @xmath0-axis of the wurtzite crystal structure suffer from strong undesirable spontaneous and piezoelectric polarization fields , which give rise to internal electrical fields @xcite and impair device performance . in quantum wells these fields
spatially separate the electrons and holes reducing the overlap of their wave functions , and causing a reduction of the recombination efficiency and red - shift of the emission peak in light - emitting devices @xcite .
a solution to avoid the deleterious polarization - induced electric field effects is to use group - iii nitride layers in crystal orientations which have no polarization field in the growth direction , and hence across the device active region @xcite .
therefore , there is extensive ongoing research towards the growth of non - polar " @xmath5 @xmath1-plane and @xmath6 @xmath2-plane ( @xmath7-axis ) group iii - nitrides .
these non - polar @xmath1- or @xmath2-plane epilayers are generally grown on @xmath8- or @xmath2-plane sapphire substrates respectively . the lattice mismatch and thermal expansion coefficients of these nitride epilayers with respect to the substrate
are different along @xmath9 and @xmath7-directions .
this gives rise to an _ anisotropic _ in - plane strain which distorts the basal - plane of the hexagonal unit cell .
similar anisotropic differences in lattice mismatch and expansion coefficients also exist within the different members of the iii - nitride family , hence there is an anisotropic in - plane strain even when growing for example an @xmath1-plane algan epilayer on a @xmath1-plane gan buffer layer .
the distortion of the basal plane has also been observed for similar reason in case of @xmath0-plane gan grown on @xmath1-plane sapphire substrate @xcite . in @xmath0-plane oriented films ,
epilayers are under uniform in - plane strain , which deforms the unit cell but preserves the hexagonal symmetry of the basal plane . in that case
the determination of lattice parameter and estimation of group iii molar fraction in the ternary alloy ( for example al content of algan films ) is relatively straightforward @xcite .
however , for the non - polar orientations , the anisotropic in - plane strain results a distortion of the wurtzite unit cell which breaks the hexagonal symmetry .
further , the orientation of the @xmath1-plane nitride epilayer on @xmath8-plane sapphire substrate results in a reduced number of available lattice points in the reciprocal space within the limiting - sphere that are accessible for diffraction measurements .
this makes determination of lattice parameters for non - polar nitrides and consequently the estimation of group iii composition of non - polar nitrides very difficult @xcite .
a few different procedures for lattice parameter determination of such structures have been discussed in the literature .
darakchieva et al .
@xcite detail a procedure that requires measuring several symmetric and skew - symmetric planes at multiple azimuth positions in an edge - symmetric geometry .
another approach by roder et al.@xcite uses measurements of interplanar spacings derived from a combination of 9 symmetric , asymmetric , and skew - symmetric reflections , which are weighted by their corresponding fwhm values and used in a fitting routine to match to an orthorhombic structure via an error minimization routine . in this paper
we suggest a slightly different procedure for measuring the lattice parameters for such distorted systems using high resolution x - ray diffraction ( hrxrd ) .
we first show that the anisotropic strain results in an orthorhombic distortion of the unit cell , and derive a general expression for the interplanar distance @xmath10 in such structures . using the interplanar distances determined from multiple symmetric and skew - symmetric reflections , we obtain the lattice parameters via a standard least - square error minimization routine that is easily implemented in standard mathematical software packages using a matrix formulation .
we also derive an approximate expression for the ternary alloy composition of al@xmath11ga@xmath12n epilayers , where the al content @xmath3 is obtained solving the stress - strain tensor taking into account the anisotropic strain .
the procedure is illustrated using measurements on @xmath1-plane algan epilayers grown on aln buffer layers on r - plane sapphire substrates .
we also show that the procedure is applicable for @xmath2-plane nitrides as well .
the algan epilayers were grown via metal organic vapour phase epitaxy ( movpe ) in a @xmath13 closed - coupled showerhead reactor .
trimethylgallium ( tmga ) , trimethylaluminium ( tmal ) , and ammonia ( nh@xmath14 ) are used as precursors and pd - diffused hydrogen ( h@xmath15 ) as carrier gas .
about @xmath16 thick algan epilayers were grown on aln buffer layer .
the details of the growth procedure can be found in ref .
the lattice parameters measurement were carried out by using a philips xpert@xmath17 high resolution x - ray diffractometer with a symmetric ge(@xmath18 ) hybrid monochromator and an asymmetric triple - axis analyzer and pixcel solid state detector array .
the 2@xmath19 value of a set of planes @xmath5 , @xmath20 , @xmath21 , @xmath22 , @xmath23 , @xmath20 , @xmath5 , @xmath24 , @xmath25 , @xmath26 , @xmath27 were measured to confirm the orthorhombic distortion and to estimate the lattice parameters .
absorption measurements were done on backside polished samples using a cary @xmath28 spectrophotometer to estimate the band gap of the epilayers .
fig 1(a ) shows a schematic diagram of the relative unit cell orientation of an @xmath1-plane iii - nitride epilayer on @xmath8-plane sapphire .
the in - plane epitaxial relationships between the group iii - nitride layer and sapphire are @xmath29_{nitride}$ ] @xmath30 @xmath31_{sapphire}$ ] and @xmath32_{nitride}$ ] @xmath30 @xmath33_{sapphire}$ ] .
the thermal expansion co - efficients in the respective directions and the lattice mismatch are shown in the table 1 .
it is evident that the lattice and thermal mismatch along @xmath29 $ ] and @xmath32 $ ] are different which gives rise to the anisotropic strain in the overlayer and thus distorts the basal plane of the unit cell as shown schematically in fig 1(b - c ) ( solid line ) .
further , the thermal mismatch along @xmath0 ( @xmath34}|$ ] ) and along @xmath2 ( @xmath35}|$ ] ) are larger for gan / aln compared to the gan / sapphire and aln / sapphire cases .
( a ) schematic diagram showing the orientation of wurtzite unit cell of @xmath5 @xmath1-plane oriented nitride epilayer on @xmath36 @xmath8-plane sapphire substrate .
anisotropic in - plane strain results orthorhombic distortion and requires at least three lattice parameters @xmath37 ( sidewall ) , @xmath38 ( top ) and @xmath0 for complete description of the unit cell .
( b - c ) the dotted lines and solid lines show the basal plane of a perfect and distorted hexagonal unit cell respectively .
( b ) a choice of coordinate axis that involves four independent lattice variables @xmath1 , @xmath39 , @xmath0 and @xmath40 , whereas in ( c ) symmetry allows the reduction of one parameter ( @xmath1=@xmath39 ) and gives a simpler expression for @xmath10 and also helps to visualize the lattice points in the reciprocal space.,width=529 ] .thermal expansion and lattice mismatch [ cols="^,^,^,^ " , ] the measurement shows that the value of @xmath3 estimated from xrd and optical transmission agrees within @xmath41 .
the @xmath3 is slightly lower than the @xmath42 because of parasitic reaction between tmal and nh@xmath14 .
a detailed discussion of the variation of strain and distortion with al - content , and its effect on the microstructure is discussed in references @xcite and @xcite , and is not presented here as the emphasis of this work is to discuss the procedure rather than the results .
in conclusion , we have observed that the anisotropic in - plane strain results in an orthorhombic distortion in the wurtzite unit cell for non - polar @xmath1-plane nitrides . we have suggested a quick method for confirming such a distortion to be orthorhombic , and derived an expression for @xmath10 value for such distorted unit cells .
we have also provide relatively simple procedure for estimation of accurate lattice parameters using multiple reflections and minimizing the error by a least square method . since the orthorhombic distortion creates a difficulty for estimating group iii content in ternary alloys , we have presented a technique which estimates the the correct al content in @xmath1-plane algan films taking into account the effect of anisotropic strain .
we have also shown that this method is equally applicable for @xmath2-plane nitrides as well .
these procedure should be valuable to researchers working on a wide range of non - polar iii - nitride epilayers .
v. darakchieva , t. paskova , m. schubert , h. arwin , p.p .
paskov , b. monemar , d. hommel , m. heuken , j. off , f. scholz , b.a .
haskell , p.t .
fini , j.s . speck and s. nakamura ,
b * 75 * , ( 2007 ) 195217 .
|
group iii - nitrides semiconductors applications in optoelectronics microelectronics nitride semiconductors epilayers @xmath4-axis wurtzite crystal suffer strong polarization fields internal electrical fields impair device performance in quantum wells fields separate electrons holes reducing overlap wave functions recombination efficiency red - shift emission peak devices solution polarization effects use group - iii nitride layers in crystal orientations no polarization field growth research growth non - polar ) group iii - nitrides non - polar epilayers grown on @xmath8- @xmath2-plane sapphire substrates lattice mismatch thermal expansion coefficients epilayers different along @xmath9 @xmath7-directions anisotropic in - plane strain distorts basal - plane hexagonal unit cell similar anisotropic differences in lattice mismatch expansion coefficients exist members iii - nitride family anisotropic in - plane strain growing @xmath1-plane algan epilayer on gan buffer layerdistortion basal plane observed in @xmath0-plane gan grown on @xmath1-plane sapphire substrate in-plane oriented films epilayers under uniform in - plane strain deforms unit cell preserves hexagonal symmetry basal plane determination lattice parameter estimation group iii molar fraction in ternary alloy straightforward non - polar orientations anisotropic in - plane strain wurtzite unit cell breaks hexagonal symmetry orientation @xmath1-plane nitride epilayer on @xmath8-plane sapphire substrate results reduced lattice points reciprocal space for diffraction measurements makes determination lattice parameters for non - polar nitrides estimation group iii composition difficult different procedures for lattice parameter determination discussed darakchieva et measuring symmetric skew - symmetric planes positions approach roder et al. uses measurements interplanar spacings from 9 symmetric skew - symmetric reflections weighted by fwhm values orthorhombic structure different procedure for measuring lattice parameters for distorted systems using high resolution x - ray diffractionanisotropic strain orthorhombic distortion unit cell expression interplanar distance @xmath10 structures distances reflections obtain lattice parameters least - square error minimization routine derive approximate expression ternary alloy composition al@xmath11ga@xmath12n epilayers al content @xmath3 solving stress - strain tensor anisotropic strain procedure measurements @xmath1-plane algan epilayers aln buffer layers - plane sapphire substrates applicable @xmath2-plane nitrides algan epilayers grown metal organic vapour phase epitaxy closed - coupled showerhead reactor trimethylgallium trimethylaluminium ammonia precursors pd - diffused hydrogen carrier gas @xmath16 thick algan epilayers grown on aln buffer layer details growth procedure ref lattice parameters measurement philips xpert@xmath17 high resolution x - ray diffractometer symmetric hybrid monochromator asymmetric triple - axis analyzer pixcel solid state detector array2@xmath19 value planes measured confirm orthorhombic distortion estimate lattice parameters absorption measurements on backside polished samples cary @xmath28 spectrophotometer estimate band gap epilayers fig 1(a ) shows relative unit cell orientation @xmath1-plane iii - nitride epilayer on @xmath8-plane sapphire in - plane epitaxial relationships between group iii - nitride layer sapphire are @xmath29_{nitride}__ thermal expansion co - efficients directions lattice mismatch shown table 1 lattice thermal mismatch along @xmath29 @xmath32 $ ] different anisotropic strain overlayer distorts basal plane unit cell fig 1(b - c ) thermal mismatch along @xmath0 @xmath2 larger for gan / aln compared gan / sapphire aln / sapphire cases schematic diagram orientation unit cell @xmath5 @xmath1-plane oriented nitride epilayer on @xmath36 @xmath8-plane sapphire substrateanisotropic in - plane strain results orthorhombic distortion requires three lattice parameters @xmath37 for description unit cell dotted lines solid lines show basal plane perfect distorted hexagonal unit cell choice coordinate axis involves four lattice variables @xmath1 symmetry allows reduction one parameter @xmath1=@xmath39 simpler expression for @xmath10 visualize lattice points reciprocal space.thermal expansion lattice mismatch measurement shows value @xmath3 optical transmission agrees within @xmath41 @xmath3 slightly lower than @xmath42 parasitic reaction between tmal nh@xmath14 detailed discussion variation strain distortion with al - content effect microstructure in references not procedure observed anisotropic in - plane strain orthorhombic distortion in wurtzite unit cell for non - polar @xmath1-plane nitrides suggested method confirming distortion derived expression for @xmath10 value for distorted unit cells simple procedure for estimation accurate lattice parameters multiple reflections minimizing error least square methodorthorhombic distortion difficulty estimating group iii content ternary alloys presented technique estimates correct al content @xmath1-plane algan films anisotropic strain method applicable @xmath2-plane nitrides procedure valuable researchers non - polar iii - nitride epilayers. darakchieva. paskova. schubert arwin paskov monemar. hommel. heuken j. off scholz haskell fini speck s. nakamura * 75 ( 2007 ) 195217
| 0.346539
| 2,177
| 1,091
|
, Saving $0.1 in GPT-4.
|
18,833
|
we show that the widely used density dependent magnetic field prescriptions , necessary to account for the variation of the field intensity from the crust to the core of neutron stars violate one of the maxwell equations .
we estimate how strong the violation is when different equations of state are used and check for which cases the pathological problem can be cured .
|
[ [ section ] ] the physics underlying the quantum chromodynamics ( qcd ) phase diagram has still not been probed at all temperatures and densities . while some aspects can be confirmed either by lattice qcd or experimentally in heavy ion collisions for instance ,
other aspects depend on extraterrestrial information .
one of them is the possible constitution and nature of neutron stars ( ns ) , which are compact objects related to the low temperature and very high density portion of the qcd phase diagram .
astronomers and astrophysicists can provide a handful of information obtained from observations and infer some macroscopic properties , namely ns masses , radii , rotation period and external magnetic fields , which have been guiding the theory involving microscopic equations of state ( eos ) aimed to describe this specific region of the qcd phase diagram .
[ [ section-1 ] ] there are different classes of ns and three of them have shown to be compatible with highly magnetised compact objects , known as magnetars @xcite , namely , the soft gamma - ray repeaters , the anomalous x - ray pulsars and more recently , the repeating fast radio burst @xcite . the quest towards explaining these ns with strong surface magnetic fields , has led to a prescription that certainly violates maxwell equations @xcite .
the aim of this letter is to show how strong this violation is and check whether the density dependent magnetic field prescriptions can or can not be justified .
magnetars are likely to bear magnetic fields of the order of @xmath0 g on their surfaces , which are three orders of magnitude larger than magnetic fields in standard ns . in the last years , many papers dedicated to the study of these objects have shown that the eos are only sensitive to magnetic fields as large as @xmath1 g or stronger @xcite . the virial theorem and the fact that some ns can be quark ( also known as strange ) stars allow these objects to support central magnetic fields as high as @xmath2 g if they contain hadronic constituents and up to @xmath3 g if they are quark stars . to take into account these possibly varying magnetic field strength that increases towards the centre of the stars ,
the following proposition was made @xcite : @xmath4 , \label{brho}\ ] ] where @xmath5 is the magnetic field on the surface of the neutron stars taken as @xmath6 in the original paper , @xmath7 is the total number density , and @xmath8 is the nuclear saturation density in subsequent papers @xcite , the above prescription was extensively used , with many variations in the values of @xmath5 , generally taken as @xmath0 g on the surface , @xmath9 and @xmath10 , arbitrary parameters that can not be tested by astronomical observations .
the high degree of arbitrariness was checked already in @xcite and later in @xcite and more than 50% variation in the maximum stellar mass and 25% variation in the corresponding radius was found .
[ [ section-2 ] ] with the purpose of reducing the number of free parameters from two to one and consequently the arbitrariness in the results , another prescription was then proposed in @xcite : @xmath11 where @xmath12 is the energy density at the centrer of the maximum mass neutron star with zero magnetic field , @xmath13 is any positive number and @xmath14 is the fixed value of the magnetic field . with this recipe ,
all magnetic fields converge to a certain value at some large energy density , despite the @xmath13 value used .
[ [ section-3 ] ] one of the maxwell equations tells us that @xmath15 . in most neutron star calculations ,
the magnetic field is chosen as static and constant in the @xmath16 direction , as proposed in the first application to quark matter @xcite . in this case , the energy associated with the circular motion in the @xmath17 plane is quantised ( in units of @xmath18 , @xmath19 being the electric charge ) and the energy along @xmath16 is continuous .
the desired eos is then obtained and the energy density , pressure and number density depend on the filling of the landau levels .
apart from the original works @xcite , detailed calculations for different models can also be found , for instance , in @xcite and we will not enter into details here . however , it is important to stress that the magnetic field is taken as constant in the @xmath16 direction , what results in different contributions in the @xmath20 and @xmath21 directions when one calculates the magnetic field in spherical coordinates .
[ [ section-4 ] ] according to @xcite , and assuming a perfectly conducting neutron star ( @xmath22 ) that bears a magnetic dipole moment aligned with the rotation axis such that @xmath23 , where @xmath24 is the radius of the star and @xmath25 the magnetic field intensity at the pole , the components of the magnetic field in spherical coordinates are given by : @xmath26 and in this case , it is straightforward to show that @xmath27 .
[ [ section-5 ] ] if one cast eqs . ( [ brho ] ) and ( [ bepsilon ] ) in spherical coordinates , from now on called respectively original and ll s prescriptions
, they acquire the form @xmath28 , @xmath29 and @xmath30 and the resulting divergent reads @xmath31 where the magnetic field in the radial direction can be obtained from the solution of the tov equations @xcite , where @xmath20 runs from the centre to the radius of the star . as a simple conclusion ,
@xmath32 is generally not zero , except for some specific values of the parameters that we discuss in the next section .
[ [ section-6 ] ] in what follows we analyse how much @xmath32 deviates from zero when @xmath33 is allowed to vary either with the original prescription as in eq .
( [ brho ] ) or with ll s proposal , as in eq .
( [ bepsilon ] ) with two different models , the njl and the mit bag model .
these two models have been extensively used to describe stellar matter in the interior of quark stars .
it is important to point out that the same test could be performed with hadronic models used to account for magnetised ns with hadronic constituents , as in @xcite , for instance .
[ [ section-7 ] ] before we analyse the behaviour of @xmath34 that depends on @xmath35 , we show in fig .
[ fig0 ] how the magnetic field varies with the star radius for one specific case , i.e. , the mit bag model with @xmath36 g and the prescription given in eq.([bepsilon ] ) .
all other cases studied next present a very similar behaviour .
it is interesting to notice that the curve changes concavity around half the stellar radius . , @xmath37 and @xmath38 km . ]
[ [ section-8 ] ] in fig .
[ fig1 ] we plot @xmath34 as a function of the star radius for different latitude ( @xmath21 ) angles and a magnetic field equal to @xmath39 . in both cases
the equations of state were obtained with the nambu - jona - lasinio model @xcite .
the violation is quite strong and @xmath34 can reach 70% for small angles .
g. chakrabarty s prescription was calculated with @xmath40 and @xmath41 km , @xmath42 and @xmath43 .
ll s prescription was calculated with @xmath44 , @xmath45 km and @xmath46 . ]
[ [ section-9 ] ] in figure [ fig2 ] we plot the same quantity as in figure [ fig1 ] for the ll s prescription and the much simpler and also more used mit bag model for different latitude angles .
again the violation amounts to the same values as the ones obtained within the njl model .
finally , in figure [ fig3 ] , we show how large the deviation can be for different values of the magnetic field intensity and a fixed angle @xmath47 degrees and the original prescription . we see that the deviation reaches approximately the same percentages , independently of the field intensity . ,
@xmath37 and @xmath38 km for different latitude angles . ] and @xmath47 degrees . for @xmath48
g , @xmath49 , @xmath41 km and central energy density @xmath50 . for @xmath51 g : @xmath52 , @xmath41 km and central energy density @xmath53 . for @xmath54
: @xmath55 , @xmath56 km and central energy density @xmath57 . ]
[ [ section-10 ] ] now , we turn our attention to a possible generalisation of eqs .
( [ brho ] ) and ( [ bepsilon ] ) in spherical coordinates in order to verify for which conditions the divergent becomes zero and check whether the situation can be circumvented .
the generalized magnetic field components is given by @xmath58 and the corresponding divergent reads : @xmath59 , \label{divbll}\ ] ] which is zero either for the trivial solution @xmath60 or if @xmath61 for which a general solution has the form @xmath62 .
when @xmath63 and @xmath64 , @xmath65 and @xmath66 , eqs.([daniele ] ) are recovered . when @xmath67 , the numerator of the exponent becomes zero and @xmath68 is simply a constant ( @xmath69 ) ,
does not depending on @xmath20 .
another possibility is the assumption that @xmath68 is a function of the density , for instance , as @xmath70 or of the energy density as @xmath71 . in these cases ,
if we take @xmath67 , the result resembles the original ( ll s ) prescription , @xmath73 ( @xmath74 ) because @xmath75 ( @xmath76 ) is obtained from the tov equations and is never zero . for @xmath77
, solutions can be obtained from numerical integration .
[ [ section-11 ] ] we have shown that both existent prescriptions for a density dependent magnetic field widely used in the study of magnetised neutron star matter equations of state strongly violate one of the maxwell equations , showing a pathological problem . however , they can be cured if used only for well defined values of functionals that guarantee that the maxwell equation is not violated .
we have shown the results obtained from eos used to describe quarks stars .
had we shown the same quantities for neutron stars constituted of hadronic matter only , the qualitative results would be the same . as a final word of caution
, we would like to comment that the divergence problem in general relativity goes beyond the simple analysis we have performed and will deserve an attentive look in the future .
|
physics quantum chromodynamics phase diagram not probed at all temperatures densities some aspects confirmed by lattice qcd or heavy ion collisions other depend on extraterrestrial information possible constitution nature of neutron stars ns compact objects related to low temperature high density portion phase diagram astronomers astrophysicists provide information observations infer macroscopic properties ns masses radii rotation period external magnetic fields guiding theory microscopic equations of state different classes of ns three compatible with highly magnetised compact objects magnetars @xcite soft gamma - ray repeaters anomalous x - ray pulsars fast radio burst @xcite quest explaining ns with strong surface magnetic fields led to prescription violates maxwell equations @xcite aim letter to show violation check density dependent magnetic field prescriptions magnetars likely bear magnetic fields @xmath0 g surfaces three orders larger than standard ns papers shown eos only sensitive to magnetic fields large as @xmath1 g or stronger @xcite virial theorem some ns quark strange stars allow support central magnetic fields high @xmath2 g hadronic constituents to @xmath3 g quark stars varying magnetic field strength towards centre stars proposition made @xcite : @xmath4 @xmath5 magnetic field on surface neutron stars @xmath6 @xmath7 total number density @xmath8 nuclear saturation density subsequent papers prescription used variations in values @xmath5 @xmath0 g @xmath9 @xmath10 arbitrary parameters tested observations high degree arbitrariness checked than 50% variation in maximum stellar mass 25% variation in radius found reducing free parameters from two to one arbitrariness results another prescription proposed : @xmath11 @xmath12 energy density at centrer maximum mass neutron star with zero magnetic field @xmath13 positive number @xmath14 fixed value magnetic field all magnetic fields converge to certain value at large energy density despite @xmath13 value maxwell @xmath15 in neutron star calculations magnetic field static constant in @xmath16 direction proposed first application to quark matterenergy circular motion in @xmath17 plane quantised in units of @xmath18 @xmath19 electric charge energy along @xmath16 continuous desired eos obtained energy density pressure number density depend on filling landau levels detailed calculations for different models in @xcite magnetic field constant in @xmath16 direction different contributions in @xmath20 @xmath21 directions magnetic field in spherical coordinates assuming conducting neutron star ( @xmath22 ) magnetic dipole moment aligned with rotation axis @xmath24 radius star @xmath25 magnetic field intensity at pole components of magnetic field in spherical coordinates given by @xmath26 show @xmath27 cast eqs . brho bepsilon ] ) in spherical coordinates original ll s prescriptions acquire form @xmath28 @xmath29 @xmath30 divergent reads @xmath31 magnetic field in radial direction obtained from solution of tov equations @xcite @xmath20 runs from centre to radius of star @xmath32 not zero except for specific values of parameters next sectionsection-6 analyse @xmath32 deviates from zero @xmath33 original prescription or ll s proposal two models njl and mit bag model used describe stellar matter quark stars same test with hadronic models magnetised ns @xcite section-7 analyse behaviour @xmath34 @xmath35 fig . fig0 magnetic field varies with star radius for one case mit bag model with @xmath36 g prescription other cases similar behaviour curve changes concavity around half stellar radius @xmath37 @xmath38 km section-8 fig . fig1 plot @xmath34 function of star radius for different latitude @xmath21 ) angles magnetic field equal to @xmath39 equations of state obtained with nambu - jona - lasinio model @xcite violation strong @xmath34 reach 70% for small angles chakrabarty s prescription calculated with @xmath40 @xmath41 km @xmath42 @xmath43 ll s prescription calculated with @xmath44 @xmath45 km @xmath46 section-9 figure fig2 plot same quantity fig1 ll s prescription mit bag model different latitude angles violation same values njl model figure fig3 deviation magnetic field intensity fixed angle @xmath47 degrees original prescription deviation same percentages independently field intensity @xmath37 @xmath38 km latitude angles @xmath47 degrees @xmath48 g @xmath49 @xmath41 km central energy density @xmath50 @xmath51 g @xmath52 @xmath41 km central energy density @xmath53 @xmath54 @xmath55 @xmath56 km central energy density @xmath57 section-10 generalisation eqs . brho bepsilon ] ) spherical coordinates verify conditions divergent becomes zero check situation circumvented generalized magnetic field components @xmath58 divergent @xmath59 zero trivial solution @xmath60 or @xmath61 general solution @xmath62 @xmath63 @xmath64 @xmath65 @xmath66 eqs.([daniele ] ) recovered @xmath67 numerator exponent becomes zero @xmath68 constant @xmath69 @xmath20possibility assumption @xmath68 function of density @xmath70 or energy density @xmath71 take @xmath67 result resembles original prescription @xmath73 ( @xmath74 ) because @xmath75 ( @xmath76 ) obtained from tov equations never zero for @xmath77 solutions from numerical integration shown both prescriptions for density dependent magnetic field magnetised neutron star matter violate maxwell equations showing pathological problem can be cured if used for well defined values functionals guarantee maxwell equation not violated shown results from eos describe quarks stars shown same quantities for neutron stars hadronic matter qualitative results same divergence problem in general relativity beyond analysis attentive look future
| 0.349958
| 2,325
| 1,208
|
, Saving $0.1 in GPT-4.
|
18,854
|
we show that the skewed parton distributions are completely determined at small @xmath0 and @xmath1 by the conventional diagonal partons .
we study the application to diffractive vector meson production at hera .
|
data are becoming available for processes which are described by off - diagonal ( or skewed ) parton distributions .
a relevant example is diffractive vector meson production at hera , @xmath2 with @xmath3 or @xmath4 , where at high @xmath5 c.m .
energy , @xmath6 , the cross section is dominated by the two - gluon exchange diagram @xmath7 ^ 2 \label{eq:1}\ ] ] where @xmath8 is the off - diagonal ( @xmath9 ) gluon distribution with @xmath10 see ref .
@xmath11 is the mass of the @xmath12 system produced by a photon of virtuality @xmath13 .
the relevant scale is @xmath14 where @xmath15 and @xmath16 specify the momenta of the @xmath17 and @xmath18 .
the quadratic dependence on @xmath8 in ( [ eq:1 ] ) shows that these data may offer a sensitive constraint on the gluon .
indeed our aim is to show that the off - diagonal distributions are fixed by the conventional diagonal partons , so that the data can , in principle , be included in a global parton analysis .
we shall use the off - forward distributions @xmath19 with support @xmath20 introduced by ji @xcite , with the minor difference that the gluon @xmath21 @xcite .
they depend on the momentum fractions @xmath22 carried by the emitted and absorbed partons at each scale @xmath23 and on the momentum transfer variable @xmath24 . the variables @xmath25 and @xmath1 do not change as we evolve the distributions up in the scale @xmath23 . in the limit @xmath26
they reduce to the conventional parton distributions @xmath27 and satisfy dglap evolution . in the limit @xmath28 they obey erbl evolution .
if we consider @xmath29 at arbitrary values of @xmath1 , then for @xmath30 and @xmath31 we have dglap - like evolution for quarks and antiquarks respectively , while for @xmath32 we have erbl - like evolution for the emitted @xmath12 pair .
on account of the @xmath33 symmetry the distributions @xmath34 are symmetric in @xmath1 .
we also have symmetry relations in terms of the @xmath0 variable @xmath35 where the superscripts @xmath36 and @xmath37 denote singlet and non - singlet quarks respectively .
the conformal moments , and in @xcite for @xmath39 ; see also @xcite . ] of the off - diagonal distributions , @xmath40 are not mixed by evolution @xmath41 where @xmath42 are the same anomalous dimensions as for diagonal partons . the @xmath43
are known polynomials of degree @xmath44 @xmath45 with @xmath46 for quarks and gluons respectively .
the @xmath47 reduce to the usual moments in the limit @xmath26 .
for example for quarks @xmath48 up to a normalizing factor @xmath49 .
the crucial step is to find the inverse relation to ( [ eq:4 ] ) .
that is to reconstruct @xmath50 from a knowledge of the conformal moments .
the result , due to shuvaev @xcite , is @xmath51 where the kernel @xmath52 is a known integral @xcite and @xmath53 is the mellin transform @xmath54 @xmath53 reduces to the diagonal distribution for @xmath55 .
this follows since @xcite @xmath56 } o_{nk } \xi^{2k } \nonumber \\ & \simeq & o_{n0 } \ ; = \ ; o_n ( 0 ) = m_n r_n ( 1 , 1 ) \label{eq:10 } \end{aligned}\ ] ] for small @xmath57 .
so the off - diagonal distribution @xmath58 is completely determined in terms of the diagonal distribution @xmath53 via ( [ eq:8 ] ) .
we can simplify ( [ eq:8 ] ) further if we assume that the diagonal partons have the form @xmath60 for very small @xmath0 .
then the @xmath61 integration can be performed analytically and @xmath62 with @xmath63 for @xmath64 respectively .
a full set of results for the off - diagonal / diagonal ratios , @xmath65 can be found in @xcite .
there , the ratios @xmath66 and @xmath67 are plotted as functions of @xmath68 for different values of @xmath69 . the scale dependence of the off - diagonal distributions , @xmath70 of ( [ eq:11a ] ) , and hence of the @xmath71 , is hidden in the @xmath23 dependence of the @xmath69 .
both @xmath72 and @xmath73 increase with increasing @xmath23 .
the value of the ratio for the gluon distribution at @xmath74 is relevant for diffractive vector meson production , @xmath2 , at high energies , see ( [ eq:1a ] ) .
this ratio is given by @xmath75 the cross section formula ( [ eq:1 ] ) may then be expressed in terms of the conventional diagonal gluon distribution @xmath8 , @xmath76 ^ 2 , \label{eq:13}\ ] ] where all the off - diagonal effects are contained in the known ( enhancement ) factor @xmath77 . of course to calculate the cross section properly we must use the unintegrated gluon distribution and integrate over the transverse momenta of the exchanged gluons and of the @xmath17 and @xmath18 forming the vector meson . to obtain the scale dependence of @xmath67 , we first obtain the @xmath23 dependence of @xmath72 of ( [ eq:11 ] ) from the behaviour of the gluon found in the global parton analyses .
for example , the mrst partons @xcite have @xmath78 and 0.38 at @xmath79 and 100 gev@xmath80 respectively . the appropriate scale for the diffractive process @xmath81
is @xmath82 . in this way , for diffractive @xmath83 and @xmath4 photoproduction at hera we find that the off - diagonal enhancement , @xmath77 , is @xmath84 and @xmath85 respectively . however , for @xmath4 photoproduction , @xmath0 is not sufficiently small @xmath86 and we have to improve the assumption made in ( [ eq:11 ] ) .
if we take @xmath87 and perform the @xmath61 integration in ( [ eq:8 ] ) numerically , then we find an enhancement of @xmath88 for @xmath4 photoproduction @xcite .
moreover for @xmath89 electroproduction it is found @xcite that the enhancement due to off - diagonal effects of the @xmath90 cross section @xmath91 , at the largest @xmath13 of the hera data , is more than a factor 2 , which is just the enhancement needed to ensure a perturbative qcd description of the data .
the main conclusion is embodied in eqs .
( [ eq:8])([eq:10 ] ) . that is the skewed distribution @xmath38 , at any scale ,
is fully determined at small @xmath59 by knowledge of the diagonal parton distribution , at the same scale . to be sure of this result
we have checked that the analytic continuation of the conformal moments @xmath47 in @xmath44 is allowed @xcite .
a second consideration is that , from a formal point of view , we may add to the off - diagonal distribution any function which exists only in the erbl - like region , @xmath92 . in @xcite
we show such a contribution is negligible @xmath93 at small @xmath1 .
so far our distributions allow the calculation of the imaginary part of the amplitude for the process . at small @xmath0 and @xmath1
it turns out that the real part may be calculated easily using a dispersion relation in the c.m .
energy squared , @xmath94 , and that the amplitude @xmath95 where @xmath96 .
finally we note that our result remains valid at nlo , since there is no conformal mixing for @xmath55 .
we conclude that , at small @xmath59 , the skewed distributions @xmath97 are completely known in terms of conventional partons .
thus data for processes which are described by such distributions can , in principle , be included in a conventional global analysis to better constrain the low @xmath0 behaviour of the partons .
+ * acknowledgements * we thank max klein and johannes blmlein for their efficient organization of dis99 , and the royal society and the eu fourth framework programme ` training and mobility of researchers ' , network ` qcd and the deep structure of elementary particles ' , contract fmrx - ct98 - 0194 ( dg 12-miht ) for support .
martin and m.g .
ryskin , phys .
* d57 * ( 1998 ) 6692 .
x. ji , phys .
* 78 * ( 1997 ) 610 ; phys . rev .
* d55 * ( 1997 ) 7114 ; j.phys .
* g24 * ( 1998 ) 1181 .
k. golec - biernat and a.d .
martin , phys . rev .
* d59 * ( 1999 ) 014029 .
efremov and a.v .
radyushkin , phys .
b94 * ( 1980 ) 245 ; + m. chase , nucl.phys .
* b174 * ( 1980 ) 109 .
ohrndorf , nucl.phys .
* b198 * ( 1982 ) 26 . a.p .
bukhvostov , g.v .
frolov , l.n .
lipatov and e.a .
kuraev , nucl.phys . *
b258 * ( 1985 ) 601 .
a. shuvaev , hep - ph/9902318 .
a. shuvaev , k. golec - biernat , a.d .
martin and m.g .
ryskin , hep - ph/9902410 , phys .
( in press ) .
martin , r.g .
roberts , w.j .
stirling and r.s .
thorne , eur.phys.j .
* c4 * ( 1998 ) 463 .
martin , m.g .
ryskin and t. teubner , phys.lett .
* b454 * ( 1999 ) 339 .
martin , m.g .
ryskin and t. teubner , in preparation .
|
data available for processes off - diagonal parton distributions example is diffractive vector meson production at hera @xmath3 high @xmath5 energy cross section by two - gluon exchange diagram @xmath8 off - diagonal gluon distribution @xmath10 @xmath11 mass of @xmath12 system photon virtuality @xmath13 relevant scale is @xmath14 @xmath15 specify momenta of @xmath17 @xmath18 quadratic dependence on @xmath8 shows data sensitive constraint on gluon aim show off - diagonal distributions fixed by conventional diagonal partons data in global parton analysis off - forward distributions @xmath19 @xmath20 @xcite gluon @xmath21 depend on momentum fractions @xmath22 emitted absorbed partons momentum transfer variable @xmath24 variables @xmath25 @xmath1 change distributions in limit @xmath26 reduce to conventional parton distributions satisfy dglap evolution limit @xmath28 obey erbl evolutionconsider @xmath29 values @xmath1 @xmath30 dglap - like evolution quarks antiquarks @xmath32 erbl - like evolution emitted @xmath12 pair @xmath33 symmetry distributions @xmath34 symmetric in @xmath1 symmetry relations @xmath0 variable @xmath35 superscripts @xmath36 @xmath37 denote singlet non - singlet quarks conformal moments @xcite @xmath39 off - diagonal distributions @xmath40 not mixed evolution @xmath41 @xmath42 same anomalous dimensions diagonal partons @xmath43 known polynomials degree @xmath44 @xmath45 @xmath46 quarks gluons @xmath47 reduce usual moments limit @xmath26 quarks @xmath48 normalizing factor @xmath49 find inverse relation to ( [ eq:4 ] ) reconstruct @xmath50 conformal moments result @xmath51 kernel @xmath52 known integral @xcite @xmath53 mellin transform @xmath54 @xmath53 reduces diagonal distribution @xmath55 follows @xcite @xmath56 small @xmath57off - diagonal distribution @xmath58 determined diagonal distribution @xmath53 via eq:8 diagonal partons form @xmath60 for small @xmath0 @xmath61 integration performed analytically @xmath62 @xmath63 for @xmath64 results off - diagonal / diagonal ratios @xmath65 in @xcite ratios @xmath66 @xmath67 functions @xmath68 values @xmath69 scale dependence of off - diagonal distributions @xmath70 @xmath71 hidden in @xmath23 dependence @xmath69 @xmath72 @xmath73 increase with @xmath23 ratio gluon distribution @xmath74 relevant for diffractive vector meson production high energies ratio given by @xmath75 cross section formula expressed conventional diagonal gluon distribution @xmath8 @xmath76 off - diagonal effects in enhancement factor @xmath77 calculate cross section use unintegrated gluon distribution integrate over transverse momenta exchanged gluons @xmath17 @xmath18 vector meson obtain scale dependence of @xmath67 obtain @xmath23 dependence of @xmath72 from behaviour gluon global parton analysesmrst partons @xcite have @xmath78 0.38 at @xmath79@xmath80 appropriate scale for diffractive process @xmath81 is @xmath82 diffractive @xmath83 @xmath4 photoproduction at hera off - diagonal enhancement @xmath77 is @xmath84 @xmath85 @xmath4 photoproduction @xmath0 not small @xmath86 improve assumption in eq:11 ] ) @xmath87 @xmath61 integration in eq:8 enhancement of @xmath88 for @xmath4 photoproduction @xmath89 electroproduction enhancement due to off - diagonal effects of @xmath90 cross section @xmath91 largest @xmath13 data more than factor 2 enhancement perturbative qcd description conclusion skewed distribution @xmath38 determined at small @xmath59 by diagonal parton distribution checked continuation of conformal moments @xmath47 in @xmath44 allowed @xcite add to off - diagonal distribution function in erbl - like region @xmath92 contribution negligible @xmath93 at small @xmath1 distributions allow calculation of imaginary part amplitude for processsmall @xmath0 @xmath1 real part calculated dispersion relation c energy squared @xmath94 amplitude @xmath95 @xmath96 result valid at nlo no conformal mixing @xmath55 small @xmath59 skewed distributions @xmath97 known conventional partons data processes distributions included conventional global analysis constrain low @xmath0 behaviour partons thank max klein johannes blmlein organization dis99 royal society eu fourth framework programme training mobility researchers network qcd deep structure elementary particles contract fmrx - ct98 - 0194 12-miht support martin ryskin . d57 1998 ) 6692 phys 78 1997 ) 610 d55 1997 ) 7114 g24 1998 ) 1181 golec - biernat martin phys. d59 1999 ) 014029 efremov radyushkin phys b94 1980 ) 245 chase nucl.phys . b174 1980 ) 109 ohrndorf nucl.phys b198 1982 ) 26 bukhvostov frolov lipatov kuraev nucl.phys b258 ( 1985 ) 601 shuvaev hep - ph/9902318 golec - biernat martin ryskin hep - ph/9902410 phys press martin r roberts stirling r.s thorne eur.phys.j c4 1998 ) 463 m ryskin t. teubner phys.lett b454 1999 ) 339 m ryskin t teubner preparation
| 0.345184
| 2,398
| 1,267
|
, Saving $0.1 in GPT-4.
|
18,858
|
measurements of anisotropic flow in heavy - ion collisions provide evidence for the creation of strongly interacting matter which appears to behave as an almost ideal fluid .
anisotropic flow signals the presence of multiple interactions and is very sensitive to the initial spatial anisotropy of the overlap region in non - central heavy - ion collisions . in this article
we report measurements of elliptic @xmath0 , triangular @xmath1 , quadrangular @xmath2 and pentagonal @xmath3 flow .
these measurements have been performed with 2- and multi - particle correlation techniques .
|
anisotropic flow @xcite measurements provide one of the most important tools to probe the properties of the medium generated in heavy - ion collisions .
anisotropic flow results at rhic have yielded the evidence for the creation of strongly interacting matter , which appears to behave as an almost ideal fluid . in non - central heavy - ion collisions
the initial volume of the interacting system is anisotropic in coordinate space . due to multiple interactions this anisotropy
is transferred to momentum space , and is then quantified via so - called flow harmonics @xmath4 @xcite . in essence , anisotropic flow analysis is the measurement of flow harmonics @xmath4 . due to the ellipsoidal collision geometry ,
the dominant harmonic in non - central collisions is @xmath0 ( _ elliptic flow _ ) . in november 2010 , 10 days after the first heavy - ion collisions were delivered by the lhc , the alice collaboration reported the initial measurement of @xmath0 at @xmath5 tev @xcite .
the primary new result was that integrated elliptic flow at lhc energies is about 30% larger than at rhic energies , while the differential elliptic flow @xmath6 corresponds closely to the values measured at rhic .
the observed increase of @xmath7 in integrated elliptic flow is attributed to larger radial flow at lhc energies @xcite . in these proceedings
we report on charged particle anisotropic flow measurements with an emphasis on the centrality dependence of @xmath0 and the new results for other harmonics .
the results presented in this article were obtained from a data sample comprising roughly 5 m minimum bias pb - pb collisions at @xmath5 tev , after online and offline event selection was applied .
only the tracks within @xmath8 and @xmath9 gev/@xmath10 and reconstructed with alice main tracking detector time projection chamber ( tpc ) were used in the analysis .
tracks are rejected if their distance of closest approach to the primary vertex is larger than 0.3 cm both in transverse and longitudinal direction .
finally , tracks are required to have at least 70 reconstructed space points in the tpc and a @xmath11 per tpc cluster @xmath12 .
offline centrality determination utilized the vzero detectors @xcite .
flow analysis with 2- and multi - particle azimuthal correlations has several well - known systematic biases , in particular the so - called _ nonflow _ contribution to azimuthal correlations .
nonflow is a systematic bias originating from the correlations involving only few particles .
as first pointed out in @xcite , such nonflow correlations are largely suppressed by using multi - particle cumulants in the analysis .
the other important systematic bias stems from multiplicity and flow fluctuations .
the magnitude of multiplicity and trivial flow fluctuations , due to the size of centrality bins , can be estimated by comparing for instance the results of flow analysis in centrality bins of varying width .
the systematic bias on @xmath0 due to multiplicity and trivial flow fluctuations was estimated and found to be negligible .
inefficiencies in the detector s azimuthal acceptance will strongly bias any measurement based on azimuthal correlations .
cumulants can be generalized to deal with such a systematic bias ; however , a more practical approach used in this analysis was to use only the tracks reconstructed with tpc detector , making the bias negligible since the tpc has highly uniform azimuthal acceptance .
the analysis was performed using the cumulant method introduced by ollitrault _
et al _ @xcite .
this cumulant method was based on the formalism of generating functions , which has its own systematic biases and limitations .
an improved version of cumulant method , which allows for fast and exact calculation of all multi - particle cumulants , was recently proposed in @xcite . to make a distinction between two versions of cumulant method the latter one
is referred to as @xmath13-cumulants ( qc ) .
( left ) . the centrality dependence of @xmath0 estimated with different order cumulants ( right).,title="fig:",width=302,height=260 ] ( left ) . the centrality dependence of @xmath0 estimated with different order cumulants ( right).,title="fig:",width=302,height=260 ] flow contribution to cumulants
is well understood and quantified @xcite : @xmath14 from above equations it is clear that in case the measured cumulants are dominated by flow correlations they will exhibit the characteristic flow signature @xmath15 irrespective of the order of harmonic for which cumulants are being measured . in fig .
[ fig : cumulants ] ( left ) , cumulants for harmonic @xmath16 are shown for the centrality range 0 - 80% , with centrality bin width of 1% up to centrality 20% and centrality bin width of 2% for centralities beyond 20% @xcite .
clearly , the cumulants exhibit the characteristic flow signature .
inversion of eqs .
( [ qcs ] ) yields an independent estimate for the harmonic @xmath0 , to be denoted as @xmath17 and @xmath18 , respectively .
gap was enforced among the particles being correlated in the measurement of the 2-particle cumulant . ]
these independent estimates for elliptic flow are presented in fig .
[ fig : cumulants ] ( right ) .
the 2-particle estimate , @xmath19 , was obtained by using two different @xmath20 gaps ( open and filled blue markers ) in order to illustrate the magnitude of nonflow contribution . the nonflow contribution to the 2-particle cumulant scales as @xmath21 , where @xmath22 is the multiplicity of the event , meaning that the relative nonflow contribution will be largest in the peripheral events where @xmath22 is smallest , as can be seen on fig .
[ fig : cumulants ] ( right ) . on the other hand ,
all estimates from multi - particle cumulants are in an excellent agreement with each other ( red , green and black markers ) which indicates that already with the 4-particle cumulant nonflow is greatly suppressed so that there is little gain in suppressing it further by using 6- and 8-particle cumulants .
this agreement between multi - particle cumulants is also due to the fact that , to leading order , they experience the same systematic bias due to statistical flow fluctuations . finally , the difference between 2- and multi - particle estimates can be understood in terms of different ( opposite in signature ) sensitivity to the fluctuations in the initial geometry .
dependence ( right ) of anisotropic flow harmonics @xcite.,title="fig:",width=302,height=260 ] dependence ( right ) of anisotropic flow harmonics @xcite.,title="fig:",width=302,height=260 ] in fig .
[ fig : fig1a_fig3a ] ( left ) the new results for harmonics beyond @xmath0 are presented @xcite .
the primary new result is that triangular flow , @xmath1 , is not zero .
@xmath1 can not develop as a correlation of all particles with the reaction plane ( the event - ensemble average of odd harmonics must be zero at mid - rapidity due to the symmetry of collision ) , but instead as a correlation with the participant plane of @xmath1 ( event - by - event fluctuations in the initial geometry yields event - by - event triangularity in coordinate space which determines such symmetry plane ) .
a new picture of flow analysis has recently emerged according to which each harmonic has its own participant plane , raising the question of the relation between the different participant planes . as an example , in fig .
[ fig : fig1a_fig3a ] ( left ) we demonstrate that the participant planes of @xmath0 and @xmath1 are uncorrelated ( black diamonds ) . triangular flow estimated with 4-particle cumulant ( open blue squares )
is half as large as the corresponding 2-particle estimate ( filled blue squares ) , in agreement with a recent prediction by bhalerao _
et al _ @xcite . in fig .
[ fig : fig1a_fig3a ] ( right ) , the results for @xmath23 dependence of harmonics @xmath24 and @xmath3 are presented @xcite . for elliptic and triangular flow ,
comparison is made with a models based both on ideal and viscous relativistic hydrodynamics , respectively , with glauber initial conditions ( taking into account the role of event - by - event fluctuations of the initial conditions ) as was proposed in @xcite . within this particular model
the overall magnitude of elliptic and triangular flow agrees with the measurement , but the details of the @xmath23 dependence are not well described .
in particular , the magnitude of @xmath25 is described better with ideal hydro with @xmath26 , while for @xmath27 the model with @xmath28 provides a better description , meaning that this model fails to describe well @xmath0 and @xmath1 simultaneously .
99 j. y. ollitrault , phys . rev .
d * 46 * ( 1992 ) 229 .
s. voloshin and y. zhang , z. phys .
c * 70 * ( 1996 ) 665 .
k. aamodt _ et al . _
[ the alice collaboration ] , phys .
lett . * 105 * , 252302 ( 2010 ) .
n. borghini , p. m. dinh and j. y. ollitrault , phys .
c * 64 * ( 2001 ) 054901 .
a. bilandzic , r. snellings , s. voloshin , phys .
c * 83 * ( 2011 ) 044913 .
k. aamodt _ et al . _
[ the alice collaboration ] , [ arxiv:1105.3865 [ nucl - ex ] ] .
|
anisotropic flow @xcite measurements properties medium heavy - ion collisions results at rhic creation interacting matter ideal fluid non - central ion collisions initial volume anisotropic coordinate space anisotropy transferred to momentum space quantified via flow harmonics @xmath4 @xcite anisotropic flow analysis flow harmonics @xmath4 dominant harmonic non - central collisions @xmath0 november 2010 collisions alice collaboration reported measurement @xmath0 at @xmath5 tev @xcite integrated elliptic flow at lhc energies 30% larger than rhic energies differential elliptic flow @xmath6 corresponds to values at rhic increase of @xmath7 in integrated elliptic flow to larger radial flow at lhc energies @xcite report on charged particle anisotropic flow measurements emphasis centrality dependence of @xmath0 new results for other harmonics results obtained from 5 m minimum bias pb - collisions at @xmath5 tev event selection tracks within @xmath8 @xmath9@xmath10 with alice main tracking detector usedtracks rejected if distance closest approach to primary vertex larger than 0.3 cm transverse longitudinal tracks required have 70 reconstructed space points in tpc @xmath11 per tpc cluster @xmath12 offline centrality determination utilized vzero detectors @xcite flow analysis with 2- multi - particle azimuthal correlations has systematic biases nonflow _ contribution bias from correlations few particles suppressed by multi - particle cumulants other bias stems from multiplicity flow fluctuations magnitude estimated by comparing results systematic bias on @xmath0 due to multiplicity trivial flow fluctuations estimated negligible inefficiencies in detector s azimuthal acceptance bias measurement cumulants can be generalized to deal with bias practical approach only tracks reconstructed with tpc detector bias negligible tpc uniform azimuthal acceptance analysis performed using cumulant method by ollitrault _ et al _ @xcite based on formalism generating functions systematic biases limitations improved version fast exact calculation of multi - particle cumulants proposed in @xcitedistinction between two cumulant method latter @xmath13-cumulants centrality dependence of @xmath0 estimated with different order cumulants centrality dependence of @xmath0 estimated different cumulants flow contribution to cumulants understood quantified measured cumulants dominated by flow correlations exhibit characteristic flow signature @xmath15 irrespective of order harmonic fig cumulants for harmonic @xmath16 shown for centrality range 0 - 80% centrality bin width 1% up to 20% 2% beyond 20% cumulants exhibit characteristic flow signature inversion of eqs yields independent estimate for harmonic @xmath0 denoted as @xmath17 and @xmath18 gap enforced among particles correlated in measurement 2-particle cumulant independent estimates for elliptic flow presented in fig . cumulants 2-particle estimate @xmath19 obtained two @xmath20 gaps illustrate magnitude nonflow contributionnonflow contribution to 2-particle cumulant scales as @xmath21 @xmath22 is multiplicity of event relative nonflow contribution largest in peripheral events where @xmath22 smallest seen on fig . cumulants estimates from multi - particle cumulants agreement ( red green black markers with 4-particle cumulant nonflow suppressed little gain in suppressing by 6- and 8-particle cumulants agreement between multi - particle cumulants due to experience same systematic bias due to statistical flow fluctuations difference between 2- and multi - particle estimates understood in different sensitivity to fluctuations in initial geometry dependence of anisotropic flow harmonics in fig . new results for harmonics beyond @xmath0 presented result triangular flow , @xmath1 not zero @xmath1 correlation reaction plane of harmonics zero at mid - rapidity but correlation with participant plane of @xmath1 - by - event fluctuations in initial geometry yields triangularity in coordinate space symmetrynew picture flow analysis emerged each harmonic own participant plane raising question relation between planes fig left participant planes @xmath0 @xmath1 uncorrelated black triangular flow estimated with 4-particle cumulant open blue squares half as large as 2-particle estimate filled blue squares agreement with prediction bhalerao al @xcite fig right results for @xmath23 dependence harmonics @xmath24 @xmath3 presented @xcite elliptic triangular flow comparison with models ideal viscous relativistic hydrodynamics glauber initial conditions magnitude elliptic triangular flow agrees with measurement details @xmath23 dependence not well described magnitude of @xmath25 described better with ideal hydro @xmath26 @xmath27 model with @xmath28 better description fails to describe @xmath0 and @xmath1 simultaneously j ollitrault phys . rev . d * 46 * ( 1992 ) 229 voloshin y zhang phys . 70 * 1996 ) 665 aamodt et al alice collaboration phys . lett . 105 252302 ( 2010 ) borghini dinh yollitrault . 64 2001 ) 054901 bilandzic snellings voloshin phys . 83 2011 ) 044913 aamodt al alice collaboration arxiv:1105.3865 nucl - ex
| 0.346862
| 2,169
| 1,092
|
, Saving $0.1 in GPT-4.
|
18,865
|
possibility of a ferromagnetic semiconductor single wall carbon nanotube ( swcnt ) , where ferromagnetism is due to coupling between doped magnetic impurity on a zigzag swcnt and electrons spin , is investigate .
we found , in the weak impurity - spin couplings , at low impurity concentrations the spin up electrons density of states remain semiconductor while the spin down electrons density of states shows a metallic behavior . by increasing impurity concentrations
the semiconducting gap of spin up electrons in the density of states is closed , hence a semiconductor to metallic phase transition is take place .
in contrast , for the case of strong coupling , spin up electrons density of states remain semiconductor and spin down electron has metallic behavior . also by increasing impurity spin magnitude
, the semiconducting gap of spin up electrons is increased .
2.5 cm
|
single wall carbon nanotubes extensively attracted from both theoretical and experimental point of view , due to it s technological applications such as nano electronics devises@xcite , nano ring ( swcnt ring)@xcite , molecule - nanotube hybrids@xcite , quantum dots@xcite .
effect of substitution non magnetic impurity on a swcnt are investigated by many peoples @xcite .
we found that by doping boron and nitrogen the semiconductor gap , @xmath0 , of a zigzag swcnt could be control@xcite .
it is shown that vacancy could lead to electron spin polarization , hence a magnetic swcnt@xcite . but
role of doping finite magnetic impurity concentration on a zigzag swcnt is not challenged .
our motivation is to investigate possibility of a ferromagnetic semiconductor swcnt in comparison to the dilute ferromagnetic semiconductors@xcite .
this paper is organized as follows : in sec .
ii model and treatment formalism of a magnetic impurity doped zigzag swcnt is introduced . in sec .
iii three cases are considered : in the first case just impurity concentration is changed while impurity spin magnitude , exchange coupling and temperature are fixed .
we found for the weak exchange coupling , @xmath1 , by increasing impurity concentration the semiconductor gap , @xmath2 , in the spin up density of states is closed hence a semiconductor to metal phase transition is happened . in the second case just exchange coupling is varied and other parameters are fixed , we found by increasing exchange coupling , j , the semiconducting gap , @xmath2 , of spin up electrons in their density of states is increased . in the last case
just magnitude of spin , @xmath3 , is changed . in this case we found by increasing @xmath3 the semiconducting gap , @xmath2 , in the spin up density of states is increased .
let us consider the hamiltonian as a general random tight - binding model@xcite @xmath4 where @xmath5 and @xmath6 refer to the a or b sites inside of the graphene bravais lattice unit cell , where each bravais lattice site is includes two nonequivalent sites that are indicated by a and b , @xmath7 ( @xmath8 ) is the creation ( annihilation ) operator of an electron with spin @xmath9 on bravais lattice site @xmath10 , and @xmath11 is the number operator .
@xmath12 are the hopping integrals between the @xmath13 orbitals of sites @xmath10 and @xmath14 with spin @xmath9 and @xmath15 respectively .
@xmath16 is the chemical potential , @xmath17 is the random on - site energy where it takes @xmath18 with probability @xmath19 for host sites and @xmath20 with probability @xmath21 for impurity sites .
@xmath22 is random exchange coupling between @xmath13 electrons and impurity spins where it takes @xmath18 with probability @xmath19 for host sites and @xmath1 with probability @xmath21 for impurity sites .
@xmath23 is the impurity spin operator and @xmath24 is the electron spin operator . where @xmath25 is pauli matrix vector and @xmath26 is the coulomb interaction between electrons with opposite spin .
the matrix form of eq.[eq : hamiltonian ] is , @xmath27 where the two - component field operator , @xmath28 , is given by @xmath29 @xmath30 is the random on - site energy matrix operator , @xmath31 and @xmath32 is the hopping matrix in the spinor space defined by , @xmath33 and @xmath34 is a @xmath35 unitary matrix .
the electron s equation of motion corresponding to eq.[eq : hamiltonian ] in the mean field approximation where the operator @xmath36 is replaced by it s thermal averaged , @xmath37 , is @xmath38 where @xmath39 is the random green function matrix defined by , @xmath40 here after spin flip is neglected , hence eq.[eq : fourtwosite green function ] is reduced to the two following separated equations for spin up and down electrons , @xmath41 where @xmath42 is a @xmath43 random green function matrix for spin @xmath9 defined by , @xmath44 @xmath45 is hoping integral matrix for spin @xmath9 which is given by , @xmath46 and @xmath47 is random on site potential matrix for spin @xmath9 , @xmath48 where @xmath49 for spin up and -1 for spin down electrons .
eq.[eq : twoequation of motion ] , could be rewritten in terms of the perfect green function matrix @xmath50 as , @xmath51 where @xmath50 is given by @xmath52 with @xmath53 is the band structure for perfect system . in our calculations
the hopping randomness are neglected also we allowed hopping to the nearest neighbors and neglected others , so @xmath54 where @xmath55 is clean system nearest neighbour hopping integral . hence @xmath56 and
the dispersion relation is @xmath57 where @xmath58 and @xmath59 are three vectors that connect an a ( b ) site to it s nearest neighbors b(a ) sites . the dyson equation for the averaged green function , @xmath60
, corresponding to eq.[eq : expanding interms of random onsite potential ] is @xmath61 where the self energy @xmath62 is defined by @xmath63 the fourier transform of @xmath60 in eq.[eq : dyson equation ] is given by , @xmath64 where @xmath65 is the self energy fourier transform .
since eqs.[eq : exact average green function ] , [ eq : dyson equation ] and [ eq : expanding interms of random onsite potential ] could not be solved exactly , we solve these equations in the coherent potential approximation ( cpa ) . in the cpa multiple scattering
is neglected and all sites are replaces by effective sites except one which is denoted by _ impurity _
, hence self energy is diagonal @xmath66 .
so eq.[eq : exact average green function ] , [ eq : expanding interms of random onsite potential ] and [ eq : self energy definition ] at impurity site are reduce to , @xmath67 @xmath68 and @xmath69 eqs.[eq : cpaexact average green function ] , [ eq : impuritycpa average green function ] and [ eq : cpaself energy definition ] are construct a complete set of equations that should be solved self consistently to provide @xmath70 and @xmath71 . in our calculations the impurity spin thermal average , @xmath72 , is evaluated quantum mechanically as , @xmath73 and the average magnetization is calculated from , @xmath74 where @xmath75 take all @xmath76 impurity configurations and @xmath77 is probability of @xmath75 configuration .
to investigate magnetic impurity effects on @xmath78 and @xmath79 zigzag swcnts , several cases are considered : first to obtain impurity concentration effects , average magnetization , @xmath80 , is calculated in terms of temperature at fixed @xmath81 , @xmath82 and @xmath83 , fig.[figure : fig1 ] illustrate average magnetization in terms of temperature for different impurity concentrations @xmath84 , @xmath85 and @xmath86 .
also in this case at a fixed temperature , @xmath87 , spin up and spin down electrons density of states are compared for concentrations @xmath84 , @xmath85 and @xmath86 .
figs.[figure : fig2 ] and [ figure : fig3 ] illustrate a semiconductor to metallic phase transition in the spin up electrons density of states due to increasing impurity concentration for the weak exchange coupling @xmath81 . in the case of weak exchange coupling we found by increasing impurity concentration the semiconducting energy gap , @xmath2 , between valance band and conduction band is decreased and a semiconductor to metallic phase transition is occurred . while for strong coupling the spin up density of states is a semiconductor and for spin down is a metal .
second , at a fixed impurity concentration , @xmath85 , for variable exchange coupling , @xmath88 , @xmath89 and @xmath90 , average magnetization is calculated in terms of temperature .
fig.[figure : fig4 ] shows effect of exchange coupling on average magnetization .
we found for strong impurity couplings , the spin up electrons density of states remain a semiconductor with a small gap , @xmath2 , between valance and conduction bands , value of this gap is increased for higher exchange couplings , while the spin down electrons density of states is continues ( it has a metallic behavior ) .
fig.[figure : fig5 ] and [ figure : fig6 ] illustrate our result for spin up and down electrons density of states for variable exchange coupling , @xmath1 , and fixed other parameter at @xmath85 , @xmath91 , @xmath83 , @xmath82 .
third , to observe effects of impurity spin magnitude on our system we fixed , impurity concentration at , @xmath85 , exchange coupling at @xmath88 , on - site energy at @xmath82 and @xmath83 .
magnetization is calculated in terms of temperature for different impurity spin magnitudes @xmath92 , @xmath91 and @xmath93 .
fig.[figure : fig7 ] show average magnetization in terms of temperature for different spins @xmath92 , @xmath91 and @xmath93 .
we found by increasing impurity spin value , average magnetization is increased but the spin up electrons density of states has a gap , @xmath2 , which is groves by increasing impurity spin magnitude .
figs.[figure : fig8 ] and [ figure : fig9 ] illustrate density of states for spin up and spin down electrons in this case .
we have investigated possibility of making a ferromagnetic semiconductor zigzag swcnt , by doping magnetic impurities such as fe , co , ni , mn . the doped @xmath79 and @xmath78 zigzag swcnts are treated in the coherent potential approximation ( cpa ) . to find out role of impurity on our systems three cases
are considered , first at fixed , impurity spin magnitude , @xmath91 , exchange coupling at @xmath81 and temperature @xmath87 the impurity concentration are chosen variable .
we found by increasing impurity concentration the semiconducting gap , @xmath2 and @xmath94 , are closed , hence a semiconductor to metal phase transition is take placed .
second , we fixed impurity concentration at @xmath85 , spin magnitude at @xmath91 and temperature at @xmath87 , then varying exchange coupling,@xmath95 , we found by increasing @xmath1 the semiconductor gap , @xmath2 , in the spin up density of states is increased , while gap , @xmath94 , in the spin down density of states disappeared and have a metallic behavior .
third , at fixed impurity concentration c=0.025 , j =- t and t=0.005 t , the magnitude of impurity spin , s , varied , in this case we found by increasing spin magnitude , s , the gap in the spin up density of state is increased . in summery
we found by magnetic impurity doping on a zigzag swcnt , one could make a ferromagnetic semiconductor .
l. mceuen , physics world june 2000 pp.31 s. tans et al .
, nature ( london ) * 393 * , 49 ( 1998 ) .
g. cuniberti et al . , appl .
lett . * 81 * , 850 ( 2002 ) .
r. guntierrez et al . , chem .
phys . chem .
* 4 * , 1252 ( 2003 ) .
s. tans et al . , nature ( london ) * 386 * , 474 ( 1997 ) ; m. bockrath et al . ,
science * 275 * , 1922 ( 1997 ) .
k. harigaya , phys .
rev b * 60 * , 1452 ( 1999 ) .
s.latil , s.rocho , d.mayou and j.c.charlier , phys .
lett . * 92 * , 256805 ( 2004 ) .
r. moradian , phys .
b * 70 * , 205425 ( 2004 ) .
t. l. markarova et al . ,
nature * 413 * 716 ( 2001 ) .
j. m. d. coey et al .
nature * 420 * , 156 ( 2002 ) .
|
single wall carbon nanotubes attracted due to technological applications nano electronics nano ring molecule - nanotube hybrids quantum dots effect substitution non magnetic impurity on swcnt investigated doping boron nitrogen semiconductor gap zigzag swcnt control vacancy to electron spin polarization magnetic swcnt role doping finite magnetic impurity concentration on zigzag swcnt not challenged motivation to investigate ferromagnetic semiconductor swcnt comparison to dilute ferromagnetic semiconductors paper organized sec . ii model treatment of magnetic impurity doped zigzag swcnt introduced sec iii three cases considered first case impurity concentration changed spin magnitude exchange coupling temperature fixed increasing impurity concentration semiconductor gap in spin up density closed semiconductor to metal phase transition second case exchange coupling varied other parameters fixed increasing exchange coupling semiconducting gap spin up electrons density increased last case magnitude of spin @xmath3 changed increasing @xmath3 semiconducting gap in spin up density increasedconsider hamiltonian random tight - binding model @xmath4 refer a b sites graphene bravais lattice unit cell each includes two nonequivalent sites indicated a b @xmath7 creation annihilation operator electron spin @xmath9 bravais lattice site number operator @xmath12 hopping integrals between @xmath13 orbitals sites spin @xmath9 @xmath16 chemical potential @xmath17 random on - site energy @xmath18 host sites impurity sites @xmath22 random exchange coupling @xmath13 electrons impurity spins host impurity sites @xmath23 impurity spin operator electron spin operator @xmath25 pauli matrix vector @xmath26 coulomb interaction between electrons opposite spin matrix form eq. hamiltonian @xmath27 two - component field operator @xmath28 given @xmath29 @xmath30 random on - site energy matrix operator @xmath31 hopping matrix spinor space @xmath33 @xmath35 unitary matrix electron s equation motion eq.hamiltonian mean field approximation @xmath36 replaced thermal @xmath37 @xmath38 @xmath39 random green function matrix @xmath40 spin flip neglected green function reduced equations spin up down electrons @xmath41 @xmath42 @xmath43 random green function matrix spin @xmath9 @xmath44 @xmath45 integral matrix spin @xmath9 @xmath46 @xmath47 random on site potential matrix spin @xmath48 @xmath49 spin up -1 spin down electrons twoequation motion rewritten perfect green function matrix @xmath50 @xmath51 @xmath50 @xmath52 @xmath53 band structure perfect system hopping randomness neglected nearest neighbors neglected @xmath54 @xmath55 clean system nearest neighbour hopping integral @xmath56 dispersion relation @xmath57 @xmath58 @xmath59 vectors connect site nearest neighbors dyson equation averaged green function @xmath60 random onsite potential @xmath61 self energy @xmath62 defined @xmath63 fourier transform @xmath60 @xmath64 @xmath65 self energy fourier transformexact average green function dyson equation expanding interms random onsite potential solved coherent potential approximation multiple scattering neglected sites by effective sites except one denoted impurity self energy diagonal @xmath66 average green function expanding interms random onsite potential self energy definition at impurity site reduce to @xmath67 @xmath68 @xmath69 average green function impuritycpa average green function energy definition construct complete equations solved @xmath70 @xmath71 impurity spin thermal average @xmath72 evaluated quantum mechanically as @xmath73 average magnetization calculated from @xmath74 @xmath75 @xmath76 impurity configurations @xmath77 probability of @xmath75 configuration investigate magnetic impurity effects on @xmath78 @xmath79 zigzag swcnts several cases considered impurity concentration effects average magnetization @xmath80 calculated temperature at fixed @xmath81 illustrate average magnetization temperature for different impurity concentrations @xmath84 fixed temperature spin up down electrons density states compared for concentrations @xmath84fig2 illustrate semiconductor to metallic phase transition in spin up electrons density due increasing impurity concentration weak exchange coupling @xmath81 increasing impurity concentration semiconducting energy gap between valance conduction band decreased semiconductor to metallic phase transition strong coupling spin up density semiconductor spin down metal fixed impurity concentration @xmath85 variable exchange coupling @xmath88 average magnetization calculated temperature shows effect exchange coupling on average magnetization strong impurity couplings spin up electrons density semiconductor small gap between valance conduction bands increased for higher exchange couplings spin down electrons density continues metallic behavior fig6 illustrate result for spin up down electrons density for variable exchange coupling at @xmath85 effects impurity spin magnitude system fixed impurity concentration at @xmath85 exchange coupling @xmath88 on - site energy at @xmath82 @xmath83 magnetization calculated temperature for different impurity spin magnitudes @xmath92 @xmath93fig7 average magnetization temperature spins @xmath92 increasing impurity spin value average magnetization increased spin up electrons density gap @xmath2 groves increasing impurity spin magnitude fig9 illustrate density states spin up down electrons investigated ferromagnetic semiconductor zigzag swcnt doping magnetic impurities fe co ni mn doped @xmath79 @xmath78 zigzag swcnts treated coherent potential approximation role impurity systems three cases considered fixed impurity spin magnitude exchange coupling temperature @xmath87 impurity concentration increasing impurity concentration semiconducting gap @xmath2 closed semiconductor to metal phase transition fixed impurity concentration @xmath85 spin magnitude temperature @xmath87 varying exchange coupling@xmath95 increasing @xmath1 semiconductor gap @xmath2 spin up density states increased gap @xmath94 spin down density disappeared metallic behavior third fixed impurity concentration c=0.025 j =- t t=0.005 t magnitude impurity spin varied increasing spin magnitude s gap spin up density increasedsummery found magnetic impurity doping zigzag swcnt make ferromagnetic semiconductor mceuen physics world june 2000 pp.31 tans nature london 393 * 49 1998 ) cuniberti appl. lett 81 * 850 2002 ) guntierrez chem . chem 4 * 1252 2003 ) tans nature london 474 1997 ) bockrath science 275 * 1922 1997 ) harigaya . 60 * 1452 1999 ).latil.rocho.mayou.charlier phys . lett 92 * 256805 2004 ) moradian . 70 * 205425 ( 2004 ) markarova nature 413 * 716 ( 2001 ) coey nature 420 * 156 ( 2002 )
| 0.429742
| 2,768
| 1,404
|
, Saving $0.1 in GPT-4.
|
18,884
|
in this talk the pomeron conjecture is reviewed and constituent gluon models are derived . in a simple two - gluon glueball spectrum the pomeron trajectory and
the daughter trajectories are computed .
the open problems of two - gluon glueballs are discussed , including transversality and yang s theorem , the spin tensor interactions , the structure of the string and decays .
the related systems of charmed hybrids and of the gluelump are also addressed . to conclude ,
different aspects of glueballs that could be measured at panda are highlighted .
= 11.6pt
|
the pomeron trajectory produces a precise prediction for the location of several glueball masses , see table [ masstab ] .
the equation for the pomeron trajectory in the @xmath0 space is @xcite , @xmath1 the intercept @xmath2 is of the order of 1 , and this explains the high energy hadronic cross sections .
the pomeron is also expected to correspond to a series of glueball masses .
the slope of 0.25 is compatible with the casimir scaling , where the string tension is proportional to the casimir invariant @xmath3 . 0.1 in .
_ spectrum of glueballs extracted from the pomeron trajectory in a regge plot . _ [ cols="<,^,^,^,^,^,^ " , ] [ masstab ] for instance the @xmath4 total cross sections increase monotonously at high energies .
the cross sections are fitted by , @xmath5 the lattice results @xcite and model results @xcite can also be included in a regge plot , see fig.[lattice ] .
they are not inconsistent with the pomeron @xcite , and with a daughter trajectory . in what concerns model calculations
, they depend on the gluon mass and on the gluon - gluon interaction .
although one would expect colour gauge invariance to force the gluon to be massless , the generation of a finite mass for the gluon is nevertheless possible .
for instance in superconductors the meissner effect generates a mass for the photon @xcite . in the qcd case
, we have indications from the lattice @xcite and from the solution of the truncated schwinger dyson equation @xcite that the gluon has a constituent mass of 0.7 to 0.8 gev .
a flux tube picture is also possible , where the string ends in a pair of spin 1 , colour octet massive gluons .
there are indications , both from lattice simulations @xcite and from truncated coulomb gauge qcd @xcite that the string tension is proportional to the casimir invariant @xmath6 . then @xmath7 .
it is therefore plausible to construct constituent gluon models , similar to the constituent quark model , where the lightest glueballs have just two gluons . in the self - consistent models
the gluon mass is generated in the models , and in other models the mass is just assumed . this results in bound - states similar to mesons , where the quarks are replaced by heavier gluons and where the string tension is also larger .
essentially i will focus on two approximations of qcd , + - the itep approach , of a quantum mechanical glueball string model by kaidalov , kalashnikova , nefediev , shevchenko , simonov @xcite + - the approach started in the ncsu , of a self - consistent glueball in coulomb gauge by cotanch , llanes - estrada , swanson , szczepaniak @xcite
from the pomeron a quite simple and precise picture emerges , see fig.[daughters ] .
i think that any glueball study , experimental , theoretical or on the lattice should compare with the pomeron .
let us assume , in the constituent gluon model perspective , that we have at least 2 gluons with the highest possible j , @xmath8 and with l even for p=+ .
then these states should be aligned in the pomeron trajectory .
the corresponding spectrum is detailed in table [ masstab ] .
this constitutes the simplest and less speculative prediction for glueballs . to verify
experimentally that we have a straight line , at least 3 points should be measured .
the first 3 points are expected to be observed if @xmath9 gev is reached .
however , we also know the example of the meson regge trajectory , where the first point is below the line , and then we need more points to see the line . if an experiment is able to observe glueballs with @xmath10 gev , it may be possible to see 4 points .
the error appears because the slope of the pomeron trajectory is is not precise .
for instance szczepaniak and swanson @xcite finds a smaller slope than the one first estimated for the pomeron .
moreover , in the constituent 2-gluon picture the pomeron trajectory @xmath11 is accompanied by 5 daughter trajectories , @xmath12 the pomeron and daughters are depicted in fig.[daughters ] , in the case where the spin - dependent interactions are neglected .
the transversality of the gluon propagator implies that @xmath13 is forbidden , according to yang
s theorem @xcite . in the lattice , and in the coulomb gauge model ,
a light j=1 glueball is not present . in quantum mechanical studies ,
this state is not avoided .
the discovery of a j=1++ glueball would rule out the transversality of constituent gluons .
the spin - tensor interactions also depend of the model .
the exact position of the daughters will measure the spin - dependent interactions .
the @xmath14 interaction splits the s=2 daughter ( @xmath15 ) from the s=0 daughter ( @xmath16 ) .
in particular it produces a 0++ glueball lighter than the 2++ .
the @xmath17 interaction increases with l and thus changes the slope of the interaction .
it also acts differently on the different daughters , @xmath18 in particular the @xmath17 interaction produces non - linear trajectories .
the tensor interaction also produces a non - linear pomeron trajectory , moreover it couples @xmath19 with @xmath20 and @xmath21 . in the meson spectrum , the @xmath14 interaction seems to be the most relevant spin - dependent interaction . in the lattice simulations and in the quantum mechanical studies of glueballs
, the @xmath14 also seems to be the relevant one . in the truncated coulomb gauge approach
this is not the case .
the detection of the glueballs on the daughter trajectories would clarify the nature of the gluon - gluon interaction .
are the gluons connected by 1 octet string or by 2 triplet ones ? in type ii superconductors the double string is favoured @xcite , and this results in the doubling of the string constant . in the lattice
, there is evidence for a single octet - octet string with a strength proportional to @xmath3 .
although these two approaches only differ by 12.5 % , a precise determination of the slope of the gluonic regge trajectories would also clarify the nature of the gluon - gluon interaction .
the decays of glueballs decay are not fully understood yet . in the litterature ,
the scalar glueball is essentially the only one with predicted decays @xcite .
nevertheless one can estimate that the glueballs will have a larger width than conventional hadrons , because they follow more decay mechanisms . in the double - string model , from string breaking an enhancement of the width by a factor of 2x2 is expected .
any of the two constituent gluons ( attached at the end of the string ) may also decay in a quark - antiquark pair .
because the decays of glueballs remain an open problem , measuring the decay widths and the decay processes of glueballs would be extremely interesting .
the lowest hybrid states are difficult to separate from the standard chamonium spectrum .
however the excited states where the gluon is far from the diquark show different properties .
the gluelump is the heavy quark limit of the charmed or bottomed hybrid .
this subject has been receiving an increased interest in the litterature @xcite . in this case
the heavy quark - antiquark pair forms a nearly point - like and massive colour octet , equivalent to a very massive gluon .
the reduced mass of the real gluon is close to the @xmath22 quark mass in charmonium .
however the string tension is larger than the charmonium one . in a simple constituent gluon picture
this results in different trajectories from the glueball trajectories and from the charmonium trajectories . neglecting the spin - tensor interactions ,
one gets the pc=++ states depicted in fig . [ plus gluelump ] .
identifying the glueballs with the largest possible angular momentum , up to @xmath23 gev will test the pomeron conjecture .
the decay widths are expected to be large , and the decays should produce a large number of pions . nevertheless the states are well separated .
the decays of excited glueballs remain a very interesting open problem .
the light quark hybrids constitute intermediate decay channels .
the study of glueballs with lower angular momentum ( daughter trajectories ) will test many aspects of qcd , and will fix the spin dependence of the gluon - gluon interaction .
moreover there are odd parity trajectories , and more massive trajectories with 3 gluons ( contributing to the odderon ) . in the charmed hybrid sector , and in the limit of the gluelump ,
the study of larger angular momentum may also exhibit a linear regge behavior .
the decays of the excited glueballs may result in the production of several pions , with a large total j. + question : is it possible to identify the initial j of the glueball ?
+ question : is it possible to reconstruct the initial shape of the string , say with with bose - einstein correlation ?
i thank paola gianotti and the panda collaboration for motivating this talk .
i also thank discussions on constituent gluon masses and on constituent gluon models with alexei nefediev , pedro sacramento , steve cotanch and felipe llanes - estrada .
99 a. donnachie and p. v. landshoff , phys .
b * 437 * , 408 ( 1998 ) [ arxiv : hep - ph/9806344 ] .
j. r. pelaez and f. j. yndurain , arxiv : hep - ph/0312187 . c. j. morningstar and m. j. peardon , phys .
d * 60 * , 034509 ( 1999 ) [ arxiv : hep - lat/9901004 ] .
d. q. liu and j. m. wu , mod .
1419 ( 2002 ) [ arxiv : hep - lat/0105019 ] . f. j. llanes - estrada , s. r. cotanch , p. j. de a. bicudo , j. e. f. ribeiro and a. p. szczepaniak , nucl .
a * 710 * , 45 ( 2002 ) [ arxiv : hep - ph/0008212 ] ; m. m. brisudova , l. burakovsky , t. goldman and a. szczepaniak , phys .
d * 67 * , 094016 ( 2003 ) [ arxiv : nucl - th/0303012 ] .
pierre - gilles de gennes , _ superconductivity of metals and alloys _ published by w.a .
benjamin , new york(1966 ) . c. w. bernard , phys .
b * 108 * , 431 ( 1982 ) .
r. alkofer and l. von smekal , phys .
rept . * 353 * , 281 ( 2001 ) [ arxiv : hep - ph/0007355 ] .
l. del debbio , m. faber , j. greensite and s. olejnik , phys . rev .
d * 53 * , 5891 ( 1996 ) [ arxiv : hep - lat/9510028 ] .
y. s. kalashnikova , phys .
nucl . * 59 * , 1303 ( 1996 ) [ yad .
fiz . * 59n8 * , 1363 ( 1996 ) ] [ arxiv : hep - ph/9510371 ] ; a. b. kaidalov and y. a. simonov , phys . lett .
b * 477 * , 163 ( 2000 ) [ arxiv : hep - ph/9912434 ] ; y. a. simonov , phys .
nucl . * 64 * , 1876 ( 2001 ) [ yad .
fiz . * 64 * , 1959 ( 2001 ) ] [ arxiv : hep - ph/0110033 ] ; a. szczepaniak , e. s. swanson , c. r. ji and s. r. cotanch , phys . rev . lett .
* 76 * , 2011 ( 1996 ) [ arxiv : hep - ph/9511422 ] ; d. g. robertson , e. s. swanson , a. p. szczepaniak , c. r. ji and s. r. cotanch , phys .
d * 59 * , 074019 ( 1999 ) [ arxiv : hep - ph/9811224 ] .
a. p. szczepaniak and e. s. swanson , phys .
b * 577 * , 61 ( 2003 ) [ arxiv : hep - ph/0308268 ] .
h. y. jin and x. m. zhang , phys .
d * 66 * , 057505 ( 2002 ) [ arxiv : hep - ph/0208120 ] . c. michael , nucl .
b * 259 * , 58 ( 1985 ) ; g. i. poulis and h. d. trottier , phys .
b * 400 * , 358 ( 1997 ) [ arxiv : hep - lat/9504015 ] ; g. karl and j. paton , phys .
d * 60 * , 034015 ( 1999 ) [ arxiv : hep - ph/9904407 ] ; y. a. simonov , nucl .
b * 592 * , 350 ( 2001 ) [ arxiv : hep - ph/0003114 ] .
|
pomeron trajectory location glueball masses table masstab equation in @xmath0 space is @xcite , @xmath1 intercept @xmath2 1 explains high energy hadronic cross sections pomeron to glueball masses slope of 0.25 compatible with casimir scaling string tension proportional to casimir invariant @xmath3 spectrum of glueballs pomeron in regge plot @xmath4 cross sections increase monotonously at high energies cross sections fitted by @xmath5 lattice results @xcite model results @xcite included in regge plot fig not inconsistent with pomeron @xcite daughter trajectory model calculations depend on gluon mass gluon - gluon interaction colour gauge invariance gluon massless finite mass for gluon possible in superconductors meissner effect generates mass for photon @xcite qcd case indications lattice gluon has constituent mass of 0.7 to 0.8 gev flux tube picture possible string ends in spin 1 colour massive gluonsindications from lattice simulations truncated coulomb gauge qcd string tension proportional to casimir invariant plausible to construct constituent gluon models similar to quark model lightest glueballs have two gluons in self - consistent models gluon mass generated other mass assumed results in bound - states similar to mesons quarks replaced by heavier gluons string tension larger focus on two approximations of qcd approach quantum mechanical glueball string model by kaidalov approach self - consistent glueball in coulomb gauge by cotanch llanes - swanson szczepaniak from pomeron simple precise picture emerges fig. any glueball study compare with pomeron assume model 2 gluons with highest possible j l for p=+ states aligned in pomeron trajectory corresponding spectrum detailed in table [ masstab ] simplest less speculative prediction for glueballs to verify straight line 3 points measured first 3 points observed if @xmath9 gev reached example meson regge trajectory first point below line need more points to see lineexperiment glueballs with @xmath10 gev 4 points error slope pomeron trajectory not precise szczepaniak and swanson smaller slope pomeron constituent 2-gluon picture pomeron trajectory @xmath11 by 5 daughter trajectories @xmath12 pomeron daughters depicted in fig.[daughters spin - dependent interactions neglected transversality gluon propagator implies @xmath13 forbidden yang s theorem lattice coulomb gauge model light j=1 glueball not present quantum mechanical studies not avoided discovery j=1++ glueball out transversality gluons spin - tensor interactions depend model position daughters spin - dependent interactions @xmath14 interaction splits s=2 daughter from s=0 daughter produces 0++ glueball lighter than 2++ @xmath17 interaction increases l changes slope acts differently on daughters produces non - linear trajectories tensor interaction non - linear pomeron trajectory couples @xmath19 with @xmath20 @xmath21 meson spectrum @xmath14 interaction most relevant spin - dependent lattice simulations quantum mechanical studies relevant truncated coulomb gauge approach not casedetection glueballs on daughter trajectories gluon - gluon interaction gluons connected by 1 octet string or 2 triplet ones ? type ii superconductors double string favoured results in doubling string constant evidence single octet - octet string strength proportional to @xmath3 approaches differ 12.5 % precise determination slope gluonic regge trajectories gluon - interaction decays glueballs understood scalar glueball predicted decays estimate glueballs larger width hadrons more decay mechanisms double - string model string breaking enhancement width factor 2x2 expected two constituent gluons may decay in quark - antiquark pair decays glueballs open problem measuring decay widths processes lowest hybrid states difficult separate from standard chamonium spectrum excited states gluon far from diquark show different properties gluelump heavy quark limit of charmed bottomed hybrid increased interest heavy quark - antiquark pair forms point - like massive colour octet equivalent massive gluon reduced mass real gluon close to quark mass charmonium string tension larger than charmoniumgluon picture different glueball charmonium neglecting spin - tensor interactions pc=++ states fig . gluelump identifying glueballs with largest angular momentum @xmath23 pomeron conjecture decay widths large decays produce large pions states separated decays of excited glueballs open problem light quark hybrids intermediate decay channels study glueballs lower angular momentum qcd fix spin dependence gluon - gluon interaction odd parity trajectories massive trajectories with 3 gluons charmed hybrid sector gluelump larger angular momentum linear regge behavior decays excited glueballs several pions large total j identify initial j glueball reconstruct initial shape string bose - einstein correlation ? paola gianotti panda collaboration discussions on constituent gluon masses models with alexei nefediev pedro sacramento steve cotanch felipe llanes - estrada a. donnachie v landshoff phys . b * 437 408 ( 1998 ) arxiv hep - ph/9806344 j r. pelaez f. j. yndurain arxiv hep - ph/0312187 c j. morningstarpeardon phys . 60 * 034509 1999 ) hep - lat/9901004 liu wu 1419 2002 ) hep - lat/0105019 llanes - estrada cotanch bicudo ribeiro szczepaniak nucl 710 45 ( 2002 ) hep - ph/0008212 brisudova burakovsky goldman szczepaniak . d 67 * 094016 ( 2003 ) nucl - th/0303012 pierre - gilles de gennes superconductivity metals alloys benjamin new york(1966 ) bernard phys . 108 * 431 ( 1982 ) alkofer von smekal phys 353 * 281 ( 2001 ) hep - ph/0007355 l. del debbio faber greensite olejnik phys . d 53 * 5891 ( 1996 ) hep - lat/9510028 kalashnikova phys nucl 59 1303 ( 1996 ) 59n8 1363 1996 hep - ph/9510371 kaidalov simonov phys . 477 * 163 ( 2000 ) hep - ph/9912434 simonov phys nucl64 * 1876 2001 ) 64 1959 2001 hep - ph/0110033 szczepaniak swanson ji cotanch phys. 76 * 2011 ( 1996 ) hep - ph/9511422 robertson swanson szczepaniak ji cotanch . 59 * 074019 ( 1999 ) hep - ph/9811224 szczepaniak swanson 577 * 61 ( 2003 ) hep - ph/0308268 y jin x m. zhang phys 66 * 057505 ( 2002 ) hep - ph/0208120 ] c michael 259 * 58 ( 1985 ) poulis d. trottier . 400 * 358 ( 1997 ) hep - lat/9504015 g karl j. paton phys . 60 * 034015 ( 1999 ) hep - ph/9904407 simonov nucl 592 * 350 ( 2001 ) hep - ph/0003114
| 0.434834
| 3,147
| 1,555
|
, Saving $0.1 in GPT-4.
|
18,886
|
we have performed @xmath0 observations in ngc6611 , the young cluster that ionises the eagle nebula . we have discovered a rich pre - main sequence concentrated around the o - stars in the cluster .
as measured by their l@xmath1-band excesses , at least 58%@xmath25% of the pre - main sequence objects ( 0.45m@xmath3@xmath4m@xmath42m@xmath3 ) have circumstellar discs . by comparing this disc frequency with frequencies determined for regions where the pre - main sequence stars are subject to less ionising radiation
, we find no evidence that the harsher environment of ngc6611 ( approximately an order of magnitude more ionising lyman continuum radiation than the trapezium cluster ) significantly hastens the dissipation of circumstellar discs around solar - mass stars .
[ firstpage ] circumstellar matter stars : pre - main - sequence stars : late type open clusters and associations : individual ( ngc6611 ) infrared : stars
|
a significant fraction of the low - mass stars in our galaxy may be born in environments where very massive stars are also present .
the winds and ionising radiation from o - stars could be expected to change the properties of low - mass stellar populations in two ways : by inhibiting low - mass star formation ( e.g. , * ? ? ?
* ) and/or by hastening the dispersal of their circumstellar discs @xcite
. however , observations in several nearby ob - associations ( e.g. , the trapezium cluster ) reveal a wealth of low - mass stellar objects , born from the same stellar nursery as the more massive stars .
circumstellar discs are an essential ingredient of low - mass star formation , yet they seem to disappear quickly in nearby star forming regions @xcite .
the timescale for discs to dissipate is crucial in determining whether planets form and on which timescales @xcite , and might control planetesimal migration @xcite .
it is not known which process dominates disc dispersal with likely culprits being viscous accretion , radiation pressure from the central star and from external sources , dust agglomeration and planetesimal formation .
there is observational evidence that luminous o - stars affect circumstellar discs around low - mass stars ( e.g. , the proplyds in orion , @xcite ) , supported by theoretical models of disc photo - evaporation by uv radiation @xcite . judging from l - band disc excesses , low - mass stars in young clusters exhibit extremely high disc frequencies ( @xmath580% , e.g. the trapezium cluster , @xcite ) up to ages of @xmath61.5myr , which then decrease rapidly with age : at @xmath63myr , 50% of discs have been dissipated , and the timescale for all cluster members to lose their discs is @xmath66myr @xcite .
recently , @xcite found that in the starburst cluster ngc3603 disc dissipation occurs on shorter timescales .
it is still not clear whether photo - evaporation is an important contributor to this decline .
we are investigating the low - mass star and disc population in ngc6611 , a young and massive cluster @xcite that is currently ionising the eagle nebula .
it contains a dozen o - stars ( earliest spectral type o4 , @xcite ) , that produce @xmath67 times more ionising ( lyman continuum ) radiation than the trapezium cluster @xcite .
the visual extinction towards ngc6611 is known to be variable @xcite .
estimated distances range between 2@xmath72.6kpc and the cluster age is about 2@xmath73myr ( e.g. , * ? ? ?
we have obtained @xmath0 photometry of ngc6611 in order to identify the pre - main sequence ( pms ) population and determine the cluster disc frequency .
our aim is to establish empirically whether the massive stars significantly hasten disc dissipation around solar - mass stars in this cluster .
the complete details of the observing strategy and the reduction procedure for the data sets described here will be discussed in a forthcoming paper ( oliveira et al . in preparation ) ; a summary is presented here .
survey covers the entire star forming region , while the @xmath8 survey covers the area delineated by the white lines . ]
the region containing ngc6611 was surveyed using the wfc at the isaac newton telescope .
observations were taken through gunn i and z filters on the nights of 16@xmath717 july 2002 .
the wfc consists of four ccd detectors ; the camera has 0.33arcsec pixels and a field - of - view ( fov ) of 34arcmin@xmath934arcmin ( with an 11arcmin@xmath911arcmin square missing from the north - west corner ) .
total exposure times are 8@xmath9300s and 8@xmath9400s respectively at i and z ; 20s frames were also obtained in each band to account for the high dynamic range of the objects brightness .
landolt photometric standards were measured and these were used to obtain cousins @xmath10 magnitudes and @xmath11 colours .
the data were reduced in a standard way ( bias subtraction , flatfielding , de - fringing ) .
the data analysis proceeded using the cluster suite of software @xcite .
the external precision of the photometry was tested against @xmath10 magnitudes from the eso eis survey ( s. smartt and c. evans , private communication ) ; it reveals good systematic agreement to better than 0.05mag between 12@xmath4i@xmath419mag ( the faint limit arising from the eis survey ) .
the @xmath8 photometry ( mko - ir system , @xcite ) of ngc6611 was obtained with uist at the uk infrared telescope in june 2003 and june@xmath7august 2004 . in fig.[image ] we show the 6 fields that were observed at ukirt , covering an approximate area of 4arcmin@xmath95arcmin ( fov 2arcmin@xmath92arcmin with 0.12arcsec pixels ) .
the observations in the @xmath12 filters were performed in a standard 9-point dither pattern .
the l@xmath1-band images required 55h of observations to cover the requested area .
these observations were performed with a 4-point dither pattern and with chopping to a nearby field to properly sample the sky background .
the l@xmath1-band images were taken in seeing better than 0.6arcsec and time on source varied between 60@xmath790min , allowing us to reach @xmath13@xmath614mag with signal - to - noise of 10 .
the reduction was performed with orac - dr , the ukirt data reduction and high - level instrument control software .
multi - object photometry was performed on the @xmath8 images using an implementation of daophot ( version ii ) and allstar @xcite within eso - midas . the @xmath12 photometry was calibrated using the 2mass catalogue while standard stars were observed to calibrate the l@xmath1-band photometry .
the astrometry was also performed with relation to the 2mass catalogue .
the first step was to identify the pre - main - sequence population in ngc6611 .
fig.[cmd ] shows the @xmath10/@xmath11 colour - magnitude diagram for the central ( 7arcmin@xmath96arcmin ) area of the cluster .
pms stars are redder than main - sequence stars of similar i - magnitude and therefore the pms appears well separated from the bulk of foreground contamination in this diagram .
the polygon represents the selection domain for a star to be considered a pms candidate .
fig.[cmd ] also shows an equivalent diagram for an area of the same size situated 16arcmin west of the cluster .
the pms is effectively absent ; we estimate foreground contamination to be of the order of 5% .
the fainter magnitude limit of the sample is imposed by the ir observations , i.e. we ensure that for the faintest stars in our sample ( @xmath10=19mag ) we are still able to detect stellar photospheric emission in the l@xmath1-band . at the lower mass end ,
the catalogue is essentially complete ; however objects brighter than @xmath10@xmath612mag are saturated in the i - band images .
the uncertainties in magnitude and colour are generally much better than 0.1mag .
we have identified 259 pms candidates ( with good @xmath14 photometry ) in the area covered by our ir survey .
we estimate that these objects have masses in the range 0.45m@xmath3@xmath15m@xmath157m@xmath3 ( using models by @xcite ) , assuming a distance of 2kpc , an average extinction @xmath16@xmath63.4mag and an age of 3myr @xcite .
circumstellar dust discs are cooler than the stellar photospheres therefore they radiate mainly at ir wavelengths . if a young star has an ir colour in excess of the stellar photosphere this indicates the presence of a circumstellar disc .
traditionally , @xmath17 excesses were used as a disc indicator , but such an excess is only detectable for discs with high accretion rates and low inclinations @xcite . in the l@xmath1-band ( or at longer wavelengths )
the contrast between the stellar photosphere and disc emission is large even for relatively small disc masses @xcite , making it an efficient disc diagnostic @xcite .
fig.[ccd ] shows the @xmath12 and @xmath8 colour - colour diagrams for the sample of pms stars in ngc6611 .
the full lines are the main - sequence and giant loci ; the dashed lines are the reddening band @xcite .
we assume that the spectral type of our lowest - mass object is m3 ( to place the reddening band ) .
we corrected the observed pms colours for the cluster s average extinction .
objects to the right of the reddening band can not have purely photospheric colours and are identified as having a @xmath18 and/or @xmath13 excess , and therefore a circumstellar disc . simply by counting such objects in fig.[ccd ]
we see that 45 out of 259 objects ( 17% ) have an ( @xmath19 ) excess and 135 out of 259 objects ( 52% ) have a ( @xmath20 ) excess . correcting for 5% contamination from field stars ( that would not show an excess )
, we estimate that 18%@xmath23% and 55%@xmath25% of the pms objects in ngc6611 have ( @xmath19 ) and ( @xmath20 ) excesses respectively .
if we divide the pms objects in two mass bins , 0.45m@xmath3@xmath4m@xmath42m@xmath3 and 2m@xmath3@xmath4m@xmath47m@xmath3 , the ( @xmath20 ) disc frequencies are respectively 58%@xmath25% and 30%@xmath210% , i.e. the disc frequency is lower for more massive stars as it is observed in other star forming regions @xcite .
we are being conservative in our choice of the latest spectral type in the sample .
furthermore , this method tends to underestimate the fraction of early spectral type objects with excesses .
thus , our derived ( @xmath20 ) disc fraction is a lower limit to the true disc frequency for solar - mass stars in ngc6611 .
.comparison of the disc frequency of ngc6611 with similarly aged clusters . for each cluster the age , spectral type of the most massive star , @xmath21 disc frequency , mass range and number of stars for the determinations are given . [
cols="<,^,^,<,>,^ " , ] [ t1 ] in table[t1 ] we compare the derived disc frequency with published data for nearby star forming regions of a similar age , but where the pms stars are subject to less ionising radiation from the massive stars .
disc frequencies for ic348 and ngc2264 are respectively from @xcite and @xcite .
we should point out that these disc frequencies were determined in the same way as in this letter . without taking into account the uncertainties in determining young cluster ages , the disc frequency for ngc6611
is perfectly bracketed by the disc frequencies of these two clusters .
furthermore , the ( @xmath19 ) disc fraction in ngc6611 is also consistent with the ( @xmath19 ) disc fraction in ic348 ( 21%@xmath25% , @xcite ) , indicating that the fractions of _ accretion discs _ might also be similar .
ngc6611 is a young , massive cluster that ionises the eagle nebula . using optical photometry
we have discovered a rich low - mass , pre - main - sequence population in the cluster .
using @xmath8 photometry we investigate the cluster disc frequency for solar - mass objects ( 0.45m@xmath3@xmath4m@xmath42m@xmath3 ) .
the contamination corrected disc frequency is 58%@xmath25% determined from ( @xmath20 ) excesses .
not only is the ( @xmath20 ) disc frequency perfectly comparable with the disc frequencies in ic348 and ngc2264 ( two similarly aged but quieter star forming regions ) , but also the accretion disc frequencies are similar .
this seems to indicate that , despite of the presence of more ( and more luminous ) o - stars in ngc6611 , disc dissipation progresses at a rate indistinguishable from other environments .
we can not say that the ionising flux from the o - stars has no effect on the evolution of circumstellar discs , as an l@xmath1-band excess indicates the presence of a circumstellar dust disc but it does not probe the outer , cooler disc regions and thus it is practically insensitive to total disc mass @xcite .
neither does it reflect other important disc evolution processes like dust grain agglomeration and annealing .
still we find no evidence that the harsher environment of ngc6611 significantly _ hastens _ the dissipation of circumstellar discs around solar - mass stars , when averaged over an entire cluster .
we thank the staff of the united kingdom infrared telescope ( ukirt ) and isaac newton telescope ( int ) for their support .
the ukirt is operated by the joint astronomy centre on behalf of the uk particle physics and astronomy research council ( pparc ) .
this publication makes use of data products from the two micron all sky survey , which is a joint project of the university of massachusetts and the infrared processing and analysis center / california institute of technology , funded by the national aeronautics and space administration and the national science foundation .
data reduction was performed using computer facilities at keele university funded by pparc .
jmo and spl acknowledge financial support from pparc .
|
low - mass stars in may born in massive stars winds ionising radiation from o - stars could change properties low - mass stellar populations inhibiting formation hastening dispersal circumstellar discs observations in nearby ob - associations cluster reveal wealth low - mass stellar objects born from same stellar nursery as massive stars circumstellar discs essential star formation disappear quickly in nearby star forming regions timescale for discs to dissipate crucial planets planetesimal migration not known process dominates disc dispersal likely culprits viscous accretion radiation pressure dust agglomeration planetesimal formation evidence luminous o - stars affect circumstellar discs around low stars supported by theoretical models disc photo - evaporation by uv radiation low - mass stars in young clusters exhibit high disc frequencies up to @xmath61.5myr decrease rapidly with age at @xmath63myr 50% discs dissipated timescale for cluster members to lose discs is @xmath66myr in starburst cluster ngc3603 disc dissipation occurs shorter timescalesclear photo - evaporation decline investigating low - mass star disc population in ngc6611 young cluster @xcite ionising eagle nebula contains dozen o - stars produce @xmath67 times more ionising radiation than trapezium cluster @xcite visual extinction towards variable estimated distances between 2@xmath72.6kpc cluster age 2@xmath73myr obtained @xmath0 photometry ngc6611 identify pre - main sequence population determine cluster disc frequency aim establish massive stars hasten disc dissipation around solar - mass stars details observing strategy reduction procedure in forthcoming paper survey covers star forming region @xmath8 survey covers area by white lines region ngc6611 surveyed using wfc isaac newton telescope observations through gunn i z filters nights 16@xmath717 july 2002 wfc four ccd detectors camera 0.33arcsec pixels field - of - view 34arcmin@xmath934arcmin 11arcmin@xmath911arcmin square missing exposure times 8@xmath9300s and 8@xmath9400s at i z 20s frames obtained in each band high dynamic rangelandolt photometric standards measured @xmath10 magnitudes @xmath11 colours data reduced bias subtraction flatfielding de - fringing data analysis using software @xcite precision tested against @xmath10 magnitudes eso eis survey agreement better than 0.05mag between 12@xmath4i@xmath419mag @xmath8 photometry ngc6611 obtained with uist uk infrared telescope june 2003 2004 fig 6 fields observed at ukirt area 4arcmin@xmath95arcmin 2arcmin@xmath92arcmin 0.12arcsec pixels observations @xmath12 filters 9-point dither pattern l@xmath1-band images required 55h observations 4-point dither pattern chopping nearby field sky background images better than 0.6arcsec time on source varied 60@xmath790min @xmath13@xmath614mag with signal - to - noise of 10 reduction with orac - dr ukirt data reduction high - level instrument control software multi - object photometry performed on @xmath8 images using daophot allstar @xcite eso - midas@xmath12 photometry calibrated 2mass catalogue standard stars observed l@xmath1-band photometry astrometry performed 2mass catalogue pre - main - sequence population in ngc6611 fig shows @xmath10/@xmath11 colour - magnitude diagram central@xmath96arcmin area cluster pms stars redder than main - sequence stars pms separated from foreground contamination polygon represents selection domain for star pms candidate equivalent diagram area same size 16arcmin west cluster pms absent foreground contamination 5% fainter magnitude limit imposed by ir observations faintest stars @xmath10 stellar photospheric emission l@xmath1-band lower mass end catalogue complete objects brighter than @xmath10@xmath612mag saturated in i - band images uncertainties in magnitude colour better than 0.1mag identified 259 pms candidates good @xmath14 photometry area ir survey estimate objects masses 0.45m@xmath3@xmath15m@xmath157m@xmath3 distance 2kpc average extinction @xmath16@xmath63.4mag age 3myr @xcitecircumstellar dust discs cooler photospheres radiate at ir wavelengths young star ir colour indicates circumstellar disc @xmath17 excesses disc indicator detectable for discs high accretion rates low inclinations l@xmath1-band longer contrast between stellar photosphere disc emission large for small disc masses efficient disc diagnostic fig. shows @xmath12 @xmath8 colour diagrams pms stars in ngc6611 full lines main - sequence giant loci dashed lines reddening band spectral type lowest - mass object m3 reddening band corrected observed pms colours for cluster s average extinction objects right of reddening band photospheric colours @xmath18 @xmath13 excess circumstellar disc 45 out of 259 objects ( 17% have @xmath19 ) excess 135 ( 52% ) have @xmath20 ) excess 5% contamination from field stars 18%@xmath23% 55%@xmath25% pms objects in ngc6611 have @xmath19 @xmath20 ) excesses pms objects in two mass bins45m@xmath3 2m @xmath20 ) disc frequencies 58%@xmath25% 30%@xmath210% lower for more massive stars other regions conservative latest spectral type sample method underestimate early spectral type objects with excesses derived @xmath20 ) disc lower limit true disc frequency for solar - mass stars in ngc6611.comparison disc frequency ngc6611 with similarly aged clusters each cluster age spectral type most massive star @xmath21 disc frequency mass range number of stars determinations given table compare derived disc frequency with data nearby star forming regions similar age pms stars less ionising radiation from massive stars disc frequencies for ic348 ngc2264 from @xcite and @xcite . disc frequencies determined same letter disc frequency for ngc6611 bracketed by disc frequencies two clusters @xmath19 ) disc fraction in ngc6611 consistent with ic348 ( 21%@xmath25% @xcite ) fractions accretion discs might be similarngc6611 young massive cluster ionises eagle nebula optical photometry discovered rich low - mass pre - main - sequence population @xmath8 photometry cluster disc frequency for solar - mass objects 0.45m@xmath3@xmath4m@xmath42m contamination corrected disc frequency 58%@xmath25% from @xmath20 ) excesses @xmath20 disc frequency comparable with ic348 ngc2264 aged quieter star regions accretion disc frequencies similar more luminous o - stars in ngc6611 disc dissipation progresses ionising flux - stars evolution circumstellar discs l@xmath1-band excess indicates circumstellar dust disc probe outer cooler disc regions insensitive to total disc mass disc evolution processes dust grain agglomeration annealing no evidence harsher environment ngc6611 hastens dissipation circumstellar discs around solar - mass stars united kingdom infrared telescope isaac newton telescope support ukirt operated by joint astronomy centre uk particle physics astronomy research councilpublication data two micron sky survey joint project university massachusetts infrared processing analysis center california institute technology funded national aeronautics space administration national science foundation data reduction computer keele university pparc spl financial support pparc
| 0.495788
| 3,059
| 1,600
|
, Saving $0.1 in GPT-4.
|
18,895
|
we present the first complete 3-dimensional simulations of the core - collapse of a massive star from the onset of collapse to the resultant supernova explosion .
we compare the structure of the convective instabilities that occur in 3-dimensional models with those of past 2-dimensional simulations .
although the convective instabilities are clearly 3-dimensional in nature , we find that both the size - scale of the flows and the net enhancement to neutrino heating does not differ greatly between 2- and 3-dimensional models .
the explosion energy , explosion timescale , and remnant mass does not differ by more than 10% between 2- and 3-dimensional simulations .
|
convective instabilities have been invoked to help drive core - collapse supernova explosions since epstein ( 1979 ) first argued that negative lepton gradients would drive ledoux convection in the core .
epstein ( 1979 ) argued that this convection would increase the transport of energy out of the core and help facilitate a supernova explosion .
bruenn , buchler , & livio ( 1979 ) confirmed that this convection could indeed increase the neutrino luminosity and help drive a supernova explosion . considerable work studying convective instabilities , including multi - dimensional models ( e.g. buchler , livio , & colgate 1980 ) , followed soon after .
although entropy gradients caused by the shock were suggested during this time ( see bruenn , buchler , & livio 1979 ) , burrows ( 1987 ) first suggested that this entropy - driven convection could also boost the neutrino luminosity and help drive a supernova explosion .
the work of the past two decades has led to two separate convective regions : one within the extremely dense proto - neutron star core ( see keil , janka , & mller 1996 for a review ) and the other in the region between the proto - neutron star and the accretion shock where the bounce stalled . in this latter region ,
neutrino heating powers an unstable entropy gradient that drives convection ( see bethe 1990 for a review ) . in the dense proto - neutron star , convection driven by lepton gradients ( epstein 1979 , keil et al .
1996 ) , entropy gradients ( burrows 1987 , burrows & lattimer 1988 ) , and doubly diffusive ( `` salt - finger '' ) instabilities ( mayle & wilson 1988 ) have all been invoked to increase the neutrino luminosity and hence , the neutrino heating . in the neutrino heating region
, entropy - driven convection helps to convert thermal energy gained from neutrino heating into kinetic energy , improving the over - all efficiency at which neutrinos from the core deposit energy into the outer layers of the star .
this latter convection has been studied in a number of 2-dimensional simulations over the last decade @xcite .
this entropy driven convection occurs shortly after the collapse of the massive star .
when this core reaches nuclear densities and nuclear forces rapidly raise the pressure , its collapse halts , sending a bounce shock through the star .
this bounce shock stalls and leaves behind an unstable entropy profile that seeds convection in the region between the proto - neutron star and the edge of the stalled supernova shock .
neutrinos leak out from the proto - neutron star and heat this region , continuing to drive this entropy - driven convection .
it is this convection that many groups now agree helps drive the supernova explosion @xcite .
however , due to limitations in computer hardware and simulation software , all of the past work was limited to 2-dimensional simulations , leaving behind a number of unanswered questions .
whether or not this increased efficiency is sufficient to drive a supernova explosion with the current supernova mechanisms is still a matter of debate : compare the explosions of @xcite and @xcite to the fizzles of @xcite .
a key uncertainty in all of these simulations lies in the fact that the 2-dimensional simulations are being used to study an inherently 3-dimensional event in nature .
some scientists have argued that nature will produce convective instabilities that are much different than what we see in the current 2-dimensional simulations . in other convective problems ( e.g. novae )
it has been found that 2-dimensional models of these inherently 3-dimensional processes can lead to vastly incorrect answers ( compare the differences between the 2- and 3-dimensional work of kercek , hillebrandt , & truran 1998 , 1999 ) . in this letter , we present the first complete 3-dimensional simulations of the evolution of a massive star from collapse to explosion , with particular emphasis on the differences between 2 and 3-dimensional models of the entropy - driven convection .
we follow these simulations until a strong supernova shock has been launched , and can hence see how these differences affect the final explosion energy , remnant mass , and nucleosynthetic yield of these supernovae .
our collapse simulations use the smooth particle hydrodynamics ( sph ) technique with the parallel tree algorithm developed by @xcite . to this parallel code
, we have added the equation of state and neutrino physics from the supernova code developed by @xcite .
the equation of state uses the nuclear equation of state by @xcite at high densities and the @xcite equation of state at low densities .
nuclear burning is approximated by a nuclear statistical equilibrium scheme @xcite .
the neutrino transport is mediated by the single energy flux - limiter developed by @xcite with appropriate geometrical factors for 3-dimensional models .
details and tests of this code are described in @xcite . to facilitate comparison with past 2-dimensional simulations @xcite ,
the gravity is calculated assuming a spherically symmetric potential .
our progenitor is the standard 15m@xmath0 star ( s15s7b2 ) produced by @xcite . by using the same equation of state for low densities used by @xcite
, we can seamlessly map these 1-dimensional progenitors into our 3-dimensional collapse code . to study the convection in detail , we have run 3 core - collapse simulations this progenitor with a range of resolutions from 300,000 to 3 million particles ( see table 1 ) .
we compare these simulations to past 2-dimensional simulations which have the same physics implementations @xcite to determine the differences between 2-dimensional and 3-dimensional models of convection and more fully understand the role convection plays in the supernova mechanism .
figure 1 shows the results of models a , b , and c 75ms after bounce .
the isosurface shows material with radial velocities of 1000kms@xmath1 and outlines the outward moving convective bubbles . between this surface
lies the convective downflows .
note that even in the high resolution runs , the total number of bubbles is low , roughly consistent with the number of modes one might expect from the 2-dimensional simulations . a 2-dimensional slice of model b ( fig .
2 ) reveals convective overturns which are very similar to the 2-dimensional simulations ( see fryer 1999 ) .
the 3-dimensional simulations produce nearly the same neutrino fluxes and energies that were found in the 2-dimensional simulations ( fig .
although this is not surprising because the transport methods were identical ( except for geometrical factors ) , it does show that the small differences in the convective motions do not seem to dramatically affect the neutrino emission .
given that the 3-dimensional simulations appear similar to the 2-dimensional simulations , it is not surprising that most of the quantitative results between these simulations are the same .
the ultimate explosion energy , explosion times , and remnant masses are all within 10% of each other .
although on the surface , the amount of neutron rich ejecta is similar , the 3-dimensional simulations produce more extremely low ( @xmath2 ) ejecta than the 2-dimensional models , and 3-dimensional models , if anything , exacerbate the problem of ejecting too much neutron rich material .
although the structure of the entropy - driven convection in core - collapse supernova is definitely 3-dimensional , there is close resemblance between our 3-dimensional simulations and past 2-dimensional simulations .
this suggests that , for the accuracy currently needed in supernova simulations , 2-dimensional models may be sufficient to determine the convective enhancement to the neutrino - driven supernova mechanism .
certainly , the uncertainties in the nuclear equation of state and in the neutrino cross - sections and transport are much larger than the uncertainties caused by assuming 2-dimensional convection .
the fact that the 3-dimensional models continue to produce too much neutron rich ejecta implies that there still persists missing pieces to the supernova puzzle ( probably the neutrino transport , neutrino cross - sections , and equation of state are all culprits ) .
our simulations are designed to study the nature of the convection above the proto - neutron star in core - collapse supernovae .
the convection arising in our 3-dimensional simulations shows a remarkable resemblance to 2-dimensional core - collapse simulations . unlike the nova simulations of kercek , hillebrandt , & truran ( 1998 , 1999 ) , the structure , extent and energetics of the convection in core - collapse simulations are the same in 2 and 3-dimensions
. we can not stress enough the fact that the numbers provided in this paper are not final answers to the collapse of a 15m@xmath0 star . with better neutrino transport techniques , neutrino cross - sections and equations of state , these values will change .
however , changes in the neutrino physics and equation of state are unlikely to change the nature of the convection above the proto - neutron star . unless the nature of the convection changes dramatically with these improvements ,
our 3-dimensional models show that the convection above the proto - neutron star in core - collapse supernovae is modeled accurately in 2-dimensions . indeed , for the level of convection arising from our simulations of the core - collapse of a 15m@xmath0 star , we find that 2-dimensional models are sufficiently accurate to model the supernova mechanism
. of course , 3-dimensional models will still be essential for studies of inherently 3-dimensional aspects of core - collapse ( neutron star kicks , gravitational wave emission , etc . ) .
note also , that for these simulations ( where the gravity is set to be spherically symmetric ) , there are no large asymmetries in the explosion .
because there are so many convective modes , it is unlikely that any large asymmetry will develop without some large - scale force driving that asymmetry ( e.g. asymmetries in the neutrino emission or initial collapse conditions ) .
it is possible that the convection will reduce to fewer modes for those explosions with long delays ( janka - pvt . communication ) .
if so , it may be possible to produce the observed neutron star kicks .
but with the current models , convection alone can not explain the large neutron star kicks . in future work
, we will address these asymmetry issues by modeling with full gravity and considering changes to the initial conditions from rotation to initial asymmetries .
we are grateful to h .-
janka , a. hungerford , a. burrows , s. woosley , and w. miller for useful discussions and support .
this work was funded by a feynman fellowship at lanl , doe scidac grant number de - fc02 - 01er41176 , and lanl - based asci grant .
bethe , h. a. , 1990 , rev .
, 62 , 801 blinnikov , s.i . , dunina - barkovskaya , n.v . , &
nadyozhin , d.k . , 1996 , apjs , 106 , 171 burrows , a. , & lattimer , j. 1988 , phys .
, 163 , 51 burrows , a. , hayes , j. , & fryxell , b. a. 1995 , apj , 450 , 830 fryer , c. l. 1999 , apj , 522 , 413 herant , m. , benz , w. , hix , w.r . , fryer , c.l .
& colgate , s.a .
1994 , apj , 435 , 339 herant , m. , & woosley , s.e .
1994 , apj , 425 , 814 hix , w.r . , &
thielemann , f.k .
1996 , apj , 460 , 869 hflich , p. , 1991 ,
a&a , 246 , 481 janka , h .- th . , & mller , e. 1996 , a&a , 306 , 167 keil , w. , janka , h .-
t . , mller , e. 1996 , apj , 473 , l111 kercek , a. , hillebrandt , w. , truran , j. w. 1998 , a&a , 337 , 379 kercek , a. , hillebrandt , w. , truran , j. w. 1998 , a&a , 345 , 831 kifonidis , k. , plewa , t. , janka , h .- th . ,
mller , e. 2000 , apj , 531 , l123 lattimer , j.m . , & swesty , f.d .
1991 , nuc .
a , 535,331 leonard , d. c. , & filippenko , a. v. 2001 , pasp , 113 , 920 mezzacappa , a. , calder , a. c. , bruenn , s. w. , blondin , j. m. , guidry , m. w. , strayer , m. r. , & umar , a. s. 1998 , apj , 493 , 848 mccray , r. 1993 , ara&a , 31 , 175 miller , d. s. , wilson , j. r. , & mayle , r. w. 1993 , apj , 415 , 278 shigeyama , t. , nomoto , k. , tsujimoto , t. , & hashimoto , m. 1990 , apj , 361 , l23 wang , l. , howell , d. a. , hflich , p. , wheeler , j. c. 2001 , apj , 556 , 302 warren , m.s . , & salmon , j.k .
1993 , in supercomputing 93 , pages 12 - 21 , los alamitos , 1993 . ieee comp .
warren , m.s .
, & salmon , j.k .
1995 , computer physics communications , 87 , 266 warren , m.s . , gentle , a. , & fryer , c.l .
2002 , in preparation woosley , s. e. , & weaver , t. a. 1995 , apjs , 101 , 181
|
convective instabilities invoked drive core - collapse supernova explosions since epstein ( 1979 ) argued negative lepton gradients convection core epstein argued convection transport energy supernova explosion bruenn buchler livio 1979 ) confirmed convection increase neutrino luminosity drive supernova explosion work studying convective instabilities multi - models buchler livio colgate 1980 followed entropy gradients caused by shock suggested burrows ( 1987 ) suggested entropy - driven convection boost neutrino luminosity drive supernova explosion work past two decades led to two convective regions within dense proto - neutron star core 1996 region between proto - neutron star and accretion shock where bounce stalled neutrino heating powers unstable entropy gradient drives convection bethe 1990 in dense proto - neutron star convection driven by lepton gradients epstein 1979 1996 entropy gradients doubly diffusive salt - finger instabilities invoked increase neutrino luminosity neutrino heatingneutrino heating region entropy - driven convection thermal energy into kinetic energy improving efficiency neutrinos deposit energy into outer layers star convection studied in 2-dimensional simulations @xcite convection occurs after collapse star core reaches nuclear densities nuclear forces raise pressure collapse halts bounce shock through star bounce shock unstable entropy profile seeds convection in region between proto - neutron star and edge stalled supernova shock neutrinos leak heat region entropy convection this convection supernova explosion @xcite to limitations in computer hardware simulation software past work limited to 2-dimensional simulations unanswered questions increased efficiency sufficient drive supernova explosion with current supernova mechanisms matter of debate compare explosions of @xcite fizzles key uncertainty 2-dimensional simulations to study inherently 3-dimensional event in nature some scientists argued nature produce convective instabilities different than simulations in other convective problems novae 2-dimensional models can lead to incorrect answers compare differences between 2- 3-dimensional work of kercek hillebrandt truran 1998 1999 )present first 3-dimensional simulations evolution massive star from collapse to explosion emphasis on differences between 2 3-dimensional models entropy - driven convection follow simulations until strong supernova shock launched differences affect explosion energy remnant mass nucleosynthetic yield collapse simulations use smooth particle hydrodynamics technique parallel tree algorithm @xcite added equation of state neutrino physics from supernova code @xcite equation uses nuclear equation high low densities nuclear burning approximated by nuclear statistical equilibrium scheme neutrino transport mediated by single energy flux - limiter @xcite geometrical factors for 3-dimensional models details tests code described in @xcite gravity calculated spherically symmetric potential progenitor is standard 15m@xmath0 star ( s15s7b2 ) @xcite same equation of state for low densities map 1-dimensional progenitors into 3-dimensional collapse code run 3 core - collapse simulations resolutions 300,000 to 3 million particles compare simulations to past 2-dimensional simulations determine differences convection understand role in supernova mechanismfigure 1 shows results models a b c 75ms after bounce isosurface shows material radial velocities 1000kms@xmath1 outlines outward moving convective bubbles surface convective downflows high resolution runs total number bubbles low consistent with modes 2-dimensional simulations 2-dimensional slice of model b fig 2 reveals convective overturns similar to 2-dimensional simulations 1999 3-dimensional simulations produce same neutrino fluxes energies 2-dimensional simulations small differences in convective motions affect neutrino emission 3-dimensional simulations similar 2-dimensional quantitative results same ultimate explosion energy times remnant masses within 10% neutron rich ejecta similar 3-dimensional simulations produce more extremely low ( @xmath2 ) ejecta than 2-dimensional 3-dimensional models exacerbate problem of ejecting too much neutron rich material structure entropy - driven convection in core - collapse supernova 3-dimensional close resemblance between 3-dimensional simulations past 2-dimensional simulations suggests 2-dimensional models may sufficient determine convective enhancement neutrino - driven supernova mechanismuncertainties in nuclear equation of state neutrino cross - sections transport larger than 2-dimensional convection 3-dimensional models produce too much neutron rich ejecta missing pieces to supernova puzzle neutrino transport cross - sections equation of state culprits our simulations to study convection above proto - neutron star in core - collapse supernovae convection in 3-dimensional simulations resemblance to 2-dimensional core - collapse simulations unlike simulations truran structure extent energetics of convection same in 2 and 3-dimensions numbers not final answers to collapse of 15m@xmath0 star with better neutrino transport techniques cross - sections equations of state values will change changes in neutrino physics equation of state unlikely to change convection above proto - neutron star unless 3-dimensional models show convection above neutron star in modeled accurately in 2-dimensions 2-dimensional models sufficiently accurate to model supernova mechanism 3-dimensional models essential for studies of 3-dimensional aspects of core - collapse ( neutron star kicks gravitational wave emissionsimulations gravity spherically symmetric no large asymmetries in explosion many convective modes unlikely large asymmetry without large - scale force neutrino emission collapse conditions possible convection to fewer modes for explosions with long delays neutron star kicks current models convection explain large neutron star kicks future work address asymmetry modeling with full gravity considering changes initial conditions from rotation to asymmetries grateful to h .- janka a. hungerford. burrows s. woosley w. miller for discussions support work funded by feynman fellowship doe scidac grant de - fc02 - 01er41176 lanl - based asci grant bethe h. 1990 rev., 62 , 801 blinnikov dunina - barkovskaya nadyozhin 1996, 106 , 171 burrows lattimer. 1988 163 , 51 burrows hayes fryxell 1995 apj , 450 , 830 fryer 1999, 522 , 413 herant benz hix fryercolgate s 1994 apj 435 , 339 herant woosley s.e 1994 apj 425 , 814 hix thielemann f.k 1996 apj 460 , 869 hflich 1991 a&a 246 , 481 janka mller 1996 a&a 306 , 167 keil janka mller. 1996 apj 473 , l111 kercek hillebrandt truran j.. 1998 a&a 337 , 379 kercek hillebrandt truran 1998 345 , 831 kifonidis plewa janka mller e. 2000 apj 531 , l123 lattimer j swesty f.d. 1991 nuc 535,331 leonard d. c filippenko v. 2001 pasp 113 , 920 mezzacappa calder bruenn s blondin guidry strayer umar a. s. 1998 apj 493 , 848 mccray 1993 ara&a 31 , 175 miller d wilson j..mayle 1993 apj 415 , 278 shigeyama nomoto tsujimoto hashimoto 1990 apj 361 , l23 wang howell hflich wheeler j. 2001 apj 556 , 302 warren m.s salmon j.k 1993 supercomputing 93 pages 12 - 21 los alamitos 1993 warren m salmon j 1995 computer physics communications 87 , 266 warren m.s gentle fryer c.l. 2002 preparation woosley s weaver 1995 apjs 101 , 181
| 0.503831
| 3,130
| 1,628
|
, Saving $0.1 in GPT-4.
|
18,899
|
a goal of the phenix experiment is to obtain the polarized gluon distribution function in the proton .
double helicity asymmetry in multi - particle production with polarized proton - proton collision is measured at midrapidity with rhic run 2005 data .
this result excludes the maximum positive gluon polarization ( `` grsv - max '' ) .
address = tokyo institute of technology , 2 - 12 - 1 ookayama , meguro - ku , tokyo 152 - 8550 , japan
|
polarized deep inelastic lepton - hadron scattering experiments revealed that the contribution of the quark spin to the proton spin is only 20 - 30% @xcite@xcite .
the remaining component can be carried by the gluon spin and the angular momenta of quarks and gluons .
one of the goals of the phenix experiment is to obtain the contribution of the gluon spin , namely the polarized gluon distribution function in the proton , @xmath0 .
@xmath0 is evaluated by measuring double helicity asymmetry , @xmath1 , of reactions in longitudinally - polarized proton - proton collisions , for example , jet , @xmath2 or direct photon productions .
a jet is measured as a cluster of multiple particles .
the particle cluster measurement gives higher statistics at high transverse momentum ( @xmath3 ) than single particle measurements such as @xmath2 .
@xmath1 is defined as @xmath4 here , @xmath5 and @xmath6 are the number of measured particle clusters with same and opposite beam helicities , respectively ; @xmath7 is relative luminosity ; and @xmath8 and @xmath9 are beam polarizations .
we used proton - proton collision data taken in 2005 at @xmath10 gev with an average beam polarization of @xmath1146% .
the integrated luminosity of analyzed data is 2.2 pb@xmath12 .
the phenix central arm detectors were used .
two arms are positioned almost back to back , and each arm covers the pseudorapidity region @xmath13 and the 90-degree azimuthal angle .
photons with @xmath14 gev/@xmath15 were measured with electromagnetic calorimeters , and an electromagnetic - shower - shape cut and an charged - track - matching veto were applied to eliminate clusters made by charged particles . charged particles with @xmath16 gev/@xmath15 were measured with drift chambers and pad chambers . for each event a high-@xmath3 ( @xmath17 gev/@xmath15 ) photon was required to exist so that the efficiency of high-@xmath3-photon trigger becomes @xmath3 independent .
particles that satisfied the experimental selections were clustered by a cone method . starting from each particle in an event as a seed ,
an interative procedure was used to define a cone around a cluster of particles .
the cone radius @xmath18 ( @xmath19 ) was set to 0.3 .
the transverse momentum of the cone , @xmath20 , was defined as the vector sum of the transverse momenta of the particles in the cone ; @xmath21 the cone that gives the largest @xmath20 in an event was used in the event .
the relationship between @xmath20 and @xmath22 was evaluated with pythia and geant simulations @xcite . from two hard - scattered partons in pythia jet event we selected one parton closer in @xmath18 to cone axis , and adopted @xmath3 of the parton as @xmath3 of jet .
we used pythia version 6.220 with the `` rick field mpi tune a '' setting @xcite .
we have confirmed that the simulation reproduced the event shape , such as particle multiplicity , one - sided thrust in the phenix central arm acceptance and particle @xmath3 density , reasonably well @xcite .
the largest systematic uncertainty in this measurement is an uncertainty on the @xmath3 scale difference between measurement and theory .
it originates in the fact that a jet is defined with cone at hadron level in measurement and at parton level in theory . in @xmath1 measurement
we assigned the @xmath3 scale uncertainty 10% , by which the @xmath3 scale in theory varies when a theory cone size is changed in a typical range .
we could checked the @xmath3 scale uncertainty by measuring cross section or a similar quantity because the difference in @xmath3 scale appears as a shift of cross section curve .
the requirement of a high-@xmath3 photon causes a bias on the fractions of jet production subprocesses ( quark - quark , quark - gluon and gluon - gluon reactions ) .
this effect was estimated using pythia . in general , the gluon - gluon reaction is suppressed particularly at low @xmath3 .
no systematic uncertainty on it has been assigned because this effect is much smaller than other systematic uncertainties .
figure [ fig : evtrate_multiparticle ] shows yield per luminosity of particle cluster with high-@xmath3 photon trigger in the phenix central arm acceptance as a function of @xmath20 . the real data is drawn as red points with systematic errors as a gray band .
the main systematic errors on real data are luminosity uncertainty ( 10% ) and emcal energy scale uncertainty ( 5% ) .
the predicted ones are drawn as three black lines , which are based on the nlo jet cross section with @xmath23 at @xmath24 @xcite and the @xmath22-@xmath20 relationship .
the yellow band shows the deviation of the black solid line caused by a @xmath2510% @xmath3 scale variation .
the difference in the yield per luminosity between the real data and the predicted one does nt exceed the deviation .
figure [ fig : asym_multiparticle ] shows the @xmath1 of particle cluster production as a function of @xmath20 .
the predicted @xmath1 s are drawn as black lines , which are based on the nlo jet @xmath1 with @xmath23 at @xmath24 @xcite , the three @xmath0 models @xcite and the @xmath22-@xmath20 relationship .
the yellow band shows the 10% @xmath3 scale uncertainty .
this result excluded the `` grsv - max '' case and indicated a similar probability for the `` grsv - std '' and `` @xmath26 input '' cases .
-@xmath20 relationship .
* yellow band * : deviation of solid line by @xmath2510% @xmath3 scale variation . ] . *
red points * : real data . *
black lines * : predicted ones evaluated with the nlo jet @xmath1 @xcite , the three @xmath0 models @xcite and the @xmath22-@xmath20 relationship . * yellow band * : systematic uncertainty on @xmath3 scale difference between measurement and theory . ]
double helicity asymmetry in multi - particle production was measured at midrapidity reagion ( @xmath27 ) at @xmath10 gev .
the analyzed data were taken in 2005 with @xmath28 pb@xmath12 and @xmath29 46% .
the relationship between @xmath22 and @xmath20 was evaluated with the pythia and geant simulations .
the systematic uncertainty on @xmath1 was assigned 10% due to the @xmath3 scale difference between measurement and theory .
this result excluded the `` grsv - max '' case and indicated a similar probability for the `` grsv - std '' and `` @xmath26 input '' cases .
it will make stronger constraint on @xmath0 with futher statistics .
9 j. ashman _ et al .
_ [ european muon collaboration ] , phys .
b * 206 * , 364 ( 1988 ) .
[ hermes collaboration ] , arxiv : hep - ex/0609039 .
k. nakano , talk at second joint meeting of nuclear physics divisions of aps and jps , session bg , 2005 .
r. field [ cdf collaboration ] , acta phys .
b * 36 * , 167 ( 2005 ) .
b. jager , m. stratmann and w. vogelsang , phys .
d * 70 * , 034010 ( 2004 ) [ arxiv : hep - ph/0404057 ] .
m. gluck , e. reya , m. stratmann and w. vogelsang , phys .
d * 63 * , 094005 ( 2001 )
|
polarized lepton - hadron scattering experiments contribution quark spin to proton spin 20 - 30% remaining carried by gluon spin angular momenta of quarks gluons phenix experiment contribution gluon spin polarized gluon distribution function in proton evaluated measuring double helicity asymmetry reactions longitudinally - polarized proton - proton collisions jet measured as cluster of particles particle cluster measurement higher statistics at high transverse momentum than single particle measurements defined as measured particle clusters with helicities relative luminosity beam polarizations used proton - proton collision data 2005 at @xmath10 gev average beam polarization integrated luminosity 2.2 pb phenix central arm detectors used two arms covers pseudorapidity region 90-degree azimuthal angle photons with @xmath14 measured with electromagnetic calorimeters electromagnetic - shower - shape cut charged - track - matching veto eliminate clusters charged particles charged particles with measured with drift chambers pad chamberseach event high-@xmath3 ) photon required efficiency trigger independent particles selections clustered by cone method interative procedure cone around cluster cone radius @xmath18 ( @xmath19 ) set to 0.3 transverse momentum cone @xmath20 defined as vector sum of transverse momenta particles @xmath21 cone largest @xmath20 used relationship between @xmath20 @xmath22 evaluated with pythia geant simulations two partons pythia jet selected one parton closer @xmath18 to cone axis adopted @xmath3 parton as @xmath3 jet used pythia version 6.220 rick field tune a setting @xcite simulation reproduced event shape particle multiplicity one - sided thrust phenix central arm acceptance particle @xmath3 density well largest systematic uncertainty uncertainty @xmath3 scale difference between measurement theory jet defined with cone at hadron level parton level theory assigned @xmath3 scale uncertainty 10% varies when cone size changed@xmath3 scale uncertainty measuring cross section quantity difference appears as shift cross section curve high-@xmath3 photon causes bias on jet production subprocesses quark - gluon gluon - reactions effect estimated using pythia gluon - gluon reaction suppressed at low @xmath3 no systematic uncertainty assigned smaller than uncertainties figure shows yield per luminosity particle cluster with high-@xmath3 photon trigger phenix real data red points systematic errors gray band main errors luminosity uncertainty ( 10% ) emcal energy scale uncertainty ( 5% ) predicted ones drawn as three black lines based on nlo jet cross section @xmath23- relationship yellow band shows deviation @xmath3 scale variation difference in yield per luminosity between real data predicted exceed deviation figure_multiparticle shows @xmath1 particle cluster production function of @xmath20 predicted @xmath1 s drawn as black lines based on nlo jet models relationship yellow band shows 10% @xmath3 scale uncertaintyresult excluded grsv - max indicated similar probability grsv - std @xmath26 input cases relationship yellow band deviation solid line @xmath2510% @xmath3 scale variation red points real data black lines predicted ones evaluated nlo jet @xmath1 @xcite @xmath0 models @xmath22-@xmath20 relationship yellow band systematic uncertainty @xmath3 scale difference measurement theory double helicity asymmetry multi - particle production measured midrapidity reagion @xmath10 gev analyzed data 2005 @xmath28@xmath12 @xmath29 46% relationship between @xmath22 @xmath20 evaluated pythia geant simulations systematic uncertainty on @xmath1 assigned 10% due @xmath3 scale difference measurement result excluded grsv - max similar probability grsv - std @xmath26 input cases stronger constraint on @xmath0 futher statistics ashman european muon collaboration phys . 206 364 1988 nakano talk second joint meeting nuclear physics jps 2005 field collaboration acta phys . 167 2005 jager stratmann vogelsang phys 034010 2004 ph/0404057gluck reya m stratmann vogelsang phys. 63 094005 2001
| 0.306628
| 1,764
| 861
|
, Saving $0.1 in GPT-4.
|
18,900
|
nmr spectra in superfluid a - like phases confined in axially deformed aerogel in presence of a magnetic field inclined with respect to deformation axis is considered .
the characteristic features of dipole frequency shift in axially compressed and axially stretched cases are compared . in particular
, it is shown that in axially stretched aerogel environment the stability region of coherently spin precessing mode is rather narrow due to the @xmath0lim effect .
|
the nmr signature of spin - precessing modes of superfluid a - like phase immersed in a uniaxially deformed aerogel attracts vivid interest . an important information was collected from nmr spectra of the a - like phase in axially compressed @xcite and axially stretched @xcite cases . in this situation the orbital anisotropy axis @xmath1 of the order parameter of superfluid @xmath2he - a is pinned either along cylindrical axis ( in axially compressed aerogel ) , or in the transverse plane ( in axially stretched aerogel ) .
the main body of information on the peculiarities of coherent spin precession is contained in the transverse nmr frequency @xmath3 where the frequency shift @xmath4 from the larmor value @xmath5 is due to the action of the dipole - dipole ( spin - orbit ) forces described by the potential @xmath6 where @xmath7 is the axis of magnetic anisotropy of @xmath2he - a order parameter . in a strong magnetic field @xmath8 the transverse nmr frequency shift @xmath9 where @xmath10 denotes the time -averaged spin - orbit potentia , @xmath11 is an equilibrium magnitude of spin density and @xmath12 marks the tipping angle of @xmath13 precessing about the direction of an applied magnetic field @xmath14 . in above - mentioned experiments ( refs.@xcite )
the magnetic field was directed along deformation axis of aerogel samples filled with superfluid a - like phase and the information about spin dynamics could be extracted from @xmath15 . in what follows we consider the case where the orientation of @xmath16 can be inclined by an angle @xmath17 with respect to the axis of deformation of aerogel .
in this situation the observed frequency shift @xmath18 can be explored in @xmath19 plane allowing to cover entire stability region of coherently spin - precessing modes .
the experiments using the rotation of the magnetic field with respect to aerogel deformation axis was , in particular , undertaken in ref.@xcite .
our theoretical consideration contains some suggestions for further experimental efforts . in order to describe the configuration where the external magnetic field @xmath20 is inclined with respect to the axis of a global deformation of aerogel we consider two coordinate frames : an orbital frame @xmath21 `` attached '' to the cylindrical experimental cell ( with @xmath22 oriented along the cell axis ) and the spin space frame @xmath23 .
the orbital anisotropy axis is given as : @xmath24 in the spin - precessing regime the magnetic anisotropy axis @xmath25 is rotating about an instantaneous orientation of @xmath13 , so that @xmath26 where @xmath27 are euler angles describing 3d rotations in the spin space . in order to construct @xmath18
we have to take into account that for the orientation of @xmath16 confined in the @xmath28 plane @xmath29 in what follows we concentrate on two special orbital configurations realized experimentally : \a ) axially compressed aerogel with @xmath30 ; \b ) axially stretched aerogel with @xmath31 .
the results of our investigations are presented in the following sequence . in sec.2 the spin - precessing mode of the a - like phase in axially compressed aerogel environment
is considered . in sec.3 the spin - precessing mode of the a - like phase in axially stretched aerogel environment
is explored using the volovik u(1)lim model .
the conclusions are presented in sec.4 .
in the considered long - ranged orbital configuration with @xmath30 the orbital phase @xmath32 is an irrelevant variable and according to eq.(6 ) the spin - orbit function @xmath33 in an explicit form @xmath34\sin^2\vartheta+\\ & + & \sin\beta\bigl[2\cos\beta\cos\alpha+ ( 1+\cos\beta)\cos(\alpha+2\gamma)-\nonumber\\ & -&(1-\cos\beta)\cos(\alpha-2\gamma)\bigr]\sin 2\vartheta\biggr\},\nonumber \label{eq : eight}\end{aligned}\ ] ] and at @xmath35 the phase @xmath36 is a slow variable . as a result
, @xmath37 can be decomposed in standard way @xcite as @xmath38 where the time - averaged ( van der pol ) part @xmath39\sin^2\vartheta , \label{eq : ten}\ ] ] while the rapidly time - fluctuating contribution @xmath40\sin^2\vartheta+\biggl [ \sin 2\beta\cos\alpha+\nonumber\\ & + & \sin\beta(1+\cos\beta)\cos(\alpha+2\gamma)-\nonumber\\ & -&\sin\beta(1-\cos\beta)\cos(\alpha-2\gamma)\biggr]\sin 2\vartheta\biggr\ } , \label{eq : afterten}\end{aligned}\ ] ] gives life to the small amplitude high - frequency spin fluctuations superimposed on the coherently spin - precessing modes emerging from the van der pol picture . as follows from eq.([eq : ten ] ) , in orbital state with @xmath30 @xmath41 .
\label{eq : eleven}\ ] ] the phase @xmath42 entering in eq.([eq : eleven ] ) can be fixed by minimizing @xmath10 at @xmath43 : @xmath44 , \label{eq : twelve}\ ] ] and according to eq.([eq : three ] ) the dipole frequency shift @xmath45 .
\label{eq : thirteen}\ ] ] the stability criterion ( the concavity of @xmath10 with respect to @xmath46 ) is @xmath47 which is in accordance with the conclusion found in ref.@xcite . in order to reach a contact with the description of the coherently spin - precessing state in terms of the magnon bec @xcite one has to take into account that an exited spin - dynamical mode with fixed frequency and phase is characterized by the bose quasiparticles - magnons with density @xmath48 so that eq.([eq : twelve ] ) for @xmath10 can be transcribed as @xmath49 , \label{eq : sixteen}\ ] ] where @xmath50 . from eq.([eq :
sixteen ] ) it follows that magnon - magnon interaction potential @xmath51 and the magnon - magnon repulsion regime ( @xmath52 ) reproduces the stability criterion ( [ eq : foureteen ] ) of coherent spin - precessing mode , as expected .
now , the dipole frequency shift for an axially compressed aerogel ( at @xmath30 ) can be represented as @xmath53=\nonumber\\ & = & \frac{1}{4}\biggl(\frac{\omega^2}{2\omega_l } \biggr)[\sin^2\vartheta-7(\cos^2\vartheta-\cos^2\vartheta_o)\cos\beta ) ] .
\label{eq : eighteen}\end{aligned}\ ] ] in ref.@xcite it was shown , in particular , that in linear cw nmr regime ( @xmath54 ) the experimental data are well described by the formula @xmath55 on the other hand , in the pulsed nmr case for @xmath56 it was found that the dipole frequency shift is described by the brinkman - smith formula @xmath57 it should be remarked that according to ref.@xcite the measured @xmath12-dependence of dipole frequency shift at @xmath58 @xmath59 all of the mentioned experimental results are in accordance with general eq.([eq : eighteen ] ) . at the same time , the answer for an axially compressed aerogel case ( with @xmath30 ) contains some hints to stimulate further experimental efforts . in addressing eq.([eq : eighteen ] ) we see that at the edge of the stability of coherently spin - precessing mode realized at the magnetic field tilting angle @xmath60 the dipole frequency shift should be independent of spin - tipping angle @xmath12 : @xmath61 on the other hand , at @xmath62 the dipole frequency shift should be independent of the magnetic field inclination angle @xmath17 : @xmath63 this behaviour of @xmath18 , given by eq.([eq : eighteen ] ) , is clearly seen in fig.[fig:1 ] .
on @xmath12 at various inclination angles @xmath17.,scaledwidth=75.0% ] it is to be mentioned that eq.([eq : eighteen ] ) describing the dipole frequency shift @xmath18 is applicable to @xmath2he - a confined in the narrow gap with orbital axis @xmath1 pinned to the normal of parallel plates .
the corresponding experiments @xcite were performed in the case of @xmath64 .
unfortunately no attempt to explore the @xmath17-dependence of @xmath18 was undertaken at that time .
now , we proceed to an axially stretched ( radially squeezed ) aerogel case corresponding to the orbital configuration with @xmath31 . in referring to eq.(6 )
it is readily seen that in this situation @xmath65 according to the @xmath0lim model @xcite for the fully randomized @xmath32 @xmath66 and it is concluded that in an axially stretched aerogel @xmath67 where @xmath37 is given by eq.(8 ) . in constructing the time - averaged ( van der pol ) dipole - dipole potential @xmath68 we see that according to eq.([eq : ten ] ) it is minimized at @xmath69 and for the dipole frequency shift @xmath4 the following answer is obtained @xmath70 .
\label{eq : twentyeight}\ ] ] in particular , @xmath71 in the magnon bec representation @xmath72 , \label{eq : thirty}\ ] ] where @xmath73 .
consequently , the magnon - magnon interaction potential @xmath74 and it is repulsive at @xmath75 . the stability region of spin - precessing mode in the case of an axially stretched aerogel environment @xmath76 , due to the @xmath0lim effect , is confident in a narrow gap @xmath77 being essentially different from axially compressed aerogel case with @xmath30 ( see eq.([eq : foureteen])and fig.[fig:2 ] ) .
this means , in particular , that the spin - precessing mode realized at @xmath58 ( see eq.([eq : twentnine ] ) ) and discovered experimentally @xcite is an unstable state .
it would be desirable to support this conclusion by observation of the fast decay of fis appropriate to an unstable spin - precessing mode . in an open geometry such test of the instability of spin - precession in @xmath2he -
a for the leggett orbital configuration have been performed in refs.@xcite confirming the prediction made in ref.@xcite . on the other hand ,
the expectation for the transverse orientation of @xmath78 , see eq.([eq : twentnine ] ) , which is in the limits of stability region ( [ eq : thirtytwo ] ) , is still to be confirmed experimentally
. returning back to the @xmath12-representation we find that in an axially stretched aerogel case ) and axially stretched ( @xmath31 ) aerogel.,scaledwidth=75.0% ] @xmath79=\nonumber\\ & = & \frac{1}{8}\biggl(\frac{\omega^2}{2\omega_l}\biggr)[\sin^2\vartheta+ 5(\cos^2\vartheta-\cos^2\vartheta_o)\cos\beta ] .
\label{eq : thirtythree}\end{aligned}\ ] ]
in this article the specific features of the nmr spectra of the a - like phase of superfluid @xmath2he in uni - axially deformed aerogel environment is considered in presence of an inclined magnetic field with respect to global deformation axis .
two special orbital configurations , relevant to experimentally investigated cases , are analyzed : a ) an axially compressed aerogel with orbital anisotropy axis @xmath1 pinned to deformation axis ; b ) an axially stretched aerogel with @xmath1 confined in transverse plane with respect to deformation axis . the later case is treated in terms of @xmath0lim model . in the mentioned cases the frequency shift @xmath80 from the larmor value @xmath5 is constructed . among other things ,
the stability limits of coherently spin - precessing modes with respect to magnetic field inclination angle @xmath17 are found . in particular , it is shown that in an axially stretched aerogel environment the @xmath0lim effect reduces the stability region to a narrow gap around @xmath56
. some suggestions for further experimental efforts are given .
|
nmr signature spin - precessing modes superfluid a - like phase in deformed aerogel attracts interest information collected from nmr spectra in axially compressed stretched @xcite cases orbital anisotropy axis @xmath1 superfluid @xmath2he - a pinned along cylindrical axis or transverse plane information spin precession in transverse nmr frequency @xmath3 frequency shift @xmath4 from larmor value due to dipole - spin - orbit ) forces potential @xmath6 axis of magnetic anisotropy @xmath2he - parameter strong magnetic field transverse nmr frequency shift @xmath9 time -averaged spin - orbit potentia equilibrium magnitude spin density tipping angle of @xmath13 magnetic field experiments magnetic field directed along deformation axis aerogel samples phase information spin dynamics extracted from @xmath15 orientation of @xmath16 inclined by angle @xmath17 axis deformation aerogel observed frequency shift @xmath18 explored in @xmath19 plane stability region of spin - precessing modesexperiments rotation magnetic field aerogel deformation axis undertaken in ref.@xcite theoretical consideration suggestions for experimental efforts configuration external magnetic field @xmath20 inclined global deformation aerogel two coordinate frames orbital frame @xmath21 attached to experimental cell @xmath22 oriented cell axis spin space frame @xmath23 orbital anisotropy axis @xmath24 spin - precessing regime magnetic anisotropy axis @xmath25 orientation @xmath13 @xmath26 @xmath27 euler angles 3d rotations spin space construct @xmath18 orientation @xmath16 @xmath28 plane concentrate on two orbital configurations axially compressed aerogel with @xmath30 axially stretched aerogel @xmath31 results presented sec.2 spin - precessing mode - phase axially compressed aerogel sec.3 stretched aerogel explored volovik u(1)lim model conclusions in sec.4 long - ranged orbital configuration with @xmath30 orbital phase @xmath32 irrelevant variablespin - orbit function @xmath33 explicit form @xmath34\sin^2\vartheta+\\ \sin\beta\bigl[2\cos\alpha+ 1+\cos\beta)(\alpha+2\gamma)-\nonumber\\-\cos\beta)\alpha-2\gamma)\bigr 2\vartheta\nonumber eight @xmath35 phase @xmath36 slow variable @xmath37 decomposed @xmath38 time - averaged part @xmath39\sin^2\vartheta ten rapidly time - fluctuating contribution @xmath40\sin^2\vartheta+\biggl 2\beta\cos\alpha+\nonumber\\\beta(1+\cos\beta)\alpha+2\gamma)-\nonumber\\\beta(1-\cos\beta)\alpha-2\gamma)\biggr 2\vartheta\biggr gives life small amplitude high - frequency spin fluctuations spin - precessing modes van der pol orbital state @xmath30 @xmath41 eleven phase @xmath42 eq. eleven fixed minimizing @xmath10 @xmath43 @xmath44 twelve[eq : three dipole frequency shift @xmath45{eq : thirteen stability criterion concavity @xmath10 @xmath46 @xmath47 conclusion ref.@xcite coherently spin - precessing state magnon @xcite exited spin - dynamical mode fixed frequency phase bose quasiparticles - magnons density @xmath48 eq.([eq : twelve @xmath10 transcribed @xmath49{eq : sixteen} @xmath50 sixteen magnon - magnon interaction potential @xmath51 magnon - magnon repulsion regime @xmath52 reproduces stability criterion eq foureteen coherent spin - precessing mode dipole frequency shift axially compressed aerogel @xmath30 ) represented @xmath53{1}{4}\biggl\omega^2}{2\omega_l^2\vartheta-7^2\beta{eq : eighteen}{aligned} ref.@xcite shown linear cw nmr regime @xmath54 experimental data described by formula @xmath55 pulsed nmr case @xmath56 dipole frequency shift described by brinkman - smith formula @xmath57@xcite measured @xmath12-dependence of dipole frequency shift at @xmath58 @xmath59 experimental results accordance with eq.([eq : eighteen ) answer axially compressed aerogel case @xmath30 hints stimulate experimental efforts stability spin - precessing mode magnetic field tilting angle @xmath60 dipole frequency shift independent of spin - tipping angle @xmath12 @xmath61 @xmath62 independent of magnetic field inclination angle @xmath17 : @xmath63 behaviour of @xmath18 seen in fig. @xmath12 inclination angles eq. dipole frequency shift @xmath18 applicable to @xmath2he narrow gap orbital axis @xmath1 parallel plates experiments performed in @xmath64 no attempt explore @xmath17-dependence of @xmath18 proceed to axially stretched radially squeezed ) aerogel case orbital configuration with @xmath31referring eq.(6 ) situation @xmath65 @xmath0lim model @xcite randomized @xmath32 @xmath66 axially stretched aerogel @xmath67 @xmath37 eq.(8 ) constructing time - averaged dipole - potential @xmath68 eq.( ten ) minimized at @xmath69 dipole frequency shift @xmath4 answer obtained @xmath70 twentyeight @xmath71 magnon bec representation @xmath72 thirty @xmath73 magnon - magnon interaction potential @xmath74 repulsive at @xmath75 stability region spin - precessing mode axially stretched aerogel environment @xmath76 @xmath0lim effect confident narrow gap @xmath77 different axially compressed aerogel case @xmath30 eq. foureteen fig.:2 ] spin - precessing mode @xmath58 @xcite unstable state support observation fast decay fis unstable spin - precessing mode open geometry test instability spin - precession @xmath2he - a leggett orbital configuration performed refs.@xcite prediction expectation transverse orientation @xmath78 see eq.[eq : twentnine limits stability region thirtytwo confirmed experimentally @xmath12-representation axially stretched aerogel @xmath31,scaledwidth=75.0% @xmath79=\nonumber\\\frac{1}{8}\biggl\omega^2_l^2\vartheta+ 5^2\vartheta-_o\beta{eq :}{aligned features nmr spectra a - like phase superfluid @xmath2he uni - axially deformed aerogel environment inclined magnetic field global deformation axis two orbital configurations analyzed axially compressed aerogel orbital anisotropy axis @xmath1 deformation axis axially stretched aerogel @xmath1 confined transverse plane deformation axis later case @xmath0lim model frequency shift @xmath80 from larmor value @xmath5 constructed stability limits of spin - precessing modes magnetic field inclination angle @xmath17 axially stretched aerogel environment @xmath0lim effect reduces stability region narrow gap around @xmath56 suggestions for further experimental efforts
| 0.431356
| 2,922
| 1,546
|
, Saving $0.1 in GPT-4.
|
18,902
|
measurements of transverse - single - spin asymmetries ( @xmath0 ) in @xmath1@xmath2@xmath1 collisions at @xmath3 and 200 gev with the phenix detector at rhic are presented . at midrapidity
, @xmath0 is measured for neutral pion and eta mesons reconstructed from diphoton decay , and , at forward rapidities , neutral pions are measured using both diphotons and electromagnetic clusters . the neutral - pion measurement of @xmath0 at midrapidity is consistent with zero with uncertainties a factor of 20 smaller than previous publications , which will lead to improved constraints on the gluon sivers function . at higher rapidities , where the valence quark distributions are probed , the data exhibit sizable asymmetries . in comparison with previous measurements in this kinematic region ,
the new data extend the kinematic coverage in @xmath4 and @xmath5 , and it is found that the asymmetries depend only weakly on @xmath4 .
the origin of the forward @xmath0 is presently not understood quantitatively .
the extended reach to higher @xmath5 probes the transition between transverse momentum dependent effects at low @xmath5 and multi - parton dynamics at high @xmath5 .
|
the proton is a fundamental and stable bound state of quantum chromodynamics .
collinear perturbative quantum chromodynamics ( pqcd ) at leading twist in the operator product expansion successfully describes the quark and gluon substructure of the proton observed in high energy scattering experiments @xcite .
the parton distribution functions , @xmath6 , constitute the number densities of partons of flavor @xmath7 in the proton .
they depend on the partonic momentum fraction , @xmath8 , and on the momentum transfer scale , @xmath9 .
two similar sets of distribution functions parametrize the spin dependent parton distributions in protons polarized either longitudinally or transversely with respect to the proton momentum direction @xcite .
the longitudinally polarized structure has been successfully described using pqcd at leading twist @xcite .
initially , transverse - single - spin asymmetries or the analyzing power ( @xmath0 ) of hadrons @xmath10 produced in the transversely polarized @xmath11 reaction were expected to be small @xcite , but experiments instead measured large asymmetries of up to @xmath12 .
these asymmetries have been measured at increasing center - of - mass energies @xmath4 over the past three decades , from 4.9 to 200 gev @xcite , recent results from the relativistic heavy ion collider ( rhic ) show that large asymmetries persist even up to @xmath13 gev @xcite . unlike at the low to intermediate energies ,
the measured unpolarized cross section at high energies is well reproduced by pqcd calculations @xcite , indicating that unpolarized collisions can be described by the standard collinear factorized theory , while transversely polarized collisions can not . to better describe the large @xmath0 measurements ,
the theoretical framework has been extended to include transverse momentum dependent ( tmd ) distributions and multi - parton dynamics ( higher twist effects ) . because the intrinsic partonic transverse momentum scale is set by the mass of the proton , these effects dominate for hadrons with low momenta transverse to the beam axis , @xmath14 gev/@xmath15 .
at least two tmd effects have been proposed to explain the observed nonzero asymmetries .
the first of these , known as the sivers effect , correlates the proton spin with the partonic transverse momentum @xmath16
it has been measured in semi - inclusive deep inelastic scattering ( sidis ) experiments with sensitivity mainly to the quarks @xcite .
previous results in @xmath1+@xmath1 collisions @xcite have been used to constrain the gluon sivers function @xcite .
recently , this function has received intense theoretical attention based on questions of universality and an expected sign change of @xmath0 in sidis compared to drell - yan production @xcite . a second transverse
momentum dependent effect , known as the collins effect , describes the coupling of a transverse quark polarization ( transversity ) and a transverse spin dependent fragmentation from a struck quark into a hadron @xcite .
the spin dependent fragmentation part has been measured in @xmath17+@xmath18 annihilation for charged pions @xcite and serves as input for collins asymmetries in proton scattering to access the transversity distribution @xcite .
the full integral over all partonic momenta @xmath19 of the transversity distribution can be compared to the flavor - singlet tensor charge @xmath20 , which is calculable in lattice qcd @xcite .
this will be a fundamental test of the theory . at large transverse momenta the collinear
higher twist effects are thought to become more important in the creation of transverse spin asymmetries @xcite . for drell - yan production
it has been shown that both initial state tmd and multi - parton dynamics provide equivalent descriptions of transverse asymmetries in an overlap region at intermediate transverse momenta @xcite . with increasing @xmath21
the asymmetries are expected to fall off and vanish in the strictly collinear regime , which has not been observed experimentally yet .
it is best probed at high center - of - mass energies , where the range of transverse momenta is wider .
this paper reports on measurements of @xmath0 at @xmath3 and 200 gev .
the data were taken by the phenix experiment at rhic in the years 2006 ( @xmath3 gev ) and 2008 ( @xmath13 gev ) with integrated luminosities of 42 nb@xmath22 and 4.3 pb@xmath22 , respectively .
results are presented for neutral mesons in a midrapidity region ( @xmath23 ) as well as for @xmath24 mesons and inclusive electromagnetic clusters at forward / backward pseudorapidities ( @xmath25 ) .
section [ sec : detector ] describes the experimental setup along with the properties of the polarized proton beams .
the formalism of transverse single spin asymmetries is introduced in sec .
[ sec : analysis ] before details of the analysis procedure are specified .
a general discussion of the results and their possible implications for nucleon structure and contributing asymmetry mechanisms concludes this paper in sec .
[ sec : discussion ] .
the phenix midrapidity spectrometer is used to detect neutral pions and @xmath26 mesons via their decay into two photons .
the spectrometer covers a pseudorapidity range of @xmath23 and is split into two approximately back - to - back arms each covering @xmath27 in azimuth .
the electromagnetic calorimeter ( emcal ) is highly segmented with @xmath28 .
events are selected using an emcal based high tower energy trigger in coincidence with a minimum bias trigger .
the trigger , digitization electronics , and details of the hardware have been discussed previously @xcite .
the trigger efficiency starts at about 5% for neutral pions with @xmath29 gev/@xmath15 and rises to and saturates at about 90% at @xmath30 gev/@xmath15 .
a multi - wire proportional chamber with pad readout @xcite is situated in front of the calorimeter face , and is used to veto charged particles .
the minimum bias trigger was defined as the coincidence of signals from two beam beam counters ( bbc ) covering the full azimuthal angle and the pseudorapidity range @xmath31 @xcite .
the bbcs are used to reconstruct the collision time and the collision ( vertex ) position along the beam direction .
each bbc is situated 144 cm from the nominal interaction point and comprises an array of 64 counters arranged around the beam pipe .
each counter comprises a erenkov quartz - radiator of hexagonal cross section with a mesh dynode photomultiplier tube for read - out .
the phenix muon piston calorimeter ( mpc ) is an electromagnetic calorimeter which was designed to measure photons and neutral mesons at forward - rapidity .
the detector comprises two separate devices placed along the beamline to the north and to the south of the nominal interaction point , labeled n - mpc and s - mpc .
the s - mpc was first installed in 2006 and the n - mpc followed a year later .
therefore , the analysis of the 2006 data set ( @xmath4=62.4 gev ) uses only the s - mpc while the 2008 data set ( @xmath4=200 gev ) includes both detectors .
both mpcs are located in cavities of the steel piston which is part of the phenix muon detector magnet yoke .
the diameter of each cavity limits the detector s outer diameter to 45 cm , while the beampipe requires an inner diameter of no less than 8 cm ( n - mpc ) or 10 cm ( s - mpc ) .
the mpcs are placed @xmath32220 cm from the nominal interaction point and are composed of 192 ( s - mpc ) or 220 ( n - mpc ) towers stacked to form an annulus around the beampipe .
the detector acceptance covers the full azimuthal angle and a pseudorapidity range of @xmath33 south and @xmath34 north of the nominal interaction point .
each tower combines a pbwo@xmath35 scintillating crystal wrapped with tyvek@xmath36 , aluminized mylar and monokote@xmath36 , with a hamamatsu s8664 - 55 avalanche photodiode for read - out .
each crystal measures 2.2@xmath372.2@xmath3718 @xmath38 , corresponding to a depth of 21.2 radiation lengths and 0.844 nuclear interaction lengths .
independently of the minimum bias trigger , the mpc is equipped with its own high energy cluster trigger .
the trigger and digitization electronics are identical to those of the emcal and are discussed in detail in @xcite .
for the presented data , the trigger efficiency starts at 5% for photon energies @xmath39 gev and reaches a plateau at 90% above @xmath40 gev . a test - beam measurement , carried out at the meson test beam facility at the fermi national accelerator laboratory confirmed the calorimeter s linear energy response and measured the electromagnetic shower shapes .
these shower shapes were then used to tune a geant 3.21 @xcite based full detector simulation .
the absolute energy scale of the detector is determined _ in situ _ using a two - step process .
first , minimum ionizing particles are used .
yields of charged tracks in the calorimeter are enhanced by requiring a correlated hit in the bbc that is located in front of the mpc .
additionally , the tower multiplicity of the cluster is required to be small compared to a typical electromagnetic shower to increase the hadronic contributions .
a sample minimum ionizing particle peak is shown in fig .
[ fig : mpc_mip_fit ] with an expected mean energy of 234 mev .
the initial mip calibration is then used as the seed in an iterative and converging procedure for individual towers that is based on the @xmath24 peak in the invariant mass distribution .
time dependencies in the tower gains are tracked and corrected for by a monitoring system of leds , whose intensities are monitored by pin diodes . finally , the overall calibration is verified and the energy resolution is determined by comparing the masses of the @xmath24 and @xmath26 peaks in the two - cluster invariant mass distributions between data and a monte - carlo simulation .
a set of representative two - cluster invariant mass peaks is shown in fig .
[ fig : mpc_2gamma ] . the relative energy resolution ( @xmath41 ) of the calorimeter is found to be 13%/@xmath428% with an overall energy scale uncertainty of 2% .
= 200 gev for both the north and south mpc detectors .
the left panel shows @xmath24 peak from minimum bias triggered data set at low energy while the right side shows the @xmath26 meson peak from the mpc triggered data set at high two - cluster energies @xmath43 .
a comparison of the peak position and widths from data and simulation are used to determine the energy scale uncertainty . ]
rhic accelerates and stores polarized proton beams at energies up to 255 gev in two independent rings .
the beams collide at several interaction points along the ring .
each ring can be filled with up to 120 bunches with different transverse polarization directions .
these directions alternate to reduce systematic effects from slow variations in luminosity or detector acceptances and efficiencies .
additionally , the patterns are chosen from four predefined basic patterns to reduce time dependent correlations and detector effects .
previous publications describe in detail the necessary accelerator instrumentation for producing the colliding polarized beams @xcite .
the polarization is measured with a set of polarimeters external to the phenix experiment using elastic scattering from a hydrogen gas jet or a carbon fiber target . for the determination of the absolute polarization of both proton beams , the hydrogen jet polarimeter with a known polarization of the atomic jet
is used @xcite . due to the low density of the gas jet a polarization measurement with good accuracy
requires many hours of data taking .
therefore , the relative polarization is measured several times per fill with high precision by fast @xmath1+c polarimeters for each of the two storage rings @xcite .
these relative measurements are then normalized using results from the jet polarimeter .
while both of the rhic beams are polarized during the measurement of the single spin asymmetries presented in this paper , summation over the bunches of one beam effectively averages the polarization to zero .
this procedure is applied to one of the two beams at a time and can therefore be used as a cross check of two uncorrelated measurements of the asymmetry .
the direction of the polarized beam is commonly referred to as forward in the following ; backward is in the direction of the unpolarized beam .
table [ tbl : beampol ] summarizes the beam polarizations for the different data sets and center - of - mass energies , with @xmath44 pointing north , according to the phenix coordinate system .
.polarizations for rhic proton beams in 2006 and 2008 .
the polarization uncertainty is a global scale uncertainty of the measured asymmetries @xmath0 and is not included in any of the figures or data tables . [
cols="^,^,^,^",options="header " , ]
|
proton fundamental state quantum chromodynamics collinear perturbative quantum chromodynamics at leading twist describes quark gluon substructure proton high energy scattering experiments parton distribution functions constitute densities partons flavor proton depend on partonic momentum fraction momentum transfer scale distribution functions parametrize spin dependent parton distributions in protons polarized longitudinally or transversely momentum direction longitudinally polarized structure described using pqcd at leading twist transverse - single - spin asymmetries polarized reaction expected small measured large asymmetries up to @xmath12 asymmetries measured at increasing center - - mass energies 4.9 to 200 gev results heavy ion collider show large asymmetries persist up to @xmath13 gev unpolarized cross section at high energies reproduced by pqcd calculations unpolarized collisions described by standard collinear factorized theory transversely polarized collisions large measurements theoretical framework extended transverse momentum dependent distributions multi - parton dynamics higher twist effectspartonic transverse momentum scale set by mass proton effects dominate hadrons low momenta transverse beam axis two tmd effects proposed explain nonzero asymmetries first sivers effect correlates proton spin with partonic transverse momentum measured in - deep inelastic scattering experiments quarks results collisions constrain gluon sivers function received theoretical attention universality expected sign change in sidis drell - yan production second transverse momentum dependent effect collins effect transverse quark polarization spin dependent fragmentation from struck quark into hadron spin dependent fragmentation measured in @xmath17+@xmath18 annihilation for charged pions input for collins asymmetries in proton scattering transversity distribution full integral partonic momenta transversity distribution compared to flavor - singlet tensor charge calculable in lattice qcd fundamental test theory large transverse momenta higher twist effects important in transverse spin asymmetries drell - yan initial state tmd multi - parton dynamics provide equivalent transverse asymmetries overlap at intermediate transverse momentaincreasing @xmath21 asymmetries expected vanish in collinear regime not observed experimentally best probed at high mass energies range transverse momenta wider paper reports measurements @xmath0 at @xmath3 200 gev data taken phenix experiment at rhic 2006 2008 integrated luminosities 42 nb@xmath22 4.3 pb@xmath22 results presented for neutral mesons midrapidity region @xmath23 @xmath24 mesons inclusive electromagnetic clusters at forward backward pseudorapidities @xmath25 ) describes experimental setup properties polarized proton beams formalism transverse single spin asymmetries introduced analysis discussion results implications for nucleon structure asymmetry mechanisms concludes phenix midrapidity spectrometer neutral pions @xmath26 mesons spectrometer covers pseudorapidity range of @xmath23 split into two arms each covering @xmath27 electromagnetic calorimeter segmented with @xmath28 events selected using emcal based high tower energy trigger minimum bias trigger trigger electronics hardware discussed trigger efficiency starts 5% for neutral pions @xmath29 gev/@xmath15 90% at @xmath30 gev/@xmath15multi - wire chamber with pad readout front of calorimeter face charged particles minimum bias trigger coincidence signals from two beam counters full azimuthal angle pseudorapidity range bbcs reconstruct collision time position each bbc 144 cm from interaction point 64 counters around beam pipe each counter erenkov quartz - radiator hexagonal cross section mesh dynode photomultiplier tube read - out phenix muon piston calorimeter electromagnetic calorimeter photons neutral mesons at forward - rapidity detector two devices beamline north south n - mpc s - mpc s - mpc installed 2006 n - mpc followed year later 2006 data set uses s - mpc 2008 data set includes both detectors mpcs in cavities steel piston phenix muon detector magnet yoke cavity limits detector s outer diameter to 45 cm beampipe inner diameter 8 cm n - or 10 cm s - mpc mpcs cm from interaction point 192 s - or 220 ( n - mpc ) towers annulus around beampipedetector acceptance covers full azimuthal angle pseudorapidity range @xmath33 south @xmath34 north of interaction point each tower combines pbwo@xmath35 crystal tyvek@xmath36 aluminized mylar monokote hamamatsu s8664 - 55 avalanche photodiode crystal measures 2.2@xmath372.2@xmath3718 @xmath38 21.2 radiation lengths 0.844 nuclear interaction lengths mpc high energy cluster trigger trigger digitization electronics identical to emcal discussed in @xcite trigger efficiency starts at 5% for @xmath39 gev plateau 90% above @xmath40 gev test - beam measurement confirmed calorimeter s linear energy response measured electromagnetic shower shapes used geant 3.21 @xcite full detector simulation absolute energy scale detector determined two - step process minimum ionizing particles used tracks correlated hit in bbc in front of mpc tower multiplicity small increase hadronic contributions sample minimum ionizing particle peak shown in fig . expected mean energy 234 mev initial mip calibration iterative procedure for towers based on @xmath24 peak invariant mass distribution time dependencies tower gains tracked corrected by monitoring system leds pin diodes calibration verified energy resolution determined comparing @xmath24 @xmath26 peaks two - cluster mass distributions between data monte - carlo simulation representative peaks shown in fig . relative energy resolution @xmath41 of calorimeter 13%/@xmath428% energy scale uncertainty 2% 200 gev for north south mpc detectors left panel shows @xmath24 peak from low energy right @xmath26 peak from high comparison of peak position widths from data simulation energy scale uncertainty rhic accelerates stores polarized proton beams at up to 255 gev in two rings beams collide at interaction points each ring filled with 120 bunches transverse polarization directions directions alternate reduce effects variations patterns chosen from four predefined patterns to reduce time correlations detector effects accelerator instrumentation colliding polarized beams polarization measured with polarimeters external using elastic scattering from hydrogen gas jet carbon fiber targetabsolute polarization proton beams hydrogen jet polarimeter polarization atomic jet used @xcite low density gas jet polarization measurement requires hours relative polarization measured several times per fill by fast @xmath1+c polarimeters for two storage rings measurements normalized using results jet polarimeter both rhic beams polarized single spin asymmetries summation one beam averages polarization to zero procedure applied to one beams cross check of two uncorrelated measurements asymmetry direction polarized beam forward backward unpolarized beam table beampol summarizes beam polarizations for data sets center - of - mass energies @xmath44 pointing north according phenix coordinate system.polarizations for rhic proton beams in 2006 and 2008 polarization uncertainty global scale uncertainty measured asymmetries not included in figures data tables
| 0.433283
| 2,921
| 1,427
|
, Saving $0.1 in GPT-4.
|
18,904
|
the parameter @xmath0 describing the density of events within the @xmath1 dalitz plot has been measured using data from brookhaven experiment e852 .
the result is compared to previous values and theoretical predictions . , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and
|
chiral perturbation theory offers a consistent description of low energy qcd particularly applicable to meson decays .
an outstanding difficulty is the large discrepancy between the predicted and observed rate of the @xmath2 decay @xcite .
we report here a measurement of the transition matrix element .
the density of events on the dalitz plot has been predicted to be uniform by gasser and leutwyler @xcite and by di vecchia @xcite .
more recently a calculation of kambor , wiesendanger and wyler @xcite found a density which decreases as the distance from the center of the plot increases .
the dalitz plot density is specified by a single parameter , conventionally denoted as @xmath3 .
show that both @xmath3 and the rate @xmath4 are sensitive to a parameter of the theory ( @xmath5 in their notation ) .
the dependence of @xmath6 and @xmath7 on @xmath5 is such that a more negative value of @xmath6 reduces the value of @xmath7 thereby increasing the disagreement with experiment .
two values of @xmath6 are determined by the authors of @xcite , -0.014 and -0.007 , the latter containing higher order corrections and leading to a prediction for @xmath4 more consistent with experiment .
to second order in the center of mass pion energy @xcite - @xcite the dalitz plot density for the decay @xmath8 is parameterized as @xmath9 with @xmath10 where @xmath11 is the energy of the @xmath12th pion in the @xmath13 rest frame , @xmath14 is the distance from the center of the dalitz plot and @xmath15 the largest kinematically allowable value of @xmath14 . a uniformly populated dalitz plot , ( as predicted by @xcite and @xcite )
gives @xmath16 .
@xmath6 has been measured previously by baglin _
@xcite , alde _ et al . _
@xcite , and abele _ et al .
recent results are shown in figure [ systfig ] along with the result of this work .
reference @xcite finds a value significantly different from zero and in probable disagreement @xmath17 with theoretical expectations .
the results reported in @xcite and @xcite are consistent with both zero and the non - zero expectation of @xcite . in this work
we report on a determination of @xmath6 from the decay @xmath1 where the @xmath13 was produced by 18.3 gev / c negative pions incident on liquid hydrogen .
the data were collected in 1995 by the brookhaven national laboratory e852 collaboration .
the apparatus has been described previously @xcite,@xcite and consisted of a large , segmented lead glass calorimeter ( lgd ) , charged particle tracking , veto and trigger systems capable of determining the charged particle multiplicity and the total energy deposited in the lead glass .
the data used for this analysis were collected with the `` all - neutral '' trigger which required no charged particles , an energy deposition greater than 12 gev in the lead glass and no photons in the downstream photon veto .
@xmath1 decays were selected by requiring exactly 6 reconstructed clusters in the lgd and a visible total energy greater than 16.5 gev .
all combinations of assignments to the hypothesis @xmath18 were tested and if the best @xmath19 corresponded to a confidence level greater than 1% the event was considered a candidate .
a preliminary fit using only the @xmath20 mass constraint was performed to allow evaluation of the @xmath18 effective mass .
figure [ 3pimass ] shows the resulting distribution .
events with a mass less than 0.65 @xmath21 ( corresponding to @xmath22 from the @xmath13 mass ) were subjected to a full kinematic fit with the hypothesis @xmath23 ; @xmath1 . a confidence level ( cl )
cut selected decays for the final analysis .
it also was required that no photon have an energy less than 0.25 gev and that the minimum separation between photons be larger than 9 cm . the effect and purpose of these requirements
is discussed below .
the final resulting data set contained 87,500 events . to determine @xmath6 , eq .
[ matdef ] is fitted to the observed distribution of @xmath24 corrected for acceptance and phase space dependence .
the acceptance correction was based on monte - carlo simulation , taking into account the apertures of the apparatus and a large sample of geant generated electromagnetic showers .
the requirements on the minimum photon energy and the minimum allowable photon separation mentioned above removed any uncertainties in the monte - carlo simulation associated with the transverse development of electromagnetic showers and the behavior of low energy photons .
the separation requirement also selected events where the nearest two electromagnetic showers were well resolved .
the phase space dependence of z was removed by dividing the observed distribution by the distribution due to a uniformly populated dalitz plot .
the distribution resulting from removing the phase space dependence and correcting for the acceptance is proportional to @xmath25 and is shown in figure [ zdist ] along with the result of the fit to eq .
[ matdef ] .
the distribution has been numerically scaled to give a proportionality constant of one .
our result is @xmath26 , where the error is statistical only .
systematic effects have been considered and the important contributors identified . since @xmath27 is a static property of the @xmath13 a measurement of @xmath27 can not depend on any data selection requirement , for example , momentum - transfer , separation of photons in the detector , photon energy detection thresholds , confidence level of fits , etc .
it was observed that our measured @xmath27 remained constant as a function of the confidence level ( cl ) cut , down to about cl = 30% , below which @xmath27 began to fall slightly .
this is consistent with an increasing contribution from reconstructed events with one or more wrong - assignments of a @xmath28 to a @xmath29 .
it was required the an event have a confidence level greater than 30% for this analysis .
studies of the variation of @xmath30 with the value chosen for the cl cut yielded an estimate of @xmath31 for the systematic contribution associated with this cut .
the analysis further required that no two photons have reconstructed impact positions closer than 9 cm , a distance denoted by @xmath32 .
variation of the value of @xmath32 used in the analysis between 8.5 and 11 cm yielded our estimate of @xmath33 for the contribution to the systematic error due to this effect .
the effect of requiring the lowest energy photon to have an energy larger than 0.25 gev was investigated by removing this requirement ( increasing the data set by 1,140 events ) and by replacing it with a requirement of 0.5 gev ( decreasing the data set by 15,230 events ) .
a contribution of @xmath34 to the systematic error was found . for 20% of the events in the data sample it was possible to choose more than one assignment of photons to pions .
the analysis presented here chose the assignment with the best confidence level .
the effect of this choice was studied by choosing the _ second _ best assignment ( when possible ) and by using _ all _ assignments with an appropriate weight to calculate @xmath6 .
no statistically significant differences were observed .
finally , the data set was divided into two statistically independent halves by experimental run numbers and , separately , by range of momentum transfers . in both cases ,
the values determined for @xmath6 were not statistically significantly different leading us to conclude these selections do not contribute to our systematic error .
all effects considered combine to give our final estimate of @xmath35 for the systematic error .
we have measured the @xmath6 parameter of the transition matrix element @xmath36 to be @xmath37 .
our result differs from one of the previous measurements @xcite by slightly more than @xmath38 but is consistent with several other @xcite , @xcite measurements . when compared to theoretical expectations , the value of zero favored by di vecchia , gasser and leutwyler @xcite , @xcite , cannot be ruled out .
the result reported here is consistent with the two values ( -0.007 and -0.014 ) reported by kambor , wiesendanger and wyler @xcite .
|
chiral perturbation theory low energy qcd meson decays difficulty discrepancy between predicted observed rate @xmath2 decay @xcite measurement transition matrix element density on dalitz plot predicted uniform by gasser leutwyler @xcite di vecchia @xcite calculation of kambor wiesendanger wyler found density as distance from center increases dalitz plot density specified by single parameter @xmath3 @xmath3 @xmath4 sensitive to parameter @xmath5 dependence of @xmath6 @xmath7 on @xmath5 negative value @xmath6 reduces @xmath7 disagreement values @xmath6 determined by authors @xcite -0.014 -0.007 corrections prediction for @xmath4 consistent with experiment dalitz plot density for decay @xmath8 parameterized as @xmath9 with @xmath10 @xmath11 energy of @xmath12th pion @xmath13 @xmath14 distance from center dalitz plot @xmath15 largest kinematically allowable value of @xmath14 uniformly populated dalitz plot predicted gives @xmath16 @xmath6 measured by baglin alde abele results shown in figure ] work @xcite value different from zero @xmath17 with expectations results @xcite consistent with zero non - zero expectation determination @xmath6 from decay @xmath1 @xmath13 produced by 18.3 gev / c negative pions incident on liquid hydrogen data collected 1995 brookhaven national laboratory e852 collaboration apparatus segmented lead glass calorimeter charged particle tracking veto trigger systems charged particle multiplicity total energy data collected with all - neutral trigger no charged particles energy deposition 12 gev no photons in downstream photon veto @xmath1 decays selected 6 reconstructed clusters in lgd visible total energy 16.5 gev combinations assignments @xmath18 tested best @xmath19 confidence level 1% event considered candidate preliminary fit using @xmath20 mass constraint evaluation @xmath18 effective mass figure shows distribution events mass less than 0.65 @xmath21 subjected full kinematic fit with hypothesis @xmath23 @xmath1 confidence level ) cut selected decays for final analysis no photon energy less than 0.25 gev minimum separation between photons larger than 9 cm requirements discussed belowfinal data set contained 87,500 events @xmath6 matdef fitted to distribution @xmath24 corrected for acceptance phase space dependence acceptance correction based on monte - carlo simulation apertures large sample electromagnetic showers requirements minimum photon energy minimum allowable photon separation removed uncertainties simulation energy separation requirement selected events where nearest two electromagnetic showers resolved phase space dependence of z removed by dividing distribution by uniformly populated dalitz plot distribution from removing phase space dependence correcting for acceptance proportional to @xmath25 shown in figure zdist result fit distribution numerically scaled proportionality constant of one result is @xmath26 error statistical systematic effects considered important contributors identified @xmath27 static property of @xmath13 measurement depend on data selection requirement momentum - transfer separation energy confidence level measured @xmath27 remained constant confidence level cl ) cut to cl = 30% below slightly consistent with increasing contribution from reconstructed events with wrong - assignments of @xmath28 to @xmath29 required confidence level greater than 30% forvariation @xmath30 for cl cut yielded estimate @xmath31 for systematic contribution analysis required no photons impact positions closer than 9 cm denoted by @xmath32 variation @xmath32 between 8.5 and 11 cm estimate @xmath33 contribution systematic error requiring lowest energy photon larger than 0.25 gev investigated data by 1,140 events with 0.5 gev data by 15,230 events contribution @xmath34 to systematic error for 20% events choose more than one assignment photons analysis chose assignment best confidence level effect studied by second best assignment all assignments appropriate weight calculate @xmath6 no statistically significant differences observed data set divided into halves by experimental run numbers range of momentum transfers values for @xmath6 not statistically significantly different selections not contribute to systematic error effects final estimate of @xmath35 for systematic error measured @xmath6 parameter of transition matrix element @xmath36 to @xmath37 result differs from previous @xcite slightly more than @xmath38 consistent with other @xcite measurements value of zero favored by di vecchia gasser leutwyler @xcite be ruled outresult consistent with values -0.007 -0.014 by kambor wiesendanger wyler
| 0.308105
| 1,812
| 936
|
, Saving $0.1 in GPT-4.
|
18,905
|
the spire photometer simulator reproduces the entire herschel - spire system in a modular idl program .
almost every aspect of the operation of spire can be investigated in a systematic way to ensure that observations are performed in the most efficient way possible when herschel flies .
this paper describes some of the work done with the simulator to help prepare for large observing programs such as deep extra - galactic , high - redshift surveys .
|
expensive space missions with limited operating lifetimes , such as herschel @xcite , require efficient operation in order to obtain the best possible value for money in terms of the quantity and quality of astronomical data obtained .
careful preparation of every aspect of the mission needs to be undertaken , including how the various instruments on board the spacecraft are operated to achieve optimum performance .
spire @xcite is one of three scientific instruments on board the herschel spacecraft and covers the longer wavelength range from @xmath0 m with both a photometer and an imaging fourier transform spectrometer ( fts ) .
this paper describes how the operation of the photometer half of the spire instrument has been optimised through the use of an instrument simulator , and how the same simulator can be used to prepare for large observing programmes .
the simulator is an idl coded virtual version of the photometer half of the herschel - spire system .
it incorporates as many of the physical instrumental and telescope characteristics as it is possible to include in a computationally practical and user - friendly program .
full details of the individual modules and their interaction with each other are given in @xcite .
briefly , the user creates a suitable input sky as realistic or fantastic as desired for each of the three spire bands .
these are fed into the simulator where they are convolved with a representative beam profile and then observed with the bolometer detector arrays .
parameters for the observation are predefined by the user in the same way that a real observation would be planned .
the astronomical power from the sky and the background radiation from the telescope and internal instrument components are all passed into a module containing a model of the individual detectors , which calculates their response to the incident radiation .
this bolometer model also calculates and superimposes realistic noise on the output detector time - lines .
the detector time - lines are then low - pass filtered and sampled , in the same way as done by the on - board electronics , to produce output voltage time - lines . additionally , a pointing time - line is generated based on the observation parameters .
spire has several modes of operation @xcite , but the primary mapping modes are scan and jiggle .
the spire arrays are hexagonally close - packed , feedhorn coupled bolometers , with a detector spacing of twice the beam full width half maximum ( fwhm ) , so they do not fully sample the sky in a single pointing .
the two mapping modes account for this in different ways .
jiggle map mode is used to observe individual @xmath1 fields by pointing the telescope in one direction and jiggling the instrument s internal beam steering mirror to fill the whole field area with data . while large maps can be created by tiling together individual jiggle map fields it is more observationally efficient to use scan map mode , which involves scanning the telescope across the sky at a constant rate to create a strip of data . by decelerating the telescope at the end of one strip , slewing perpendicular to the scan direction and accelerating back up to scanning speed in the opposite direction ,
a large map can be built up with successive , adjacent scan strips .
the detector arrays are rotated slightly , relative to the scan direction , so that the gaps between adjacent detectors are filled by other detectors following on behind . because of the nature of the bolometer detectors scan map data time - lines are subject to @xmath2 noise excess noise at low frequencies , or drifts on long time - scales that cause stripes in the resultant maps ( see left hand panel of figure [ pic ] .
jiggle map mode is immune to @xmath2 noise because the signal is chopped , so the map is the difference between on- and off - source signals .
@xcite describe how the simulator has been used to determine the optimum parameters for operating spire in scan map mode , principally how the competing effects of the low - pass electronics filter and @xmath2 noise lead to an optimum scan speed around @xmath3s@xmath4 .
additionally , the angle of rotation between the scan direction and the array orientation , and the spacing between successive scan strips have been optimised to produce highly uniform sky coverage .
with the scan map mode parameters optimised we can investigate how instrumental characteristics will affect actual observations .
part of the spire guaranteed time ( gt ) programme will involve deep extra - galactic , high - redshift surveys that cover large areas of sky down to , and even below , the confusion limit . to see how @xmath2 noise is likely to affect the sensitivity of such surveys to faint point sources we designed a series of observations to be carried out with the simulator .
we used the galics model of galaxy evolution @xcite to produce input skies of a suitably realistic extra - galactic cosmological field covering 1 sq .
the field was populated with 58590 sources down to a @xmath5 m band flux limit of 2 mjy ( a confusion limit of 40 beams per source is @xmath6 sources per sq .
since the galics model is based on a hierarchical galaxy formation model the clustering of the sources is more realistic than a simple poisson distribution , and so the confusion noise should be closer to what will be experienced by spire in flight .
two sets of simulated observations were performed , one with the @xmath2 noise switched off , leaving simply white noise in the detector time - lines , and the other with the @xmath2 noise switched on and at a level that matches the design requirement of the spire bolometers ( a knee frequency of 100 mhz . )
this is a worst case scenario for the real instrument as the majority of the detectors exhibit less @xmath2 noise than the requirement .
the final sensitivity of the combined simulations ( for each noise test ) was designed to approximate a confusion limited observation .
a source detection routine was run on naive maps created from each noise test to compare the relative sensitivity of the observations with and without @xmath2 noise .
the extracted source list was then cross - referenced with the input source catalogue .
as expected , the map with the @xmath2 noise showed a significantly higher detection threshold ( @xmath7 ) and with a higher fraction of spurious source detections . therefore ,
if left untreated , @xmath2 noise could seriously affect such a survey .
integration times would need to be @xmath8 longer to reach the desired detection threshold than expected from the sensitivity estimates , which currently assume no contribution from @xmath2 noise . however , there is much that can be done to alleviate @xmath2 noise , for example iterative map making methods borrowed from cmb analysis , or filtering schemes .
high - pass filtering involves removing all the low frequency modes from a fourier transform of the time - line data from each detector .
this eliminates the long period drifts associated with @xmath2 noise , effectively removing the stripes in scan maps .
some point source flux is also lost in this process however , so the cut - off frequency must be a compromise between this and removing as much @xmath2 noise as possible .
we devised the following scheme to filter the data , based on common cleaning routines used in radio astronomy : first construct a map from the unfiltered data ; detect the brightest sources and subtract a point source model for each source from the time - series data ; fourier transform and high - pass filter the data , using a cut - off frequency of half the @xmath2 knee frequency ( 50 mhz in this case ) ; inverse fourier transform the data back into time - series and add the bright point sources back on ; finally , re - create a map from this filtered data . removing the bright point sources before filtering prevents negative dips appearing in the map either side of the sources in the scan direction .
this reduces the likelihood of the filtering process adversely affecting fainter source flux recovery .
having made a new map we ran the source detection routine again .
the situation was much improved with the detection threshold now only slightly higher than the white noise case .
the number of spurious source detections was also much reduced , although still higher than the white noise case .
based on this analysis we believe that the level of @xmath2 noise expected for spire will not cause a significant problem for these types of faint point source surveys .
simple filtering schemes can go a long way towards reducing @xmath2 noise effects while more sophisticated methods may eliminate it entirely .
see figure [ pic ] for a comparison of pre- and post - filtered images .
the spire photometer simulator is a very powerful tool for investigating the consequences of instrumental effects on the quality of astronomical data to be obtained with spire .
not only has it helped in the optimisation of the observing modes but it is also providing a head start in understanding the data and how it will be best processed when the real thing becomes available . as well as simulating cosmological surveys the simulator is also being used to simulate galactic ( sibthorpe , in preparation ) and local universe observations . together , these simulations are central to the selection and development of the map making code to be delivered as part of the spire pipeline processing package .
this process is currently underway and as launch approaches the simulator will be used to make further simulations to help refine the performance of the map making algorithm as well as helping to develop optimised source detection routines capable of fully exploiting the spire data . finally , being a modular program the simulator is fully customisable and can be modified to represent any other facility of a similar design to spire , or even to help design the next generation of far - ir observatories .
griffin , m. j. , & swinyard , b. m. , et al .
, 2006 , spie , 6265 hatton , s. , devriendt , j. e. g. , ninin , s. , bouchet , f. r. , guiderdoni , b. , & vibert , d , 2003 , mnras , 343 , 75 pilbratt , g. , l. , 2006 , spie , 5487 , 401 sibthorpe , b. , woodcraft , a. , griffin , m. , & watkin , s. 2004 , spie , 5487 , 491 sibthorpe , b. , waskett , t. , & griffin , m. 2006a , spie , 6270 , 41
|
expensive space missions limited lifetimes as herschel @xcite require efficient operation best value for money quality astronomical data careful preparation of aspect mission needs including instruments optimum performance spire @xcite is one of three scientific instruments covers longer wavelength range from @xmath0 m with photometer imaging fourier transform spectrometer paper describes operation photometer half optimised through instrument simulator for large observing programmes simulator is idl coded virtual version of photometer half herschel - spire system incorporates physical instrumental telescope characteristics in computationally practical user - friendly program details of modules interaction given in @xcite user creates input sky for each three spire bands fed into simulator convolved with representative beam profile observed with bolometer detector arrays parameters for observation predefined by user astronomical power from sky background radiation from telescope internal instrument components passed into module model of detectors calculates response to incident radiation model calculates superimposes realistic noise on output detector time - lines detector time - lines low - pass filtered sampled output voltage time - lines pointing time - line generated based on observation parametersspire has modes operation primary mapping modes scan jiggle spire arrays are hexagonally close - packed feedhorn coupled bolometers detector spacing twice beam full width half maximum fully sample sky single pointing two mapping modes account different jiggle map mode @xmath1 fields pointing telescope direction jiggling beam mirror fill field area with data large maps by tiling jiggle map fields more efficient scan map mode scanning telescope across sky constant rate strip data decelerating telescope at end strip perpendicular to scan direction accelerating to speed opposite direction large map built with adjacent scan strips detector arrays rotated slightly relative to scan direction gaps between detectors filled by detectors bolometer detectors scan map data subject to @xmath2 noise stripes maps jiggle map mode immune to @xmath2 noise signal chopped map is difference between on- off - source signals simulator optimum parameters for spire in scan map mode competing effects low - pass electronics filter @xmath2 noise optimum scan speed around @xmath3s@xmath4 angle rotation scan direction array orientation spacing between scan strips optimised uniform sky coverage scan map mode parameters optimised investigate instrumental characteristics affect observations spire guaranteed time programme deep extra - galactic high - redshift surveys large areas sky to below confusion limit @xmath2 noise sensitivity faint point sources designed observations with simulator used galics model galaxy evolution input skies realistic extra - galactic cosmological field covering 1 sq . field populated with 58590 sources @xmath5 m band flux limit 2 mjy confusion limit 40 beams per source sources per sq galics model hierarchical galaxy formation model clustering sources more realistic distribution confusion noise closer to spire in flight two sets simulated observations performed one @xmath2 noise switched off white noise noise switched on level design requirement spire bolometers frequency 100 mhz worst case scenario instrument detectors exhibit less @xmath2 noise final sensitivity combined simulations approximate confusion limited observation source detection routine run on maps compare sensitivity observations with without @xmath2 noise extracted source list cross - referenced with input source cataloguemap with @xmath2 noise showed higher detection threshold higher fraction spurious source detections if untreated could affect survey integration times need longer to reach desired detection threshold sensitivity estimates assume no contribution from noise alleviate noise iterative map making methods from cmb analysis filtering schemes high - pass filtering involves removing low frequency modes from time - line data eliminates long period drifts removing stripes in scan maps point source flux lost cut - off frequency must compromise between removing noise devised scheme to filter data construct map from unfiltered data detect brightest sources subtract point source model for from data fourier transform high - pass filter data cut - off frequency half @xmath2 knee frequency 50 mhz transform data back into - series add bright point sources back re - create map from filtered data removing bright point sources before filtering prevents negative dips in map reduces filtering process affecting fainter source flux recovery new map ran source detection routine again situation improved detection threshold slightly higher than white noise casespurious source detections reduced still higher than white noise case analysis @xmath2 noise for spire significant problem for faint point source surveys simple filtering schemes can @xmath2 noise sophisticated methods may eliminate see figure for comparison of pre- post - filtered images spire photometer simulator powerful tool for instrumental effects on astronomical data observing modes understanding data simulating cosmological surveys simulator galactic local universe observations simulations central to selection development map making code spire pipeline processing package process underway launch approaches simulator used to simulations refine performance map making algorithm develop optimised source detection routines exploiting spire data modular program simulator customisable to represent facility similar design spire or design next generation far - ir observatories griffin , m. j. swinyard , b. m. , et al . , 2006 , spie , 6265 hatton , s. devriendt j. g ninin s. bouchet f. r. guiderdoni b. vibert , d , 2003 , mnras , 343 , 75 pilbratt , g. l.2006 spie 5487 401 sibthorpe woodcraft griffin watkin 2004 spie 5487 491 sibthorpe waskett m 2006a spie 6270 , 41
| 0.352802
| 2,188
| 1,077
|
, Saving $0.1 in GPT-4.
|
18,909
|
many clues about the galaxy assembly process lurk in the faint outer regions of galaxies .
although quantitative study of these parts has been severely limited in the past , breakthroughs are now being made thanks to the combination of wide - area star counts , deep hst imagery and 8-m class spectroscopy .
i highlight here some recent progress made on deciphering the fossil record encoded in the outskirts of our nearest large neighbours , m31 and m33 .
|
the study of the faint outskirts of galaxies has become increasingly important in recent years . from a theoretical perspective
, it has been realised that many important clues about the galaxy assembly process should lie buried in these parts .
cosmological simulations of disk galaxy formation incorporating baryons have been carried out by several groups and yield predictions for the large - scale structure and stellar content at large radii for example , the abundance and nature of stellar substructure and the ubiquity , structure and content of stellar halos and thick disks .
these models generally predict a wealth of ( sub)structure at levels of @xmath0 mag/@xmath1 and fainter ; their verification thus requires imagery and spectroscopy of galaxies to ultra - faint surface brightness levels . since malin first applied his photographic stacking and amplification technique ( e.g. malin et al .
1983 ) , it has been known that some galaxies possess unusual low surface brightness ( lsb ) structures shells , loops , asymmetric envelopes in their outer regions .
although limited to @xmath2 mag/@xmath1 , these images were sufficient to demonstrate that even the most `` normal '' nearby galaxies could become very abnormal when viewed at faint light levels ( e.g. weil et al 1997 ) .
follow - up study of malin s lsb features , and several more recently - discovered examples ( e.g. shang et al . 1999 ) , has been severely limited due to the technical difficulties associated with detecting and quantifying diffuse light at surface brightnesses @xmath3 magnitudes below sky .
the currently most viable technique to probe the very low surface brightness regions of galaxies is that of resolved star counts ( e.g. pritchet & van den bergh 1994 ) ; i review here some recent results from studies of the faint outer regions of m31 and m33 .
kpc@xmath4 and @xmath5 kpc@xmath4 on a side respectively . ,
height=302 ] figure 1 shows maps of the red giant branch ( rgb ) population ( age @xmath6 gyr ) in m31 and m33 , covering 40 and 7 square degrees respectively .
although the maps reach the same limiting depth ( @xmath7 magnitudes below the tip of the rgb ) , it can be clearly seen that outer regions of m31 contain a wealth of substructure that is not present in m33 ( ferguson et al .
2002 , ferguson et al .
2007 , in prep ) .
the faintest features visible by eye in the m31 map have effective v - band surface brightnesses of @xmath8 mag/@xmath1 ; if substructure is present in m33 , it must be of lower surface brightness than this .
various features can be seen around m31 , including a giant stream in the south - east , stellar overdensities at large radii along the major axis , a diffuse structure in the north - east and a loop of stars projected near ngc 205 .
it is of obvious importance to establish the origin of this substructure .
bullock & johnston ( 2005 ) predict substructure in the outer regions of galaxies due to tidal debris from the accretion and disruption of an expected population of @xmath9 luminous satellites .
gauthier et al . ( 2006 ) and kazantzidis et al .
( in prep ) further show how the accretion of such a population will heat and restructure the thin disk , producing additional `` low latitude '' debris .
i summarize here our current understanding of the substructure seen around m31 : * deep hst / acs cmds reaching well below the horizontal branch have been obtained for 8 regions in the far outskirts of m31 , including seven regions of visible substructure .
many of the cmds exhibit different morphologies , suggesting variations in the mean age and metallicity of the constituent stars ( ferguson et al .
2005 ) . in all cases , the metallicity inferred from the rgb colour is significantly higher ( [ fe / h]@xmath10 ) than that of typical present - day low mass local group dwarf satellites ( [ fe / h]@xmath11 ) , implying that such objects are unlikely to be the progenitors of the observed substructure . *
all substructure fields lying near the major axis contain stars of age @xmath12 gyr ( faria et al 2007 ; richardson et al .
, in preparation ) ; this includes the ne clump field , which lies at a projected radius of 40 kpc .
additionally , the major axis substructure fields are dominated by a strong rotational signature , similar to the hi disk , with a modest velocity dispersion ( ibata et al . 2005 ) . taken together , these results suggest that the `` low - latitude '' structure in m31 results primarily from perturbed outer thin disk . *
the combination of line - of - sight distances and radial velocities for stars at various locations along the giant stream constrains the progenitor orbit ( e.g. ibata et al .
2004 ; fardal et al .
currently - favoured orbits do not easily connect the more luminous inner satellites ( e.g. m32 , ngc 205 ) to the stream however this finding leaves some remarkable coincidences ( e.g. the projected alignment on the sky , similar metallicities ) yet unexplained .
the giant stream is linked to another overdensity , the diffuse feature lying north - east of m31 s centre , on the basis of nearly identical cmd morphologies and rgb luminosity functions ; orbit calculations suggest this connection is indeed likely .
tidal debris from accretion events will disperse over time and streams from ancient events will have long merged to produce a diffuse stellar halo ( e.g. abadi et al . 2005 ; bullock & johnston et al 2005 ) .
if hierarchical growth is the main mode of mass assembly then such stellar halos should be a generic feature of galaxies . unfortunately , there are very few observational constraints on the nature and ubiquity of stellar halos around galaxies ( see however zibetti et al .
even our understanding of the m31 and m33 stellar halos was extremely poor until recently .
i summarize some key results here : using data from the int / wfc survey , irwin et al .
( 2005 ) combined diffuse light surface photometry with resolved star counts to probe the minor axis profile of m31 to a radius of @xmath13kpc ( effective @xmath14 mag/@xmath15 ) .
the profile shows an unexpected flattening ( relative to the inner r@xmath16 decline ) at a radius of @xmath17kpc , beyond which it can be described by shallow power - law ( index @xmath18 ) , possibly extending out to 150 kpc ( kalirai et al .
this compares favourably with the milky way halo , which exhibits a power - law index of @xmath19 in volume density ( vivas et al .
the discovery of a power - law component which dominates the light at large radii in m31 has profound implications for the interpretation of all prior studies of the m31 `` stellar halo '' .
since these studies generally targetted regions lying within 30 kpc along the minor axis , they most likely probed the extended disk / bulge region of the galaxy and not the true stellar halo .
keck / deimos spectroscopy has been used to study the kinematics and metallicities of stars in the far outer regions of m31 . by windowing out the stars which corotate with the hi disk , chapman et al .
( 2006 ) have detected an underlying metal - poor ( [ fe / h]@xmath20 ) , pressure - supported ( @xmath21 km / s ) component ( see also kalirai et al .
although it has yet to be proven that this component is the same one which dominates the power - law profile at very large radius , the evidence is highly suggestive . despite many years of thinking otherwise , it thus appears that m31 does indeed have a stellar halo which resembles that of the milky way in terms of structure , metallicity and kinematics .
studies of the m33 stellar halo have also had a somewhat checkered history .
mould & kristian ( 1986 ) measured [ m / h]@xmath22 in a field located at 7 kpc along the minor axis of m33 and , for the better part of two decades , this metallicity was generally assumed to reflect that of the m33 halo .
recent work has found a significantly higher metallicity for stars in this same field and , at the same time , suggested that the field is actually dominated by the outer disk and not the stellar halo ( e.g. tiede et al .
2004 , ferguson et al .
2007 in prep ) .
the detection of a power - law structural component in the outskirts of m33 has so far proved elusive , although the rgb clearly becomes narrower and more metal - poor in these parts ( ferguson et al .
2007 in prep ) .
a recent keck / deimos spectroscopic study has targetted two fields in the outskirts of the galaxy , located at @xmath23 kpc along the major axis ( mcconnachie et al .
although the dominant kinematic component in these fields exhibits strong rotation , there is tentative evidence for an additional low - level metal - poor ( [ fe / h]@xmath24 ) component centered at the systemic velocity .
while further work is clearly needed to elucidate the nature of this structure , the estimated velocity dispersion ( @xmath25 km / s ) supports an association with m33 s true stellar halo .
quantitative study of the faint outskirts of galaxies provides important insight into the galaxy assembly process .
much recent work has focused on our nearest large neighbours , m31 and m33 . while both appear to show evidence for a metal - poor , pressure - supported stellar halo ( similar to that of the milky way ) , only m31 shows evidence for recent accretion . in order to put these results in context ,
it is necessary to establish the properties of a larger sample of galaxies , spanning a range in both host galaxy luminosity and hubble type . with 8-m class telescopes ,
it is possible to map the rgb populations in the outskirts of galaxies to distances of @xmath26 mpc ; with hst , this work can feasibly be extended to @xmath27 mpc .
spectroscopic characterization of resolved rgb populations beyond the local group is far harder and must await the arrival of 30-m class telescopes .
i thank scott chapman , daniel faria , rodrigo ibata , mike irwin , rachel johnson , kathryn johnston , geraint lewis , alan mcconnachie and jenny richardson for their collaboration .
support from a marie curie excellence grant is acknowledged .
abadi , m. g. , navarro , j. f. , & steinmetz , m. 2006 , , 365 , 747 bullock , j. s. , & johnston , k. v. 2005 , , 635 , 931 chapman , s. c. , ibata , r. , lewis , g. f. , ferguson , a. m. n. , irwin , m. , mcconnachie , a. , & tanvir , n. 2006 , astro - ph/0602604 fardal , m. a. , babul , a. , geehan , j. j. , & guhathakurta , p. 2006
, , 366 , 1012 faria , d. , johnson , r. , ferguson , a. m. n. , irwin , m. j. , ibata , r. a. , johnston , k. , lewis , g. f. , & tanvir , n. r. 2007 , submitted ferguson , a. m. n. , irwin , m. j. , ibata , r. a. , lewis , g. f. , & tanvir , n. r. 2002 , aj , 124 , 1452 ferguson , a. m. n. , johnson , r. a. , faria , d. c. , irwin , m. j. , ibata , r. a. , johnston , k. v. , lewis , g. f. , & tanvir , n. r. 2005 , apjl , 622 , l109 gauthier , j .-
, dubinski , j. , & widrow , l. m. 2006 , astro - ph/0606015 ibata , r. , chapman , s. , ferguson , a. m. n. , irwin , m. , lewis , g. , & mcconnachie , a. 2004 , mnras , 351 , 117 ibata , r. , chapman , s. , ferguson , a. m. n. , lewis , g. , irwin , m. , & tanvir , n. 2005 , apj , 634 , 287 irwin , m. j. , ferguson , a. m. n. , ibata , r. a. , lewis , g. f. , & tanvir , n. r. 2005 , apjl , 628 , l105 kalirai , j. s. , et al .
2006 , , 648 , 389 malin , d. f. , quinn , p. j. , & graham , j. a. 1983 , , 272 , l5 mcconnachie , a. w. , chapman , s. c. , ibata , r. a. , ferguson , a. m. n. , irwin , m. j. , lewis , g. f. , tanvir , n. r. , & martin , n. 2006 , , 647 , l25 mould , j. , & kristian , j. 1986 , , 305 , 591 pritchet , c. j. , & van den bergh , s. 1994 , , 107 , 1730 shang , z. , et al .
1998 , , 504 , l23 tiede , g. p. , sarajedini , a. , & barker , m. k. 2004 , , 128 , 224 vivas , a. k. , & zinn , r. 2006 , , 132 , 714 weil , m. l. , bland - hawthorn , j. , & malin , d. f. 1997 , , 490 , 664 zibetti , s. , white , s. d. m. , & brinkmann , j. 2004 , , 347 , 556
|
study of faint outskirts of galaxies important clues about galaxy assembly process in these parts cosmological simulations of disk galaxy formation baryons yield predictions for large - scale structure stellar content at large radii abundance stellar substructure ubiquity content of stellar halos thick disks models predict sub)structure at @xmath0 mag/@xmath1 fainter verification requires imagery spectroscopy of galaxies to ultra - faint surface brightness levels malin photographic stacking amplification technique some galaxies possess unusual low surface brightness ( lsb ) structures shells loops asymmetric envelopes in outer regions limited to @xmath2 mag/@xmath1 images demonstrate normal nearby galaxies could become abnormal viewed at faint light levels - study of malin s lsb features limited due to technical difficulties detecting quantifying diffuse light at surface brightnesses @xmath3 magnitudes below sky viable technique low surface brightness regions resolved star counts review recent results from studies faint outer regions of m31 m33 @xmath4 @xmath5height=302 figure 1 shows maps red giant branch population @xmath6 gyr in m31 m33 covering 40 7 square degrees maps reach limiting depth @xmath7 magnitudes below tip rgb outer regions m31 contain substructure not present in m33 ferguson et 2002 2007 faintest features in m31 map have v - band brightnesses @xmath8 mag/@xmath1 if substructure in m33 lower brightness features around m31 giant stream south - east stellar overdensities diffuse structure north - east loop of stars near ngc 205 establish origin substructure bullock & johnston 2005 predict substructure outer regions due to tidal debris from @xmath9 luminous satellites gauthier et al 2006 kazantzidis et al. show accretion population thin disk low latitude debris understanding substructure around m31 deep hst / acs cmds below horizontal branch obtained for 8 regions outskirts m31 seven regions visible substructure cmds exhibit different morphologies suggesting variations in mean age metallicity stars ( ferguson et 2005 )metallicity from rgb colour higher ( fe / h]@xmath10 ) than low mass local group dwarf satellites ( fe / h]@xmath11 ) unlikely progenitors of substructure substructure fields near major axis contain stars of age @xmath12 gyr includes ne clump field at radius 40 kpc major axis substructure fields dominated by strong rotational signature modest velocity dispersion ibata 2005 results suggest low - latitude structure in m31 results from perturbed outer thin disk of line - of - sight distances radial velocities for stars along giant stream constrains progenitor orbit orbits connect luminous inner satellites m32 ngc 205 to stream leaves remarkable coincidences alignment similar metallicities unexplained giant stream linked to overdensity diffuse feature north - east of m31 s centre identical cmd morphologies rgb luminosity functions orbit calculations suggest connection likely tidal debris from accretion events disperse over streams from ancient events merged to produce diffuse stellar halo if hierarchical growth main mode mass assembly stellar halos be generic feature of galaxiesfew observational constraints on stellar halos around galaxies understanding of m31 m33 stellar halos poor until recently summarize key results using data from int / wfc survey irwin et al . 2005 combined diffuse light surface photometry resolved star counts minor axis profile of m31 radius @xmath13kpc profile shows unexpected flattening decline at radius @xmath17kpc beyond shallow power - law index @xmath18 ) possibly extending to 150 kpc compares with milky way halo power - law index of @xmath19 volume density discovery of power - law component light at large radii in m31 implications for interpretation prior studies of m31 stellar halo studies targetted regions within 30 kpc likely probed extended disk / bulge region not true stellar halo keck / deimos spectroscopy used kinematics metallicities of stars in outer regions m31 chapman et al . 2006 detected underlying metal - poor pressure - supported ( @xmath21 km / s ) component power - law profile at large radius evidence suggestiveyears m31 stellar halo resembles milky way structure metallicity kinematics studies m33 stellar halo checkered history mould & kristian 1986 measured m]@xmath22 at 7 kpc minor axis m33 metallicity assumed m33 halo recent work found higher metallicity for stars field suggested field dominated by outer disk not stellar halo tiede et al . 2004 ferguson et al . 2007 detection of power - law structural component in outskirts m33 elusive rgb becomes narrower more metal - poor recent keck / deimos spectroscopic study targetted two fields outskirts galaxy at @xmath23 kpc axis dominant kinematic component strong rotation tentative evidence for additional low - level metal - poor h]@xmath24 ) component systemic velocity further work needed estimated velocity dispersion ( @xmath25 km / s ) supports association with m33 s stellar halo quantitative study outskirts galaxies provides insight galaxy assembly process recent work on large neighbours m31 and m33 both show evidence for metal - poor pressure - supported stellar halo only m31 shows evidence recent accretionresults context necessary establish properties larger sample galaxies host galaxy luminosity hubble type 8-m class telescopes map rgb populations outskirts galaxies to distances @xmath26 mpc with hst work to @xmath27 mpc spectroscopic characterization resolved rgb populations beyond local group harder await 30-m class telescopes thank scott chapman daniel faria rodrigo ibata mike irwin rachel johnson kathryn johnston geraint lewis alan mcconnachie jenny richardson collaboration support marie curie excellence grant acknowledged abadi m.. navarro j. steinmetz . 2006 , 365 , 747 bullock johnston . 2005 , 635 , 931 chapman ibata lewis ferguson irwin mcconnachie tanvir. 2006 astro - ph/0602604 fardal babul geehan j guhathakurta . 2006 , 366 , 1012 faria johnson ferguson irwin ibata johnston lewis tanvir. 2007 fergusonirwin m. j ibata r. a lewis g. f. tanvir 2002 124 , 1452 ferguson a m. n johnson r. a faria irwin m. j ibata r. johnston lewis g. f. tanvir. 2005 622 , l109 gauthier dubinski widrow. 2006 astro - ph/0606015 ibata chapman ferguson a m. n irwin lewis g. mcconnachie 2004 351 , 117 ibata chapman ferguson m lewis g. irwin tanvir 2005 634 , 287 irwin m. j. ferguson a m ibata r. a lewis g. f. tanvir. 2005 628 , l105 kalirai j 2006 648 , 389 malin d. f. quinn. graham j. 1983 272 , l5 mcconnachie chapman s ibata r. ferguson a m. n irwin m. j lewis g. f.tanvir martin. 2006 647 , l25 mould kristian 1986 305 , 591 pritchet van den bergh s 1994 107 , 1730 shang z 1998 504 , l23 tiede sarajedini barker 2004 128 , 224 vivas zinn . 2006 132 , 714 bland - hawthorn j malin. f. 1997 490 , 664 zibetti white brinkmann j. 2004 347 , 556
| 0.500392
| 3,278
| 1,627
|
, Saving $0.1 in GPT-4.
|
18,913
|
due to the impressive amount of new data provided by the rxte satellite in the past decade , our knowledge of the phenomenology of accretion onto black holes has increased considerably . in particular , it has been possible to schematize the outburst evolution of transient systems on the basis of their spectral and timing properties , and link them to the ejection of relativistic jets as observed in the radio . here , i present this scheme , concentrating on the properties of the quasi - periodic oscillations observed in the light curves and on the link with jet ejection . 95.75.wx , 95.85.nv , 97.10.gz , 97.80.jp
|
the rossixte mission has changed our view of the high - energy emission of black hole transients ( bht ) , leading to a new , complex picture which is difficult to interpret . at the same time , a clear connection between x - ray and radio properties has been found ( see fender 2005 , fender et al .
2004 ) . in the following ,
i present briefly the state paradigm that is now emerging , based on a large wealth of rossixte data from bright transient sources and its connection with jet ejection ( see belloni et al .
2005 ; homan & belloni 2005 ; fender et al .
although a full discussion would necessitate a much longer paper , i will simplify the picture as much as possible , concentrating on the most important issues .
in particular , i will stress the connection between fast - timing properties and presence of a jet .
the results of detailed timing and color / spectral analysis of the rossixte data of bright bhts have evidenced a very wide range of phenomena which are difficult to categorize . nevertheless , it is useful to identify distinct states .
based on the variability and spectral behavior and the transitions observed in different energy bands , i consider the following states in addition to a quiescent state ( see homan & belloni 2005 ; belloni et al . 2005 ; see also casella et al .
2004,2005a for the description of the different qpo types ) : * low / hard state ( ls ) : this state is the one associated to relatively low values of the accretion rate , i.e. lower than in the other bright states , but it can be observed at all luminosities .
the energy spectrum is hard and the fast time variability is dominated by a strong ( @xmath030% fractional rms ) band - limited noise . sometimes , low frequency qpos are observed .
the characteristic frequencies detected in the power spectra follow broad - range correlations ( see belloni et al .
2002 ) . in this state , flat - spectrum radio emission
is observed , associated to compact jet ejection ( see gallo et al .
2003 ; fender et al .
* hard intermediate state ( hims ) : the energy spectrum is softer than in the ls , with evidence for a soft thermal disk component . the power spectra feature band - limited noise with characteristic frequency higher than the ls and usually a rather strong 0.1 - 15 hz type - c qpo ( see e.g. casella et al .
the frequencies of the main components detected in the power spectra extend the broad correlations mentioned for the ls .
the radio emission shows a slightly steeper spectrum ( fender et al .
2004 ) . just before the transition to the sims ( see below ) , fender et al .
( 2004 ) suggested that the jet velocity increases rapidly , giving origin to a fast relativistic jet .
* soft intermediate state ( sims ) : here the energy spectrum is systematically softer than the hims . the disk component dominates the flux .
no strong band - limited noise is observed , but transient type - a and type - b qpos , the frequency of which spans only a limited range .
no core radio emission is detected .
the few instances of high - frequency qpos in bht were observed in this state ( see e.g. morgan et al .
1997 ; homan et al . 2001,2003 ; cui et al .
2000 ; remillard et al .
* high / soft state ( hs ) : the energy spectrum is very soft and strongly dominated by a thermal disk component . only weak power - law noise is observed in the power spectrum .
no core radio emission is detected ( see fender et al . 1999 ; fender 2005 ) this classification originates from the analysis of the time evolution in bhts .
the states described above are defined also in terms of their transitions , which need to be taken into account .
a sketch of the evolution of the 2002/2003 outburst of gx 339 - 4 is ideal to show the transitions ( see homan & belloni 2005 ; belloni et al .
figure 1 shows the outburst in a hardness - intensity diagram ( hid ) : the x - axis shows the x - ray hardness and the y - axis the detected count rate ( from belloni et al .
the general direction of the time evolution of the outburst is shown by the arrows in the bottom left corner . as described in detail below , the position of the boundaries between different states are absolutely not arbitrary , but are based on the presence of sharp changes in the observed properties .
the states outlined above are defined in terms of their transitions , unlike other proposed state - classifications ( see mcclintock & remillard 2005 ) . however , as i will show , some transitions appear to be more relevant than others .
* _ ls to hims : _ the position of this transition in the hid can be debated , as the color and timing properties change rather smoothly .
however , homan et al ( 2005 ) showed that abrupt changes in the infrared / x - ray correlation are observed in correspondence of a particular date , which provides a strong mark for the position of the transition .
the ir / x - ray correlation is positive before the transition , then switches to negative after the transition .
the timing properties do show evidence of changes ( see belloni et al .
2005 ) , but in a rather smooth way .
* _ hims to sims : _ here the transition is very sharp .
the power spectra change from band - limited noise plus type - c qpo to red noise plus type - a / b qpo on a time scale that can be as short as a few seconds ( see nespoli et al .
2003 , casella et al .
color changes are not that marked , and indeed from integral data of the 2004/2005 outburst of gx 339 - 4 there is evidence that during such a transition the hard spectral component changes smoothly ( belloni et al .
2005 , in prep . ) .
* _ sims to hs : _ after the transition line in fig .
1 , all observations do not show any evidence of features in the power spectrum .
although some sims observations also appear very quiet , it is remarkable that below a certain source rate , no more signal is detected . averaging all observations ,
a weak power law is observable in the power spectrum ( see fig .
_ hs to hims : _ the line in fig .
1 clearly marks the appearance of strong band - limited noise ( plus type - c qpos ) .
the three observations that moved back to the left of this line do not have this noise , indicating that there is indeed a color boundary . * _ hims to ls : _ as in the case of the reverse transition , the color and timing properties do not show strong discontinuities in their evolution
. the transition line is placed at the same color as the reverse transition . in the model of fender et al .
( 2004 ) , the hims
sims transition corresponds to the ` jet line ' , which marks the time of the sudden quenching of a rapidly accelerating radio jet ( see also corbel et al .
notice that in some sources this transition can be repeated : in grs 1915 + 105 , it takes place on all time scales , and radio oscillations are observed to correlate with it ( see eikenberry et al .
1998 , klein - wolt et al . 2002 ) .
also in xte j1859 + 226 , rapid transitions are observed : it is interesting to notice that the appearance of type - b qpos , tracers of the sims , appear roughly in correspondence of radio flares ( see casella et al .
the jet line does not extend to the low part of the diagram , but a discontinuity line can be traced vertically ( see fig .
the right of this line , marked ` radio - loud ' , where a radio emitting jet component exists , there is strong band - limited noise in the power spectrum , often accompanied by type - c qpos whose frequencies correlate with spectral parameters ( see vignarca et al .
2003 ) . to
the left of this line , marked ` radio - quiet ' , no strong core radio emission is observed ( see fender et al .
1999 ) and the power spectrum does _ not _ show strong noise , with the occasional presence of a type - a / b qpos , whose frequencies vary only over a small range ( see casella et al
. 2005a ) .
typical power spectra ( from gx 339 - 4 ) can be seen in fig .
2 . the clear separation in timing and radio properties of the hard ( ls and hims ) and
soft ( sims and hs ) states can be seen in fig .
3 , where the time evolution of the integrated fractional rms of gx 339 - 4 during.this indicates that the four states presented above , in terms of physical conditions , might be reduced to only two : a hard state characterized by radio - loudness , strong noise components and variable - frequency type - c qpos , and a soft one , radio - quiet , with weak power - law noise and transient type - a / b qpos . it is important to note that major tracers of these states are low - frequency qpos and associated noise components .
type - c qpos and band - limited noise components provide characteristic frequencies that trace the evolution of the accretion during the early and final part of the outburst ; in the hard states , the strong correlations between hard x - ray emission and radio flux led to models for the jet production and x - ray emission which need to take these timing tracers into account ( see e.g. meier 2005 ) .
type - a / b qpos are much less studied and their origin is unclear .
however , the transient presence of type - b qpos could be important for the study of the physical conditions of the accretion flow as the source crosses the jet line . the small range of long - term variability of their centroid frequency , its fast short - term variability ( see nespoli et al .
2003 ; belloni et al .
2005 ) and the absence of band - limited noise components are key ingredients for their understanding ( see casella et al .
the general picture that can be drawn from the properties discussed above is the following . in the hard state ,
the source is probably jet - dominated , in the sense that the power in the jet is larger than that in the accretion ( see fender et al .
the dominant component in the x - ray range is a thermal hard component , which is possibly associated to the jet itself ( see e.g. markoff et al . 2003 and nowak et al . 2005 ) .
the geometrically thin , optically thick , accretion disk is very soft and has a varying inner radius , so that its contribution to the x - ray emission changes .
this state is characterized by strong band - limited noise and type - c qpos , whose characteristic frequencies show clear correlations between themselves and with spectral parameters ( see wijnands & van der klis 1999 ; belloni et al . 2002 ; markwardt et al .
1999 ; vignarca et al .
this state includes the ls and hims : the latter is associated to small accretion disk radii , faster jet ejection , steeper energy spectra and higher characteristic frequencies . in the hims , the corona component ( see below ) starts contributing to the x - ray flux ( zdziarski et al .
2001 ; rodriguez et al . 2004 ) . in the soft states
( hs and sims ) , the jet is suppressed ( radio and x - ray jet components are not observed ) .
the flux is dominated by the optically thick accretion disk component , which now has a higher temperature and a small inner radius , possibly coincident with the innermost stable orbit around the black hole , but an additional power - law component , with no evidence of a high - energy cutoff up to @xmath01 mev is visible , which i associate here ( generically ) to a corona . in the power spectra , no strong band - limited noise component is observed , and transient qpos of type a / b are observed , with frequencies above a few hz and not much variable on time scales longer than a few seconds ( casella et al .
2005a ) .
the above picture involves four observationally separated states , two physical states and three emission components : the optically thick disk , the thermal hard component and the corona component .
their contribution to the fast time variability is markedly different : the disk component does not contribute to it , the thermal hard component is associated to the band - limited noise and type - c qpos , and the corona component is associated to the type - a / b qpos and the weak power - law variability observed in the soft states .
a key ingredient is the hims
sims transition : the transition itself is marked by the timing properties , but the spectral evolution through it is far from being clear .
recent integral data suggest that the transition between the thermal component being dominant ( as in the ls ) and the corona component being visible at high energies ( in the hs ) is smooth across the jet line ( belloni et al .
2005 , in prep . ) .
although timing analysis of the fast variability of bhts can give us direct measurements of important parameters of the accretion flow , up to now we do not have unique models that permit this .
recent results show that a clear association can be made between type - c qpo , strong band - limited noise and the presence of a relativistic jet . in the framework of unifying models
, these results could play an important role .
|
rossixte mission changed view high - energy emission of black hole transients new complex picture difficult to interpret clear connection between x - ray radio properties found fender 2005 et 2004 ) present state paradigm emerging based on rossixte data from bright transient sources connection with jet ejection see belloni et 2005 homan belloni 2005 fender et full discussion simplify picture concentrating on important issues stress connection between fast - timing properties presence jet results of detailed timing color / spectral analysis of rossixte data bright bhts wide range of phenomena difficult to categorize useful to identify distinct states variability spectral behavior transitions consider following states see homan belloni 2005 casella et al : * low / hard state ) associated to low values accretion rate observed at all luminosities energy spectrum hard fast time variability dominated by strong band - limited noise low frequency qpos observed characteristic frequencies power spectra follow broad - range correlations belloni et al . 2002 ) flat - spectrum radio emission observed associated to compact jet ejection gallo et al . 2003 fender et al hard intermediate state ( hims ) energy spectrum softer ls soft thermal disk component power spectra feature band - limited noise frequency higher strong 0.1 - 15 hz type - c qpo casella et al frequencies main components extend correlations ls radio emission steeper spectrum fender et al . 2004 transition sims jet velocity increases fast relativistic jet soft intermediate state ( sims ) energy spectrum softer disk component dominates flux no strong band - limited noise transient type - a type - b qpos frequency limited range no core radio emission few high - frequency qpos in bht observed morgan et 1997 homan 2001,2003 cui 2000 remillard et high / soft state ( hs ) energy spectrum soft dominated by thermal disk component weak power - law noise no core radio emission fender et al. 1999 fender 2005 classification originates from analysis time evolution in bhts states defined transitions sketch of evolution 2002/2003 outburst of gx 339 - 4 transitions homan & belloni 2005 bellonifigure 1 shows outburst in hardness - intensity diagram x - axis shows ray hardness y - axis detected count rate belloni et al direction time evolution outburst shown by arrows bottom left corner boundaries between states not arbitrary based on sharp changes in observed properties states defined in transitions mcclintock & remillard 2005 some transitions more relevant ls to hims position transition in hid debated color timing properties change smoothly homan et al 2005 showed abrupt changes in infrared / x - ray correlation observed particular date strong mark for position transition x - ray correlation positive before transition switches to negative after timing properties show changes belloni 2005 smooth to transition sharp power spectra change from band - limited noise plus type - c qpo to red noise plus type - a / b qpo few seconds nespoli et al . 2003 color changes not marked data 2004/2005 outburst gx 339 - 4 during transition hard spectral component changes smoothly belloni et al . 2005 sims to hs after transition line fig . 1 observations show evidence of features in power spectrumsome sims observations appear quiet below certain source rate no more signal detected weak power law observable in power spectrum see fig . hs to hims : line in 1 marks strong band - limited noise plus type - c qpos three observations left noise color boundary hims to ls color timing properties show strong discontinuities transition line same color as reverse transition fender et 2004 hims sims transition corresponds to ` jet line ' sudden quenching of accelerating radio jet some sources transition repeated in grs 1915 + 105 on all time scales radio oscillations correlate eikenberry klein - wolt 2002 in xte j1859 + 226 rapid transitions observed type - b qpos tracers sims of radio flares jet line extend to low part diagram discontinuity line traced vertically fig . right of line ` radio - loud ' where radio emitting jet component exists strong band - limited noise in power spectrum by type - c qpos frequencies correlate with spectral parameters vignarca et al . 2003 )left line radio - quiet no strong core radio emission fender 1999 power spectrum show strong noise occasional type - a / b qpos frequencies vary small range casella 2005a typical power spectra gx 339 - 4 ) fig . 2 separation timing radio properties hard soft hs states fig . 3 time evolution integrated rms gx 339 - 4 four states reduced two hard state radio - loudness strong noise variable - frequency type - c qpos soft one radio - quiet weak power - law noise transient type - a / b qpos major tracers low - frequency qpos noise components type - c qpos band - limited noise provide characteristic frequencies evolution accretion early final outburst hard states strong correlations x - ray emission radio flux models jet production x - ray emission timing tracers meier 2005 type - a / b qpos less studied origin unclear transient presence qpos important study physical conditions accretion flow source crosses jet line small long - term variability centroid frequency fast short - term variability nespoli 2003 belloni2005 absence of band - limited noise key for understanding casella et al general picture properties hard state source jet - dominated power jet larger than accretion fender dominant x - ray range thermal hard component possibly associated to jet markoff et 2003 nowak et 2005 geometrically thin optically thick accretion disk soft varying inner radius contribution to x - ray emission changes state characterized strong band - limited noise type - c qpos frequencies correlations spectral parameters wijnands klis 1999 belloni 2002 markwardt 1999 vignarca state includes ls hims associated to small accretion disk radii faster jet ejection steeper energy spectra higher frequencies hims corona component to x - ray flux zdziarski 2001 rodriguez 2004 soft states jet suppressed radio x - ray jet components not observed flux dominated by optically thick accretion disk higher temperature small inner radius coincident with stable orbit around black hole additional power - law component no high - energy cutoff up to @xmath01 mev visible to corona power spectra no strong band - limited noise transient qpos type a / b observed frequencies above few hz not much variable time scales longer few seconds ( casella et al . 2005a ) picture involves four states two physical states three emission components optically thick disk thermal hard corona component contribution to fast time variability different disk contribute thermal hard associated band - limited noise type - c qpos corona type - a / b qpos weak power - law variability soft states key ingredient hims sims transition marked by timing properties spectral evolution clear data transition between thermal component corona smooth across jet line ( belloni et al . 2005 timing analysis fast variability bhts measurements parameters accretion flow unique models results show clear association between type - c qpo strong band - limited noise relativistic jet unifying models results could play important role
| 0.440603
| 2,962
| 1,479
|
, Saving $0.1 in GPT-4.
|
18,919
|
we present new results derived from high - resolution optical spectra of the @xmath0 boo system , secured in march - may 2000 .
the results do not show the same feature reported by cameron et al ( 1999 ) as a candidate reflected - light signature from the planet . together with earlier results from the 1998 and 1999 seasons , the new data yield a 99.9%upper limit on the opposition planet / star flux ratio @xmath1 between 387.4 and 586.3 nm , a factor 3 deeper than the upper limit of charbonneau et al ( 1999 ) .
for an assumed planet radius @xmath2 , the upper limit on the mean geometric albedo is @xmath3 , 40% that of jupiter .
we find new evidence that the star s rotation is synchronised with the planet s orbital motion .
using a monte carlo analysis we infer that the planet s mass must lie in the range 5.5 to 10 times the mass of jupiter .
# 1_#1 _ # 1_#1 _ = # 1 1.25 in .125 in .25 in
|
during the last 5 years , many jupiter - mass planets have been discovered in 3 to 5-day orbits about solar - type stars .
determining the atmospheric composition of such planets presents challenges to both observers and theorists .
theoretical models must address the equilibrium chemistry , cloud - formation physics and absorption / scattering properties of irradiated atmospheres at temperatures of order 1000 k. several such models ( marley et al 1999 ; sudarsky et al 2000 ; seager & sasselov 2000 ; seager et al 2000 ) have been published lately , with a variety of predictions for the geometric albedo spectra . for observers , the challenge is to disentangle the optical reflection spectrum or the thermal ir emission spectrum from a stellar background that may be tens of thousands of times brighter .
charbonneau et al ( 1999 ) published a deep upper limit on the strength of the mid - optical reflection of the planet that orbits t boo every 3.3 days , while cameron et al ( 1999 ) reported a candidate reflected - light signature at flux levels slightly greater than the charbonneau upper limit .
we secured new observations of @xmath0 boo on 2000 march 14 , 15 , 24 , april 23 , 24 , may 13 and 17 .
we used the same instrument and detector on the 4.2-m william herschel telescope , as previously reported by collier cameron et al ( 1999 ; chpj99 ) for the 1998 and 1999 data .
the observational procedures and data extraction and analysis methods were identical to those described by chpj99 .
an updated orbital ephemeris for the times at which the planet s velocity passes through the centre - of - mass velocity from red to blue , hjd@xmath4 , was derived from radial - velocity data kindly provided by g. marcy and colleagues , incorporating observations as recent as 2000 march 24 .
this leads to a small but significant departure from the extrapolated orbital timings used in chpj99 s interpretation of the 1998/99 data .
analysis of all three seasons wht data with the revised ephemeris does not reproduce the candidate detection reported by chpj99 .
instead we find a 99.9% upper limit on the opposition planet / star flux ratio , @xmath5 , in the most likely range of orbital velocity amplitudes , @xmath6 km s@xmath7 ( fig .
this value for @xmath8 assumes a wavelength - independent albedo over the observed wavelength range 387.4 to 586.3 nm , and a lambert - sphere phase function .
given that @xmath9 where @xmath10 is the radius of the planet s orbit , the geometric albedo must be @xmath11 if @xmath12 as indicated by the recent models of burrows et al ( 2000 ) .
the hipparcos parallax and barnes - evans angular diameter yield @xmath13 r@xmath14 ( baliunas et al 1995 ) .
the spectral type and surface gravity indicate @xmath15 m@xmath14 ( fuhrmann 1998 , gonzalez 1998 ) .
the orbital radial velocity amplitude of the star is @xmath16 m s@xmath7 ( marcy 1999 , personal communication ) .
the projected equatorial rotation speed of the star is @xmath17 km s@xmath7 ( gray 1982 , baliunas et al 1997 , fuhrmann 1998 , gonzalez 1998 , cameron et al 1999 ) .
we performed monte carlo simulations with random gaussian distributions in these 4 variables to determine the distributions for derived planet mass and projected orbital velocity amplitude . at the @xmath18 gyr age of @xmath0 boo ,
the high @xmath19 suggests tidal synchronisation . as in 1998 and 1999 ,
the spring 2000 data show distortions in the stellar line profiles , which drift from blue to red at the rate expected of stellar surface features if the star rotates synchronously with the planet s orbit .
we therefore rejected models that yielded synchronization timescales for the star , @xmath20 that were longer than the main - sequence lifetime @xmath21 years .
the resulting probability distribution spans the orbital velocity range @xmath22 km s@xmath7 and yields planet masses @xmath23 . the new upper limit on the geometric albedo of @xmath0 boo b , @xmath11 between 387.4 to 586.3 nm , lies between the albedo spectra predicted by sudarsky et al ( 2000 ) for `` isolated '' and `` modified '' class iv roaster atmospheres , and suggests that substantial pressure - broadened na i d absorption may be present .
the class v models of sudarsky et al appear to offer better prospects for direct detection of hot jupiters with lower surface gravities such as @xmath24 and b , for which similar observations are scheduled in 2000 october and november .
baliunas s. l. , et al . , 1998 , , 474 , l119 butler r. p. , et al . , 1997 , , 474 , l115 burrows a. , et al . ,
2000 , , 534 , l97 cameron a.c .
, horne k. , penny a. j. , james d. j. , 1999 , nature , 402 , 751 charbonneau d. , et al .
, 1999 , , 522 , l145 fuhrmann k. , pfeiffer m. j. , bernkopf j. , 1998 , 336 , 942 gonzalez g. , 1998 , , 334 , 221 gray d. f. , 1982 , , 258 , 201 marcy , g. w. , et al . , 1997 , , 481 , 926 marley m. s. , et al . , 1999 , , 513 , 879 seager s. , sasselov d. , 1998 , , 502 , l157 seager s. , whitney b. , sasselov d. , 2000 , astro - ph 0004001 sudarsky , d. , burrows , a. , pinto p. , 2000 ,
|
last 5 years jupiter - mass planets discovered in 3 to 5-day orbits solar stars determining atmospheric composition presents challenges observers theorists models address equilibrium chemistry cloud - formation physics absorption scattering properties irradiated atmospheres at temperatures 1000 k models marley 1999 sudarsky 2000 seager published predictions geometric albedo spectra challenge disentangle optical reflection thermal ir emission spectrum from stellar background brighter charbonneau et al 1999 published upper limit mid - optical reflection planet every 3.3 days cameron et al 1999 reported reflected - light signature at flux levels greater than limit observations of @xmath0 boo on 2000 march 14 15 24 april 23 24 may 13 17 used same instrument detector 4.2-m william herschel telescope 1998 data observational procedures data extraction analysis methods identical to chpj99 updated orbital ephemeris planet s velocity mass hjd@xmath4 derived from radial - velocity data marcy colleagues observations 2000 march 24 leads small departure from extrapolated orbital timings chpj99 s interpretation 1998/99 dataanalysis three seasons revised ephemeris reproduce detection chpj99 99.9% upper limit opposition planet / star flux ratio @xmath5 likely orbital velocity amplitudes @xmath6 km s@xmath7 value @xmath8 assumes wavelength - independent albedo 387.4 to 586.3 nm lambert - phase function @xmath9 @xmath10 radius planet s orbit geometric albedo @xmath11 @xmath12 models burrows et al 2000 hipparcos parallax barnes - evans angular diameter yield @xmath13@xmath14 1995 spectral type surface gravity indicate @xmath15@xmath14 orbital velocity amplitude star @xmath16 m s@xmath7 1999 projected equatorial rotation speed @xmath17 km s@xmath7 performed monte carlo simulations random gaussian distributions 4 variables derived planet mass projected orbital velocity amplitude @xmath18 gyr age @xmath0 boo high @xmath19 suggests tidal synchronisation spring 2000 data show distortions stellar line profiles blue to red star rotates synchronously planet orbitrejected models synchronization star @xmath20 longer than main - sequence lifetime @xmath21 years probability distribution spans orbital velocity range @xmath22 km@xmath7 planet masses @xmath23 new upper limit geometric albedo of @xmath11 between 387.4 to 586.3 nm between sudarsky et al 2000 class iv roaster atmospheres pressure - broadened na i d absorption class v models sudarsky better detection hot jupiters with lower surface gravities @xmath24 and b observations scheduled in 2000 october november baliunas s. l. 1998 474 , l119 butler r 1997 474 , l115 burrows 2000 534 , l97 cameron horne penny james 1999 402 , 751 charbonneau 1999 522 , l145 fuhrmann bernkopf 1998 336 , 942 gonzalez 334 , 221 gray d 1982 258 , 201 marcy 1997 481 , 926 marley 1999 513 , 879 seager sasselov1998 502 l157 seager whitney sasselov 2000 astro - ph 0004001 sudarsky burrows pinto p.
| 0.260115
| 1,383
| 731
|
, Saving $0.0 in GPT-4.
|
18,924
|
the problems with explaining the small ionized and neutral structures ( sins ) appealing to turbulence stem from inefficiency of the kolmogorov cascade in creating large fluctuations at sufficiently small scales . however , other types of cascades are possible .
when magnetic turbulence in a fluid with viscosity that is much larger than resistivity gets to a viscous damping scale , the turbulence does not vanish .
instead , it gets into a different new regime .
viscosity - damped turbulence produces fluctuations on the small scales .
magnetic fields sheared by turbulent motions by eddies not damped by turbulence create small scale filaments that are confined by the external plasma pressure .
this creates small scale density fluctuations .
in addition , extended current sheets create even stronger density gradients that accompany field reversals in the plane perpendicular to mean magnetic field . those can be responsible for the sins formation .
this scenario is applicable to partially ionized gas .
more studies of reconnection in the viscosity dominated regime are necessary to understand better the extend to which the magnetic reversals can compress the gas .
|
turbulence can be viewed as a cascade of energy from a large injection energy scale to dissipation at a smaller scale .
the latter is being established by equating the rate of turbulent energy transfer to the rate of energy damping arising , for instance , from viscosity .
naively , one does not expect to see any turbulent phenomena below such a scale
. such reasoning may not be true in the presence of magnetic field , however .
consider magnetized fluid with viscosity @xmath0 much larger than magnetic diffusivity @xmath1 , which is the case of a high magnetic prantl number @xmath2 fluid .
the partially ionized gas can serve as an example of such a fluid up to the scales of ion - neutral decoupling ( see a more rigorous treatment in lazarian , vishniac & cho 2004 , henceforth lvc04 ) .
fully ionized plasma is a more controversial example .
for instance , it is well known that for plasma the diffusivities are different along and perpendicular to magnetic field lines .
therefore , the plasma the prandtl number is huge if we use the parallel diffusivity @xmath3 .
a treatment of the fully ionized plasma as a high prandtl number medium is advocated in schechochihin et al ( 2004 , henceforth sctmm ) . the turbulent cascade in a fluid with isotropic @xmath1 proceeds up to a scale at which the cascading rate , which for the kolmogorov turbulence , i.e. @xmath4 , is determined by the eddy turnover rate @xmath5 gets equal to the damping rate @xmath6 .
assuming that the energy is injected at the scale @xmath7 and the injection velocity is @xmath8 , the damping scale @xmath9 is @xmath10 , where @xmath11 is the reylonds number @xmath12 .
however , it is evident that magnetic fields at the scale @xmath9 at which hydrodynamic cascade would stop are still sheered by eddies at the larger scales .
this should result in creating magnetic structures at scales @xmath13 ( lvc04 ) .
note , that magnetic field in this regime is not a passive scalar , but important dynamically .
cho , lazarian & vishniac ( 2002 ) reported a new viscosity - damped regime of turbulence using incompressible mhd simulations ( see an example of more recent simulations in fig
. 1 ) . in this regime , unlike hydro turbulence , motions , indeed , do not stop at the viscosity damping scale , but magnetic fluctuations protrude to smaller scales .
interestingly enough , these magnetic fluctuations induce small amplitude velocity fluctuations at scales @xmath13 .
cho & lazarian ( 2003 ) confirmed these results with compressible simulations and speculated that these small scale magnetic fluctuations can compress ambient gas to produce sins ( see also fig .
according to the model in lvc04 , while the spectrum of averaged over volume magnetic fluctuations scales as @xmath14 , the pressure within intermittent magnetic structures increases with the decrease of the scale as @xmath15 , while the filling factor @xmath16 , the latter being consistent with numerical simulations .
the pressure of gas confining the magnetic filaments should increase accordingly , resulting in fluctuations of density increasing with the decrease of the scale .
the fact that the emerging structures are filamentary allows occasional picks in the observed column densities , which could correspond to the heiles ( 1987 ) model of sins .
but @xmath17.(from beresnyak & lazarian , in preparation).,title="fig:",width=136 ] but @xmath17.(from beresnyak & lazarian , in preparation).,title="fig:",width=25 ] but @xmath17.(from beresnyak & lazarian , in preparation).,title="fig:",width=188 ] in fig
. 1 we show the results of our high resolution compressible mhd simulations that exhibit strong density fluctuations at the scales below the one at which hydrodynamic turbulence would be damped .
the testing of the lvc04 model is important by itself , even without a possible connection to sins . according to that model
, the viscosity - damped regime is ubiquitous in turbulent partially ionized gas .
some of its discussed consequences , such as an intermittent resumption of the turbulence the fluid of ions as magnetic fluctuations reach the ion - neutral decoupling scale , are important for radio scintillations .
we note , that irrespectively of the density fluctuations arising from compressions by magnetic fields , the viscosity - damped turbulence produces current sheets with length determined by the size of the eddies at the viscous damping scale @xmath9 .
if we assume that the thickness of the resulting current sheets is determined by the sweet - parker ( henceforth sp ) reconnection condition ( see parker 1979 ) and therefore is @xmath18 , where @xmath19 is the lunquist number for a scale @xmath9 , i.e. @xmath20 , where @xmath21 is the alfven velocity . in the sp reconnection the magnetic pressure changes across the current sheet by @xmath22 , which entails the corresponding variation of density @xmath23 .
thus for favorable observing geometry the current layer induces the maximal variation of observed column density at the scale of @xmath24 which is @xmath25 .
this value is a factor of @xmath26 larger than the column density of an eddy at a scale created at the scale @xmath24 , provided that the compression is due to @xmath27 , which cascading proceeds according to the kolmogorov law .
assume , for the sake of simplicity , that at the injection scale the injection velocity is equal to @xmath21 .
this is the situation for which the goldreich - sridhar ( 1995 ) model of mhd turbulence has been formulated originally . in some situations the discussion of a more general case is essential
( see lazarian 2006 ) , but this goes beyond the scope of this short communication . in terms of the magnetic prandtl number the amplification of density perturbations at a scale @xmath24 is of the order @xmath28 .
if , following goldreich & sridhar ( 2006 , henceforth gs06 ) , we use for plasma @xmath29 , then an eddy at scale @xmath24 can provide a density contrast that is @xmath30 times larger than the kolmogorov prediction .
recently gs06 attempted to explain the extreme radio - wave scattering in the direction of the galactic center assuming plasma can be described with high @xmath2 number and the folded fields in the spirit of sctmm are present along the line of sight .
they do not appeal directly to the sp reconnection process , but the arguments about the current sheets there implicitly assume that the sp - type reconnection .
as the result , their estimates of the variation of the column density can be obtained from ours assuming that @xmath31 for the folded fields model .
compared to the gs06 the model in the paper is applicable to the situations when strong mean magnetic field is present .
if attempting to explain the extreme scattering events with viscosity - damped turbulence model , one could use the corresponding estimates in gs06 , modifying the column density fluctuation as discussed above . in the highly viscous fluid the values of @xmath7 and @xmath9 do not differ dramatically , anyhow .
gs06 and the model above when applied to plasmas share the same set of problems .
as gs06 admitted , the sctmm folded field structure could unwind rapidly due to the low kinematic viscosity in directions perpendicular to the magnetic field . in view of this , the formation of the sins in partially ionized gas ( e.g. hi ) could be seen as a safer bet .
another potential difficulty shared by both models is related to using sp model of current sheets for both the folded fields and the viscosity damped turbulence .
usually , one would expect that the reconnection happens faster , opening up the reconnection layers ( see shay et al .
2001 for collisionless reconnection and lazarian & vishniac 1999 for stochastic reconnection ) .
however , the conditions for the field wandering and the outflows within both the viscosity damped turbulence at scales less than @xmath9 ( see lvc04 ) and the folded field dynamo ( see sltmm ) differ from the usual formulation of the reconnection problem .
further research should clarify what what is going on in such situations .
potentially , compression in current sheets looks as an attractive solution of the sins phenomenon .
cho , j. & lazarian , a. 2003 , _ mnras _ , * 345 * , 325 cho , j. , lazarian , a. & vishniac , e. 2002 , apj , 566 , l49 cho , j. , lazarian , a. & vishniac , e. 2003 , apj , 595 , 812 goldreich , p. & sridhar , s. 1995 , apj , 438 , 763 goldreich , p. & sridhar , s. 2006 , apj , 640 , l159 heiles , c. 1997 , apj , 481 , 193 lazarian , a. 2006 , apj , 645 , l25 lazarian , a. & vishniac , e. 1999 , apj , 517 , 700 lazarian , a. , vishniac , e. , & cho , j. 2004 , apj , 603 , 180 parker , e. 1979 , cosmical magnetic fields , oxford : clarendon schekochihin , a. , cowley , s. , taylor , s. , maron , j. , & mcwilliams , j. 2004 , apj , 612 , 276 shay , m. , drake , j. , rogers , b , & denton , r. 2001 , j. geophys .
, 103 , 9165
|
turbulence cascade energy from large injection to dissipation smaller by equating turbulent energy transfer to energy damping from viscosity turbulent phenomena below scale in magnetic field consider magnetized fluid with viscosity @xmath0 larger than magnetic diffusivity @xmath1 high magnetic prantl number @xmath2 fluid partially ionized gas fluid ion - neutral decoupling lazarian vishniac & cho 2004 fully ionized plasma controversial example diffusivities different along to magnetic field lines prandtl number huge if parallel diffusivity @xmath3 fully ionized plasma as high prandtl number medium advocated in schechochihin et al 2004 sctmm turbulent cascade in fluid with isotropic @xmath1 proceeds up to scale cascading rate by eddy turnover rate @xmath5 equal to damping rate @xmath6 energy injected at scale @xmath7 injection velocity @xmath8 damping scale @xmath9 is @xmath10 @xmath11 is reylonds number @xmath12 magnetic fields at scale @xmath9 sheered by eddies at larger scalescreating magnetic structures at scales @xmath13 lvc04 ) magnetic field not passive scalar important dynamically cho lazarian vishniac ( 2002 ) reported new viscosity - damped regime turbulence incompressible mhd simulations fig . 1 unlike hydro turbulence motions stop at viscosity damping scale magnetic fluctuations protrude to smaller scales fluctuations induce small amplitude velocity fluctuations at scales @xmath13 cho lazarian 2003 ) confirmed results compressible simulations speculated small scale magnetic fluctuations compress ambient gas produce sins fig model lvc04 spectrum averaged volume magnetic fluctuations scales @xmath14 pressure within intermittent magnetic structures increases with decrease scale @xmath15 filling factor @xmath16 pressure gas confining magnetic filaments increase fluctuations density with decrease scale emerging structures filamentary occasional picks in column densities correspond to heiles ( 1987 ) model of sins @xmath17.results high compressible mhd simulations strong density fluctuations scales below hydrodynamic turbulence damped testing lvc04 model important without connection sins viscosity - damped regime ubiquitous in turbulent partially ionized gas consequences intermittent resumption turbulence fluid ions as magnetic fluctuations reach ion - neutral decoupling scale important for radio scintillations viscosity - damped turbulence produces current sheets length determined by size eddies at viscous damping scale @xmath9 thickness current sheets determined by sweet - parker sp ) reconnection condition @xmath18 @xmath19 lunquist number for scale @xmath9 @xmath20 @xmath21 alfven velocity sp reconnection magnetic pressure changes across current sheet by @xmath22 variation density @xmath23 current layer induces maximal variation column density at scale @xmath24 @xmath25 value factor @xmath26 larger than column density eddy at scale @xmath24 compression due to @xmath27 law injection scale velocity equal to @xmath21situation goldreich - sridhar 1995 ) model mhd turbulence formulated discussion general case essential see lazarian 2006 ) beyond communication magnetic prandtl number amplification density perturbations at scale @xmath24 @xmath28 goldreich & sridhar 2006 use plasma @xmath29 eddy at scale @xmath24 density contrast @xmath30 times larger than kolmogorov prediction gs06 explain extreme radio - wave scattering galactic center plasma high @xmath2 number folded fields sctmm present line sight appeal sp reconnection process arguments assume sp - type reconnection estimates variation column density obtained assuming @xmath31 for folded fields model model applicable strong mean magnetic field explain extreme scattering events with viscosity - damped turbulence model use estimates gs06 modifying column density fluctuation highly viscous fluid values of @xmath7 and @xmath9 not differ dramatically gs06 model applied to plasmas share problems sctmm folded field structure could unwind rapidly due low kinematic viscosity directions perpendicular to magnetic field formation sins in partially ionized gas) safer bet difficulty using sp model current sheets for folded fields viscosity damped turbulence reconnection faster opening layers shay et al 2001 collisionless lazarian & vishniac 1999 stochastic reconnection conditions for field wandering outflows viscosity damped turbulence less than @xmath9 folded field dynamo differ reconnection problem further research clarify compression in current sheets attractive solution sins phenomenon cho , j. lazarian , a. 2003 mnras * 345 * , 325 2002 apj , 566 , l49 2003 apj , 595 , 812 goldreich . sridhar 1995 apj , 438 , 763 2006 apj , 640 , l159 heiles 1997 481 , 193 lazarian 2006 apj , 645 , l25 1999 apj , 517 , 700 cho 2004 apj , 603 , 180 parker , e. 1979 cosmical magnetic fields oxford : clarendon schekochihin cowley s.taylor maron j mcwilliams 2004 apj 612 , 276 shay drake j rogers denton r. 2001 geophys 103 , 9165
| 0.348695
| 2,165
| 1,103
|
, Saving $0.1 in GPT-4.
|
18,927
|
expected coverage and expected length of 90% upper and lower limit and 68.27% central intervals are plotted as functions of the true signal for various values of expected background .
results for several objective priors are shown , and formulas for calculation of confidence intervals are obtained . for comparison ,
expected coverage and length of frequentist intervals constructed with the unified approach of feldman and cousins and a simple classical method are also shown .
it is assumed that the expected background is accurately known prior to performing an experiment .
the plots of expected coverage and length are provided for values of signal and background typical for particle experiments with small numbers of events . #
1#2#3 -0.5 cm # 1#2#3#4 + 0 .
cm -0.5
cm # 1#2#3 = 7.0 in -0.15 in # 1#2#3#4
|
an intense discussion of various methods for setting confidence limits has led to a number of recent publications in the particle physics community .
many such papers discuss methods for confidence interval construction in experiments with small numbers of signal events .
the outcome of such an experiment is modeled by a poisson statistic @xmath0 where @xmath1 is the conditional probability of observing @xmath2 events given the signal @xmath3 .
it is assumed in this note that the expected background @xmath4 is accurately known before performing an experiment and can be treated as constant .
expected coverage and interval length are important properties of a method . these properties were studied in refs .
@xcite , but there the discussion was mostly focused on bayesian methods with a uniform prior . in this paper
i compare expected coverage and interval length for several objective bayesian methods and the unified approach @xcite of feldman and cousins .
the expected coverage for a specific method is defined as @xmath5 where @xmath6 $ ] is the confidence interval constructed for the number of events @xmath2 with this method .
the expected length is given by @xmath7 for lower limit intervals @xmath8 the expected length is infinite , and instead of the length ( [ eq : len ] ) an expected distance from zero to the lower limit is plotted : @xmath9 coverage is mostly a frequentist concept . in a bayesian analysis one is not concerned about coverage as much as about adequately representing one s objective or subjective prior belief .
this , of course , should not prevent us from investigating properties of expected coverage for various bayesian methods .
another important question is how one should define the desired coverage . due to the discreteness of the poisson pdf ( [ eq : poiss ] ) , none of the methods provides exact coverage for all values of @xmath3 . in a frequentist approach one typically requires at least minimal coverage for every value of the true signal @xmath3 , and thus frequentist intervals overcover on the average .
this overcoverage is not an intrinsic feature of the frequentist interval construction but merely a consequence of the empirical conservatism that many physicists find desirable .
statistics literature has examples of consistent frequentist methods @xcite that lack this minimal coverage property .
one can argue that a method that gives the requested mean coverage should be preferred over the one that always overcovers .
no matter what the solution to this problem is , further discussion of this issue is beyond the scope of this paper . while confidence intervals and the expected coverage are invariant under metric transformation , the expected length and mean coverage are not .
a transformation of metric , of course , involves a corresponding jacobian transformation of the prior density in a bayesian approach .
for example , if the confidence interval for @xmath3 is @xmath6 $ ] , then a confidence interval for the quantity @xmath10 is obtained by a simple inversion : @xmath11 $ ] , and the expected coverage has the same functional dependence upon signal @xmath3 .
but the expected interval length and mean coverage apparently change due to the choice of a new metric .
in a bayesian approach one has to assume a prior probability density function @xmath12 for unknown signal and then obtain a posterior pdf @xmath13 a confidence interval @xmath14 $ ] is then found by solving equations @xmath15 for @xmath16 and @xmath17 . here , @xmath18 and @xmath19 are the probabilities of the left and right tails of the posterior pdf , respectively , and @xmath20 is the confidence level of the constructed interval @xmath14 $ ] .
for example , to compute a 90% upper limit , one should put @xmath21 and @xmath22 ; for a 90% lower limit these values are @xmath23 and @xmath24 ; and to obtain a 68.27% central interval , one should use @xmath25 . in particle physics
it has been customary to choose a `` non - informative '' or `` objective '' prior @xmath12 , i.e. , a prior that claims absence of any knowledge about the true signal @xmath3 .
the three most popular candidates for an objective prior in a measurement without background are a flat pdf @xcite , jeffreys prior @xmath10 @xcite and the @xmath26 prior @xcite . the last two were derived from first principles , and the motivation for a flat prior is merely that it is `` obvious '' .
if non - zero background is expected , one can apply the same first principles and obtain @xmath27 and @xmath28 for the two derived prior pdf s , respectively .
one can also argue @xcite that the @xmath26 prior should be used even if non - zero background is expected because our prior knowledge of background should not affect our prior ignorance about signal .
the latter argument can be applied to the @xmath10 prior as well , but this prior gives a divergent posterior pdf for non - zero background @xmath29 and is therefore unacceptable .
the discussion below is confined to these four prior pdf s : flat , @xmath27 , @xmath26 and @xmath28 . for a prior distribution @xmath30
the posterior pdf is given by @xmath31 and the confidence interval can be computed using @xmath32 where @xmath33 is an incomplete gamma - function , and @xmath34 is the standard gamma - function . for a prior distribution @xmath35
a similar derivation leads to the posterior pdf @xmath36 the confidence interval is then given by @xmath37 at @xmath38 ( flat prior ) or @xmath39 ( no background ) the posterior distributions ( [ eq : post1 ] ) and ( [ eq : post2 ] ) are , of course , identical .
the posterior pdf ( [ eq : post2 ] ) is divergent at @xmath40 ( jeffreys prior ) and @xmath41 ( no events observed ) .
i assume that this is equivalent to producing an interval of zero length and set @xmath42 in eqn .
( [ eq : cov ] ) to zero .
for comparison , expected coverage and length of confidence intervals constructed with the unified approach @xcite of feldman and cousins and a simple classical method are also plotted .
the simple classical approach , to which i will refer below as `` standard '' , assumes a confidence interval of the form @xmath43 $ ] for upper limit calculation and that of the form @xmath8 for a lower limit .
rules for construction of frequentist confidence belts are outlined in a famous paper @xcite by neyman .
the confidence belt @xmath44 $ ] for the standard classical method is given by @xmath45 here , the same convention as in the previous section is used for @xmath18 and @xmath19 , e.g. , to compute a 90% upper limit , one should put @xmath21 and @xmath22 etc .
this belt is then used to construct a confidence interval @xmath6 $ ] for a specific number of events @xmath2 in accordance with ref .
expected coverage and interval length for the four objective priors and two frequentist methods are plotted versus true signal in the range @xmath46 with a step @xmath47 for 4 different values of expected background @xmath48 .
the plots are shown in figs . 1 - 12 .
the expected length was computed by summing terms in eqn .
( [ eq : len ] ) from 0 to 100 which was enough to achieve a good accuracy for the chosen values of @xmath3 and @xmath4 .
both frequentist methods produce intervals of at least minimal coverage because this conservative requirement was used in construction of their confidence belts . without background the bayesian method with a flat prior and the standard classical procedure give identical upper limit values , and
this is also true for the bayesian with jeffreys prior and the standard classical methods in case of lower limits . at any background the bayesian method with a flat prior
provides at least minimal coverage for upper limit intervals and undercovers for lower limits , and this is reversed for jeffreys prior .
none of the bayesian procedures provides minimal coverage for all values of the true signal and for all types of confidence intervals . in terms of coverage ,
the @xmath28 prior is the most versatile choice among the bayesian methods .
it provides a reasonable mean coverage for all types of confidence intervals while the @xmath26 prior tends to undercover for upper limits and overcover for lower limits . for central intervals
the expected coverage of all bayesian methods oscillates about the required confidence level .
the bayesian method with a flat prior always gives longer central and upper limit intervals than that with the @xmath28 prior , and intervals produced with this prior are in turn longer than those obtained with jeffreys @xmath27 prior .
the @xmath26 prior produces short intervals at small signal values but , as the signal increases , these intervals become longer than those produced by the @xmath28 and @xmath27 priors .
expected lengths for all bayesian methods approach each other asymptotically as the signal increases .
the unified approach produces short 90% intervals at large signal values , but one should keep in mind that here the expected length of a two - sided unified interval is plotted as opposed to lengths of one - sided intervals for all other methods .
thanks to robert cousins for useful discussion and reading the draft of this paper . thanks to jim berger for useful comments .
999 v. innocente and l. lista , _ nucl .
instr . and meth .
_ * a 340 * ( 1994 ) 396 .
o. helene , _ phys .
rev . _ * d 60 * ( 1999 ) 037901 .
g. zech , _ confronting classical and bayesian confidence limits to examples _ , hep - ex/0004011 .
feldman and r.d .
cousins , _ phys .
rev . _ * d 57 * ( 1998 ) 3873 .
wilson , _ j. of the amer .
_ * 22 * ( 1927 ) 209 .
a. agresti and b.a .
coull , _ the amer . statistician _ * 52 * ( 1998 ) 119 .
t. bayes , _ facsimiles of two papers by bayes _ ( hafner publ .
co. , 1963 ) .
laplace , _ philosophical essay on probabilities _
( dover publications , 1951 ) . o. helene , _ nucl . instr . and meth .
_ * 212 * ( 1983 ) 319 .
h. jeffreys , _ theory of probability _
, oxford at clarendon , 1961 ) .
h. jeffreys , _ proc . of the royal soc . of london
_ * a 196 * ( 1946 ) 453 .
jaynes , _ ieee trans . on systems
_ * ssc-4 , 3 * ( 1968 ) 227 . g.e.p .
box and g.c .
tiao , _ bayesian inference in statistical analysis _
( wiley classics , 1992 ) .
j. linnemann , talk at the workshop on confidence limits , fermilab , march 2000 ; http://conferences.fnal.gov/cl2k/ j. neyman , _ philos .
trans . of the royal soc . of london
_ * a 236 * ( 1937 ) 333 .
|
discussion confidence limits led to recent publications in particle physics papers discuss confidence interval construction in experiments small signal events outcome experiment modeled by poisson statistic @xmath0 @xmath1 conditional probability of observing @xmath2 events signal @xmath3 expected background @xmath4 known before experiment treated as constant expected coverage interval length important properties method studied in @xcite on bayesian methods uniform prior paper compare expected coverage interval length for objective bayesian methods unified approach @xcite of feldman and cousins expected coverage for method defined as @xmath5 @xmath6 confidence interval for number events @xmath2 expected length given by @xmath7 for lower limit intervals @xmath8 infinite distance from zero to lower limit plotted @xmath9 coverage frequentist concept bayesian analysis not concerned about coverage representing objective prior belief prevent investigating expected coverage for bayesian methods question desired coverage due to discreteness poisson pdf none exact coverage for all values @xmath3 frequentist approach requires minimal coverage for every value signal @xmath3 frequentist intervals overcover on average overcoverage not intrinsic feature frequentist interval construction consequence of empirical conservatismstatistics literature consistent frequentist methods lack minimal coverage property method requested mean coverage over discussion beyond scope paper confidence intervals expected coverage invariant under metric transformation expected length mean coverage not transformation metric involves jacobian transformation of prior density bayesian approach confidence interval for @xmath3 @xmath6 $ confidence interval quantity @xmath10 obtained by inversion @xmath11 $ expected coverage signal @xmath3 expected interval length mean coverage change due to new metric bayesian approach assume prior probability density function @xmath12 for unknown signal obtain posterior pdf @xmath13 confidence interval @xmath14 $ found by solving equations @xmath15 for @xmath16 @xmath17 @xmath18 @xmath19 are probabilities of tails posterior pdf @xmath20 confidence level of constructed interval @xmath14 compute 90% upper limit put @xmath21 @xmath22 90% lower limit @xmath23 @xmath24 68.27% central interval use @xmath25 in particle physics customary to choose non - informative prior @xmath12 knowledge about true signal @xmath3three popular candidates for objective prior background flat pdf jeffreys prior @xmath10 @xmath26 prior last two derived from first principles motivation for flat obvious if non - zero background expected apply first principles obtain @xmath27 @xmath28 for pdf @xmath26 prior used if non - zero background expected prior knowledge background affect ignorance signal to @xmath10 prior gives divergent posterior pdf for non - zero background unacceptable discussion confined to four prior pdf flat @xmath27 @xmath26 @xmath28 for prior distribution @xmath30 posterior pdf given by @xmath31 confidence interval computed using @xmath32 @xmath33 incomplete gamma - function standard gamma - function prior distribution @xmath35 similar derivation leads to posterior pdf @xmath36 confidence interval given by @xmath37 @xmath38 flat @xmath39 no background posterior distributions identical posterior pdf divergent at @xmath40 jeffreys @xmath41 no events equivalent to producing interval zero length set @xmath42 to zero expected coverage length of confidence intervals constructed with unified approach @xcite feldman and cousins simple classical method plottedclassical approach standard assumes confidence interval @xmath43 for upper limit @xmath8 lower limit rules for frequentist confidence belts outlined in paper @xcite by neyman confidence belt @xmath44 for standard classical method given by @xmath45 same convention used for @xmath18 @xmath19 compute 90% upper limit put @xmath21 @xmath22 belt confidence interval @xmath6 for specific events @xmath2 expected coverage interval length for four objective priors two frequentist methods plotted versus true signal in range @xmath46 step @xmath47 for 4 values background @xmath48 plots shown in figs . 1 - 12 expected length computed by summing terms in eqn from 0 to 100 good accuracy for values @xmath3 @xmath4 frequentist methods produce minimal coverage requirement confidence belts bayesian method flat prior standard classical procedure give identical upper limit values lower limits bayesian method flat prior provides minimal coverage for upper limit intervals undercovers for lower limits reversed for jeffreys prior minimal coverage for all values true signal all confidence intervals @xmath28 prior most versatile among methodsprovides mean coverage confidence intervals @xmath26 prior undercover upper overcover lower limits central intervals expected coverage bayesian methods oscillates required confidence level bayesian method flat prior gives longer central upper limit intervals @xmath28 prior intervals longer than jeffreys @xmath27 prior @xmath26 prior produces short intervals small signal values signal increases intervals longer @xmath28 @xmath27 priors expected lengths bayesian methods approach as signal increases unified approach produces short 90% intervals large signal values expected length two - sided unified interval plotted opposed one - sided intervals thanks robert cousins discussion draft thanks jim berger comments innocente l lista nucl instr 340 ( 1994 ) 396 helene phys . rev . 60 ( 1999 ) 037901 zech confronting classical bayesian confidence limits examples -/0004011 feldman cousins phys . rev. 57 ( 1998 ) 3873 wilson amer ( 1927 ) 209 agresti coull statistician 52 ( 1998 ) 119 bayes facsimiles two papers bayes hafner publ 1963laplace essay probabilities dover publications 1951 helene nucl . instr . meth 212 1983 ) 319 jeffreys theory probability oxford clarendon 1961 jeffreys royal soc . london 196 1946 ) 453 jaynes trans systems ssc-4 3 1968 ) 227 box tiao bayesian inference statistical analysis wiley classics 1992 linnemann talk workshop confidence limits fermilab march 2000 http://conferences.fnal.gov/cl2k neyman philos . trans . royal soc london 236 1937 ) 333
| 0.352006
| 2,496
| 1,286
|
, Saving $0.1 in GPT-4.
|
18,935
|
wolf - rayet stars are the evolved descendents of massive stars .
their extraordinary properties make them useful tracers of the stellar initial mass function ( imf ) in a young stellar population .
i discuss how the interpretation of spectral diagnostics are complicated by the interplay of stellar , nebular , and dust properties .
there is mounting observational evidence for spatial inhomogeneities in the gas and dust distribution .
the interplay of these inhomogeneities can significantly alter frequently used star - formation and imf indicators .
specific examples presented in this contribution are the starburst galaxies ngc 1614 , ngc 2798 , and ngc 3125 .
|
star formation in powerful starbursts is an ubiquitous phenomenon both locally and at the highest observable redshifts .
a prominent subset of the starburst class are the so - called wolf - rayet ( ) galaxies , whose observational characteristic is the broad emission bump around 4640 4690 ( conti 1991 ) .
the compilation by schaerer et al .
( 1999 ) lists 139 members .
w - r galaxies are important because they permit a study of the star - formation properties via _ stellar _ spectral features , as opposed to indirect tracers based on gas and/or dust emission .
hot stars are notoriously elusive even in the strongest starbursts because their spectral signatures are too weak , coincide with nebular emission lines , or are in the satellite - ultraviolet ( uv ) .
w - r stars are the only hot , massive stellar species detectable at optical wavelengths .
this is because they have the strongest stellar winds , which in combination with their high temperatures produce broad ( @xmath01000 km s@xmath1 ) emission lines not coinciding with emission from h ii regions .
examples are n iii @xmath24640 , c iii @xmath24650 , he ii @xmath3 and @xmath24686 , c iii @xmath25696 , and c iv @xmath25808 .
the mere detection of such features proves the presence of stars with masses above 40 60 m@xmath4 ( depending on chemical composition ) since only stars this massive can evolve into the w - r phase .
this powerful diagnostic can be used for , e.g. , inferring a massive star population when the space - uv is inaccessible due to dust ( infrared [ ir]-luminous galaxies ) , or when broad nebular lines veil the o stars ( seyfert2 galaxies ) .
vice versa , the relative strength of the various w - r features gives clues on the distribution of w - r subtypes , which in turn provides much sought constraints on stellar evolution theory .
we are currently involved in an optical+near - ir survey of luminous starburst galaxies ( leo , leitherer , & bresolin , in prep . ) .
our goals are ( i ) to establish an unbiased sample of metal - rich w - r galaxies , ( ii ) to investigate the stellar content from purely stellar tracers , ( iii ) to cross - calibrate stellar and nebular diagnostics in metal - rich galaxies , ( iv ) to correlate the derived stellar initial mass function with host galaxy parameters , and ( v ) to test stellar evolution theory in high - metallicity environments .
our new survey of starburst galaxies is drawn from an iras sample of lehnert & heckman ( 1995 ) .
the galaxies have @xmath5l@xmath6 , warm ir colors , and are not agn dominated .
detection of the w - r features , together with other standard diagnostics allows us to probe the stellar content with a suite of models we have developed ( leitherer et al .
in particular , we can search for or against evidence of a peculiar imf at high metallicity , as indicated , e.g. , by ir observations .
thornley et al . ( 2000 ) carried out an iso spectroscopic survey of 27 starburst galaxies with a range of luminosities from @xmath7 to @xmath8 l@xmath4 .
the [ ne iii ] 15.6 @xmath9 m and [ ne ii ] 12.8 @xmath9 m lines are particularly useful .
the ionization potentials of neutral and ionized ne are 22 and 41 ev , respectively , the two lines are very close in wavelength ( 12.8 and 15.6 @xmath9 m ) , and they have similar critical densities .
this makes the line ratio a sensitive probe for various star formation parameters , in particular the upper mass cutoff of the imf ( @xmath10 ) and the age and duration of the starburst .
photoionization models of thornley et al . and
rigby & rieke ( 2004 ) suggest that stars more massive than about 35 to 40 m@xmath4 are deficient in the observed sample .
either they never formed because of a peculiar imf , or they have already disappeared due to aging effects .
this result echos that obtained from ground - based near - ir spectroscopy : the strategic recombination lines are powered by a soft radiation field originating from stars less massive than @xmath040 m@xmath4 ( doyon et al . 1992 ) . an upper - mass cutoff as low as 40 m@xmath4 , however , is difficult to reconcile with the ubiquitous evidence of very massive stars with masses of up to 100 m@xmath4 in many starburst regions ( e.g. , leitherer et al .
1996 ; massey & hunter 1998 ; gonzlez delgado et al .
therefore the alternative explanation , an aged starburst seems more plausible . under this assumption , stars of masses 50
100 m@xmath4 are initially formed in most galaxies , but the starbursts are observed at an epoch when these stars are no longer present .
this implies that the inferred burst durations must be less than a few myr .
such short burst time scales are surprising , in particular for luminous , starburst galaxies whose dynamical time scales can exceed tens of myr . both the peculiar imf or the short starburst time scales in dusty ,
ir - bright starbursts are quite unexpected and pose a challenge to conventional models in which the starburst is fed by gas inflow to the nucleus over tens of myr as a result of angular momentum loss .
early results from our w - r survey urge caution when relating nebular imf tracers to the actual stellar content .
several metal - rich starburst galaxies exhibiting a soft radiation field do in fact have a substantial population . as an example , we reproduce in figs . 1 and 2 portions of keck lris spectra around 4650 of ngc 1614 and ngc 2798 , two archetypal starburst galaxies with low nebular excitation .
we clearly detect the tell - tale signatures of w - r stars in these galaxies .
unless stellar evolution proceeds differently than in our galaxy , massive o stars must be present as well .
the fact that we do not _ directly _ observe these o stars is no contradiction : their spectral lines will be hidden by coinciding nebular emission lines .
we should , however , detect their ionizing radiation in a proportion predicted by the measured number of w - r stars and the expected ratio of w - r / o stars .
the deficit of radiation suggests that indirect star - formation tracers , like nebular lines , still require careful calibration , in particular when applied to dusty , metal - rich starbursts .
after advocating the use of w - r stars to constrain the imf , we will present a cautionary view point in the next section .
interpretation of the stellar w - r feature may sometimes be complicated by the inhomogeneous structure of the surrounding interstellar medium ( ism ) .
as part of a larger project to quantify the stellar and interstellar properties of local galaxies undergoing active star formation ( chandar et al . , in prep .
) , we have obtained hst space telescope imaging spectrograph ( stis ) long - slit far- and near - uv spectra for 15 local starburst galaxies .
the target galaxies were selected to cover a broad range of morphologies , chemical composition , and luminosity .
most importantly , target selection was not based on w - r content .
the uv counterpart of the optical he ii @xmath24686 line is the 3 @xmath11 2 transition of he@xmath12 at 1640 .
broad he ii @xmath21640 emission is seen in the uv spectra of individual galactic and magellanic cloud w - r _ stars _
( e.g. , conti & morris 1990 ) but is not prevalent in the integrated spectra of _ galaxies _ because of the overwhelming light contribution from ob stars in the uv .
we observe two different line morphologies of he ii @xmath21640 emission in local starburst galaxies .
some galaxies show narrow , nebular he ii emission , while others have a broader profile .
if massive stars are forming , he ii @xmath21640 can sometimes appear as a nebular recombination emission line ( e.g. , garnett et al .
1991 ) , which has a characteristic narrow - line morphology . in the following
we will focus on one outstanding starburst region in our sample : ngc 3125 - 1 .
the measured he ii fwhm of @xmath13 is clearly broader than the estimated instrumental profile of 2.6 .
the corrected width of the he ii @xmath21640 line is 1000 km s@xmath1 .
similar line widths are typically found in the latest subtypes of individual wn stars .
ngc 3125 - 1 has by far the largest he ii @xmath21640 equivalent width in our sample . in fig .
3 we show the uv spectrum of this object .
the 1640 emission is quite prominent and appears significantly stronger than the c iv emission at 1550 .
in addition to this feature , we also see n iv @xmath21488 and n iv @xmath21720 emission typically found in stars , consistent with our interpretation that the strong he ii @xmath21640 emission arises in the winds of massive stars .
we estimate that 6100 wnl stars reside in this starburst region , making it the most w - r - rich known example of an individual starburst cluster in the local universe .
what makes this region extraordinary is the number of w - r stars relative to other massive stars .
the w - r features in fig
. 3 are almost undiluted compared with those seen in single w - r stars .
therefore , most of the continuum light must be emitted by the very same w - r stars .
quantitative modeling leads to approximately equal w - r and o - star numbers .
such an extreme ratio is excluded by stellar evolution models , even for a most unusual imf .
how can we reconcile these observations with our current understanding of w - r stars ?
the uv continuum slope is normally dominated by ob stars ; however , in this case the large number of w - r stars also makes a significant contribution .
one possible explanation is that we are seeing the w - r stars through a `` hole '' where their energetic winds have blown out the natal cocoon earlier than have the ob stars .
the often large reddening derived in starburst regions is consistent with the generally accepted scenario in which very young clusters remain embedded in their natal material until energetic stellar winds from evolving massive stars blow out the surrounding gas and dust .
if w - r stars are preferentially less attenuated than ob stars in ngc 3125 - 1 , the _ equivalent width _ of he ii @xmath21640 and other w - r lines is skewed towards artificially large values because for a standard stellar population surrounded by a homogeneous ism , the continuum is emitted by the less massive ob stars .
if the ism is inhomogeneous , a textbook property of a spectral line associated with a single star changes : the equivalent width becomes reddening dependent .
determining the massive - star imf in starburst regions often relies on indirect methods , such as the recombination luminosity of the ionized gas . while this technique has been demonstrated to be quite reliable in normal galaxies ( kewley et al .
2002 ) , it may break down in extreme cases .
the conditions prevailing in dusty , metal - rich starbursts may lead to a decoupling of the emitted ionizing and the observed recombination luminosity .
the reasons are still not fully understood but may be related to a combination of the destruction of photons by dust and the spatial morphology of the dust .
the latter effect is particularly relevant in powerful starbursts where supernovae and stellar winds can have large effects on the ism .
starburst models as well as observations of galactic superwinds indicate that 1% to 2% of the bolometric luminosity of starbursts is converted into mechanical luminosity .
this mechanical energy input can remove interstellar gas from the star - formation site on a time scale much shorter than the gas consumption time scale , which can be hundreds of myr .
the resulting ism structure invalidates the often made assumption of isotropy and homogeneity . as a result
, imf indicators can mimic anomalous stellar populations . in some cases , even purely stellar indicators may change .
if different stellar phases are associated with different dust columns , the stellar equivalent widths in the integrated population spectrum may probe dust morphologies , rather than the imf .
|
star formation in starbursts ubiquitous locally at highest redshifts prominent class are wolf - rayet galaxies broad emission bump around 4640 4690 1991 compilation by schaerer et al 1999 lists 139 members w - r galaxies important permit study star - formation via stellar spectral features indirect tracers gas dust emission hot stars elusive in strongest starbursts spectral signatures weak with nebular emission lines in satellite - ultraviolet uv w - r stars only hot massive stellar species detectable at optical wavelengths strongest stellar winds high temperatures produce broad emission lines not coinciding with emission from h ii regions examples are @xmath24640 detection of features proves stars with masses above 40 60 m@xmath4 stars can evolve into w - r phase diagnostic used for inferring massive star population when space - uv inaccessible due to dust broad nebular lines veil starsstrength of w - r features distribution subtypes constraints on stellar evolution theory involved in optical+near - ir survey of luminous starburst galaxies goals establish unbiased sample metal - rich w - r galaxies investigate stellar content from cross - calibrate stellar nebular diagnostics correlate stellar initial mass function with host galaxy parameters test stellar evolution theory in high - metallicity environments new survey from iras sample of lehnert & heckman ( 1995 galaxies have @xmath5l@xmath6 warm ir colors not agn dominated detection of w - r features standard diagnostics probe stellar content with models search for evidence peculiar imf at high metallicity thornley et al . 2000 iso spectroscopic survey of 27 starburst galaxies luminosities from @xmath7 to @xmath8 l@xmath4 ne 15.6 @xmath9 and 12.8 @xmath9 m lines useful ionization potentials of neutral and ionized ne are 22 and 41 ev lines close in wavelength similar critical densitiesline ratio sensitive for star formation parameters upper mass cutoff imf ( @xmath10 ) age duration starburst photoionization models thornley rigby & rieke 2004 suggest stars more massive than 35 to 40 m@xmath4 deficient in sample never formed or disappeared due to aging result echos near - ir spectroscopy strategic recombination lines powered by soft radiation from stars less massive than @xmath040 m@xmath4 doyon upper - mass cutoff low as 40 m@xmath4 difficult to with evidence massive stars up to 100 m@xmath4 in starburst regions alternative aged starburst plausible stars of masses 50 100 m@xmath4 initially formed in most galaxies starbursts observed when stars no longer present implies inferred burst durations less than few myr short burst time scales surprising for luminous starburst galaxies peculiar imf short starburst time scales in dusty ir - bright starbursts unexpected challenge to conventional models gas inflow results w - r survey urge caution relating nebular imf tracers to stellar contentmetal - rich starburst galaxies soft radiation have substantial population reproduce in figs 1 2 keck lris spectra around ngc 1614 and ngc 2798 starburst galaxies with low nebular excitation detect signatures w - r stars in galaxies massive o stars must present o stars spectral lines hidden by nebular emission lines detect ionizing radiation predicted by w - r stars expected ratio w - r / o stars deficit of radiation suggests indirect star - formation tracers require calibration dusty metal - rich starbursts advocating w - r stars to constrain imf cautionary view point next interpretation stellar w - r feature complicated by inhomogeneous structure interstellar medium project stellar interstellar properties of local galaxies active star formation obtained hst space telescope imaging uv spectra for 15 local starburst galaxies target galaxies morphologies chemical composition luminosity target selection not based on w - r content uv counterpart of optical he ii @xmath24686 line is 3 @xmath11 2 transition of he@xmath12 at 1640 he ii @xmath21640 emission seen in uv spectra galactic magellanic cloud w - stars not prevalent in integrated spectra galaxies overwhelming light from ob stars two line morphologies emission in local starburst galaxies some galaxies show narrow nebular ii emission others broader profile massive stars forming as nebular recombination emission line narrow - line morphology on starburst region ngc 3125 - 1 measured he ii fwhm broader than estimated instrumental profile 2.6 corrected width he ii @xmath21640 line 1000 km s@xmath1 similar line widths in latest subtypes wn stars ngc 3125 - 1 largest he ii @xmath21640 equivalent width fig . 3 uv spectrum 1640 emission prominent stronger than c iv emission at 1550 n iv @xmath21488 n iv @xmath21720 emission found in stars emission massive stars 6100 wnl stars in starburst region most w - r - rich starburst cluster region extraordinary number of w - r stars relative to massive starsw - r features in fig . 3 undiluted single w - r stars continuum light emitted by w - r stars modeling leads equal w - r o - star numbers extreme ratio excluded by stellar evolution models observations with understanding w - r stars ? uv continuum slope dominated by ob stars large number w - r stars significant contribution w - r stars through hole energetic winds blown out natal cocoon earlier large reddening in starburst regions consistent with young clusters embedded in natal material until winds from stars blow out gas dust if w - r stars less attenuated than ob stars in ngc 3125 - 1 equivalent width of w - r lines skewed towards large values continuum emitted by less massive ob stars if ism inhomogeneous changes equivalent width becomes reddening dependent determining massive - star imf in starburst regions relies on indirect methods recombination luminosity ionized gas technique reliable in normal galaxies may break down in extreme cases dusty metal - rich starbursts decoupling ionizing recombination luminosityreasons not understood related to destruction of photons by dust spatial morphology relevant in starbursts supernovae stellar winds ism starburst models observations galactic superwinds indicate 1% to 2% bolometric luminosity converted into mechanical luminosity mechanical energy interstellar gas from star - formation site shorter than gas consumption hundreds of myr ism structure invalidates isotropy homogeneity imf indicators mimic anomalous stellar populations stellar indicators may change different stellar phases with different dust columns stellar equivalent widths in may probe dust morphologies
| 0.430633
| 2,771
| 1,345
|
, Saving $0.1 in GPT-4.
|
18,941
|
face recognition systems must be robust to the variation of various factors such as facial expression , illumination , head pose and aging . especially , the robustness against illumination variation is one of the most important problems to be solved for the practical use of face recognition systems .
gabor wavelet is widely used in face detection and recognition because it gives the possibility to simulate the function of human visual system . in this paper , we propose a method for extracting gabor wavelet features which is stable under the variation of local illumination and show experiment results demonstrating its effectiveness .
|
image - based face recognition systems can be categorized into two categories , that is , holistic based recognition system and feature - based recognition system [ 1 - 2 ] . in this section ,
we consider previous works which were proposed to suppress the influence of illumination variation in feature - based face recognition . face recognition based on the local information such as gabor wavelet features in feature points has advantage that recognition is not sensitive to the variation of head pose or illumination , compared to the holistic based recognition such as eigenfaces , fisherfaces , ica(independent component analysis ) and hmm(hidden markov model ) [ 4 - 7 ] .
different models and methods were proposed to support local feature - based face recognition , such as aam(active appearance model ) , lbp(local binary pattern ) and ebgm(elastic bunch graph matching ) [ 8 - 18 ] .
aam is a geometrical and statistical model of face image , which is obtained by applying pca or lda to feature vectors consisting of coordinate and gray level intensity of feature points .
lbp is a method to represent face image using binary vectors corresponding to each pixel , which are constructed by comparing pixel value of each pixel enclosing a pixel with the value of center pixel .
many training data and time are needed to construct aam or lbp - based classifier .
ebgm is a matching method using gabor wavelet features extracted from the face graph reflecting topological structure of human faces , where face graph is constructed by connecting landmarks ( node ) of face with edges [ 14 ] .
each node of face graph has 40-dimensional gabor wavelet coefficient vector corresponding to 5 frequencies and 8 directions .
ebgm - based face recognition has drawback that estimation of landmarks and extraction of gabor wavelet coefficients are influenced by the illumination variation . to overcome such a weakness of ebgm
, some researchers tried to develop techniques which can decrease the effect of illumination variation by applying normalization or dct(discrete cosine transform ) to the input image [ 16 - 18 ] .
however , it is still difficult to remove the effect of local illumination variation simultaneously with global illumination , though their methods make it possible to suppress the effect of global illumination variation to a certain degree . in this paper
, we introduce a method extracting gabor wavelet features and discriminant feature points from face image , which is robust against local illumination variation and shows high recognition efficiency .
feret and yaleb are used to demonstrate the effectiveness of our methods .
in this section , we describe a method extracting gabor wavelet features from face images , which is robust against local illumination variation .
let @xmath0 be an face image , where @xmath1 .
gabor wavelet transformation of @xmath0 is defined as follows [ 14 , 16 ] .
@xmath2 here , @xmath3,\\ \end{array}\ ] ] @xmath4 @xmath5 @xmath6 the second term in the integral of @xmath7 makes the kernel dc - free , that is , @xmath8 .
the vector consisting of coefficients of gabor wavelet transformation corresponding to each orientation and frequency for each point of face image is called jet and denoted by @xmath9 .
@xmath10 can be calculated as shown in eq.2 by considering the fact that @xmath10 only depends on the points belonging to the neighborhood @xmath11 of @xmath12 from the property of kernel function @xmath13 and the characteristics of the calculation of gabor wavelet coefficients .
@xmath14 @xmath11 is a small area compared to the input face image and therefore we can assume that gray level intensity of face image changes linearly according to the brightness and contrast of illumination in this area , i.e. , @xmath15 here , @xmath16 and @xmath17 are the average and standard deviation of gray level intensity in local area @xmath18 , and express brightness and contrast of illumination . from eq.2 and eq.3 , we can calculate @xmath19 as follows .
+ + @xmath20 + @xmath21 + @xmath22 + + @xmath23 + + here , @xmath24 and @xmath25 + @xmath26 , because the size of @xmath11 changes depending on only @xmath27 , not @xmath12 .
thus , the following equation holds .
@xmath28 we can think that @xmath29 is not influenced by the illumination variation because local illumination variation will appears only as the change of values of @xmath16 and @xmath17 . by using @xmath29 as the gabor wavelet coefficients instead of @xmath19
, we can achieve the effect of normalization of local illumination variation .
@xmath29 can be calculated as follows .
in [ 19 ] , authors proposed a method for selecting feature points using discriminant vector , but it is hard to say that it gives most discriminant points for gabor wavelet features .
linear discriminant analysis is a method to find out subspace in which the separability of classes becomes maximum , where the separability of classes is defined as the ratio of between - class variation to within - class variation [ 20 - 23 ] .
it can be considered that the points having big separability of classes are the most discriminant points when selecting feature point .
we calculate separability of classes using gabor wavelet coefficient vector @xmath31 for each point and select the points whose separability of classes are big as feature points for the extraction of jet . here , gabor wavelet coefficients only use magnitude and neglect phase component , i.e. , @xmath32 .
let @xmath33 and @xmath34 be the within - class / between - class scatter matrix by considering feature vector @xmath31 of fixed point @xmath12 as a random vector . then , the value @xmath35 of the separability of classes for each @xmath36 is calculated as follows [ 20 ] .
@xmath37 we select @xmath38 as the candidate set for feature points , where @xmath39 is a threshold .
absolute value @xmath40 of gabor wavelet coefficient does not change largely in the neighborhood of @xmath12 and thus correlation between feature vectors becomes large and value of @xmath35 becomes similar .
this implies that the points of @xmath41 are mainly placed in the neighborhoods of extreme points of the function @xmath42 . to increase recognition rate , however , it is important not only to select feature points having big separability of classes but also to make the correlation between feature vectors small as possible .
thus , we finally select the points from @xmath41 , which have a less correlation each other , using correlation between feature vectors and k - means clustering algorithm .
selection algorithm is describe below .
let @xmath43 , @xmath44 and @xmath45 denote the number of groups , the number of step and the maximum repeat count .
let @xmath46 be the @xmath47-th group in step @xmath44 . here , @xmath48 .
and let @xmath49be the center of @xmath47-th group in stpe @xmath44 .
+ @xmath50 : initialize parameters @xmath44 and @xmath51 as @xmath52 and @xmath53 .
@xmath54 : reassign points @xmath55 to group @xmath56 . here
, @xmath57 is decided as follows .
@xmath58 @xmath59 : if @xmath60 and there is a point @xmath61 which is reassigned , then increase @xmath44 one and recalculate @xmath49 and go to step 2 .
the center @xmath49 of group @xmath62 is calculated using the equation described below , where @xmath63 .
@xmath64 _ step4 _ : if the above condition is not satisfied , then @xmath65 is the set of feature points .
finish algorithm .
fa , fb , fc , d1 , d2 ( 3539 images ) of feret and yaleb ( 4500 face images , 10 persons ) are used for experiment .
the purpose of the experiment is to confirm that recognition performance is increased in fc under illumination variation and yaleb , but do nt decrease in fb , d1 and d2 , compared to the previous methods , when we apply the method of the paper . for the experiment , 128@xmath66128 image extracted from the image where the position of eyes are given .
the sum of similarities between jets is used as the similarity for performance estimation [ 14 ] .
table 1 shows the recognition performance according to the number of feature points , when the method of paper is applied . as we can see in the table ,
recognition performance does not increase when the number of feature points is greater than 50 .
table 2 shows the result of comparison between the method of paper and egbm in case that the number of feature points is 50 . as we can know from the table , it is possible to remove performance degradation which is caused by the incorrect extraction of feature points under serious illumination variation ( yaleb ) , if we apply the method of paper .
however , if we fix landmark , the performance is decreased in case that there is no serious illumination variation . table 3 shows recognition performances in case that we use @xmath10 and @xmath29 as wavelet feature coefficients respectively . as we can see in the table ,
normalization of the paper demonstrates high recognition performance without being affected by the illumination variation even in case that there is a change of facial expression or aging
. 4 g. shakhnarovich and b. moghaddam ; face recognition in subspace , springer - verlag , 2004 .
x. lu ; image analysis for face recognition , may , 2003 .
w. zhao , r. chellappa , p. j. phillips and a. rosenfeld ; face recognition : a literature survey , acm computing surveys , vol .
4 , december 2003 , pp .
399458 a. m. martinez and a. c. kak ; pca versus lda , ieee trans.on pami , vol.23 , no.2 , pp.228 - 233 , 2001 .
k. delac , m. grgic and s. grgic ; statistics in face recognition : analyzing probability distributions of pca , ica and lda performance results , technical report , fer - vcl - tr-2005 - 03 , university of zagreb , fer , 2005 . m. turk and a. pentland ; eigenfaces for recognition , journal of cognitive neuroscience , vol.3 , no.1 , pp.72 - 86 , 1991 .
k. delac , m. grgic and s. grgic ; generalization abilities of appearance - based subspace face recognition algorithms , technical report , fer - vcl - tr-2005 - 01 , university of zagreb , fer , 2005 c. aguerrebere , g. capdehourat , a. fernandez and f. lecumberry ; aguara : an improved face recognition algorithm through gabor filter adaptation , automatic identification advanced technologies , 2007 ieee workshop on g. j. edwards , t. f. cootes and c. j. taylor ; face recognition using active appearance models , in proc .
european conference on computer vision , vol.2 , pp.581 - 695 , 1998 . g. j. edwards , t. f. cootes and c. j. taylor ; active appearance models , ieee trans.on pami , vol.23 , no.6 , pp.681 - 685 , 2001 . t. ahonen , a. hadid and m. p. ainen ; face recognition with local binary patterns , eccv 2004 , lncs 3021 , pp .
469481 , 2004 .
d. maturana , d. mery and a. soto ; face recognition with local binary patterns , spatial pyramid histograms and naive bayes nearest neighbor classification , 2009 international conference of the chilean computer science society , pp .
125 - 132 , 2009 s. marcel , y. rodriguez and g. heusch ; on the recent use of local binary patterns for face authentication , idiap - rr 06 - 34 , international journal on image and video processing special issue on facial image processing , 2007 t. ojala , m. pietikinen , and t. menp , multiresolution gray - scale and rotation invariant texture classification with local binary patterns , ieee transactions on pattern analysis and machine intelligence , vol.24 , no.7 , pp.971 - 987 , 2002 . l. wiskott , j. fellous and c.v.d .
malsburg ; face recognition by elastic bunch graph matching , ieee trans.on pami , vol.19 , no.7 , pp.775 - 779 , 1997 . c. kotropoulos , a. tefas and i. pitas ; morphological elastic graph matching applied to frontal face authentication under well - controlled and real conditions , pattern recognition , vol.13 , no.12 , pp.1935 - 1947 , 2000
. m. sharif , a. khalid , m. raza and s. mohsin ; face recognition using gabor filters , journal of applied computer science and mathematics , no . 11 ( 5 ) 2011 , suceava w. chen , m. joo er and s. wu ; illumination compensation and normalization for robust face recognition using discrete cosine transform in logarithm domain , ieee transactions on systems , man , and cybernetics - part b : cybernetics , vol .
2 , april 2006 y. su , s. shan , x. chen and w. gao ; hierarchical ensemble of global and local classifiers for face recognition , ieee transactions on image processing , vol 18 issue 8 , pp .
1885 - 1896 , 2009 y. pang , l. zhang , m. li , z. liu and w. ma ; a novel gabor - lda based face recognition method , pcm 1 , vol .
3331 springer ( 2004 ) , p. 352 - 358 .
k. fukunaga ; introduction to statistical pattern recognition , academic press , 1990 .
andrew r. webb ; statistical pattern recognition , 2002 .
m. dekker ; pattern recognition and image preprocessing , 2002 .
s. theodoridis and k. koutroumbas ; pattern recognition , second edition 2003 p. j. phillips , h. moon s. a. rizvi and p. j. rauss ;
the feret evaluation methodology for face - recognition algorithms , ieee trans.on pami , vol.22 , no.10 , pp.1090 - 1104 , 2000 .
|
image - based face recognition systems categorized holistic feature - based 1 - 2 consider previous works suppress illumination variation in feature - based face recognition face recognition based on local information gabor wavelet features not sensitive to head pose illumination compared to holistic recognition 4 - 7 different models methods proposed support local feature - based face recognition aam lbp(local binary pattern ebgm 8 - 18 aam geometrical statistical model of face image obtained by applying pca or lda to feature vectors lbp method face image using binary vectors each pixel comparing pixel value with center pixel training data time needed to construct aam or lbp - based classifier ebgm matching method using gabor wavelet features extracted from face graph reflecting structure connecting landmarks with edges 14 each node has 40-dimensional gabor wavelet coefficient vector to 5 frequencies 8 directions ebgm - based face recognition estimation landmarks extraction gabor wavelet coefficients influenced by illumination variation researchers techniques illumination variation by applying normalization or dct to input image 16 - 18 ]difficult to remove local illumination variation with global illumination methods suppress method extracting gabor wavelet features discriminant points from face image robust against local illumination variation high recognition efficiency feret yaleb demonstrate effectiveness describe method extracting gabor wavelet features from face images robust against local illumination variation @xmath0 face image @xmath1 gabor wavelet transformation defined 14 16 @xmath2 @xmath3 @xmath4 @xmath6 second term integral @xmath7 makes kernel dc - free @xmath8 vector coefficients of gabor wavelet transformation each orientation frequency called jet denoted by @xmath9 @xmath10 calculated eq.2 depends on points neighborhood @xmath11 @xmath12 from kernel function @xmath13 calculation gabor wavelet coefficients @xmath14 @xmath11 small area input face image gray level intensity changes linearly according to brightness contrast illumination @xmath15 @xmath16 @xmath17 are average standard deviation of gray level intensity in local area @xmath18 express brightness contrast of illumination eq.2.3 calculate @xmath19@xmath20 @xmath24 + @xmath26 size @xmath11 changes @xmath27 not @xmath12 equation holds @xmath28 @xmath29 not influenced by illumination variation variation change values @xmath16 @xmath17 using @xmath29 as gabor wavelet coefficients @xmath19 normalization local illumination variation @xmath29 calculated authors proposed method selecting feature points using discriminant vector hard to most discriminant points for wavelet features linear discriminant analysis separability of classes maximum ratio between - class to within - class variation points big separability classes most discriminant points feature point calculate separability classes using gabor wavelet coefficient vector @xmath31 select points separability big as feature points for extraction gabor wavelet coefficients use magnitude neglect phase component @xmath32 @xmath33 @xmath34 be within - class class scatter matrix feature vector @xmath31 fixed point @xmath12 as random vector value @xmath35 separability of classes for each @xmath36 calculated select @xmath38 as candidate set for feature points @xmath39 thresholdvalue @xmath40 gabor wavelet coefficient change neighborhood @xmath12 correlation between feature vectors large value @xmath35 similar implies points @xmath41 extreme points function @xmath42 increase recognition rate select feature points big separability classes correlation vectors small select points from @xmath41 less correlation using correlation vectors k - means clustering algorithm selection algorithm @xmath43 @xmath44 @xmath45 denote number groups number step maximum repeat count @xmath46 @xmath47-th group step @xmath44 @xmath49be center @xmath47-th group @xmath44 initialize parameters @xmath44 @xmath51 as @xmath52 @xmath53 reassign points @xmath55 to group @xmath56 @xmath57 decided if @xmath60 point @xmath61 reassigned increase @xmath44 recalculate @xmath49 step 2 center @xmath49 of group @xmath62 calculated equation @xmath63 @xmath64 if not @xmath65 set of feature points finish algorithm ( 3539 images ) feret yaleb 4500 images 10 persons ) used for experimentexperiment recognition performance increased in fc under illumination variation yaleb decrease in fb d1 d2 compared previous methods method paper 128@xmath66128 image extracted position eyes sum similarities between jets used for performance estimation table 1 shows recognition performance feature points method paper performance increase feature points greater than 50 table 2 shows comparison between method paper egbm feature points 50 possible remove performance degradation incorrect extraction feature points under serious illumination variation yaleb method paper landmark performance no serious illumination variation table 3 shows recognition performances @xmath10 @xmath29 as wavelet feature coefficients normalization paper demonstrates high recognition performance without affected illumination variation change facial expression aging g. shakhnarovich b. moghaddam ; face recognition in subspace springer - verlag 2004 x. lu image analysis for face recognition may 2003 w zhao chellappa rosenfeld face recognition literature survey acm computing surveys vol . 4 december 2003 martinez c. kak ; pca versus lda ieee trans pami vol.23 no.2 pp.228 - 233 2001 k. delac m grgic s.grgic statistics face recognition analyzing probability pca ica lda results technical report tr-2005 - 03 university zagreb 2005 turk pentland eigenfaces recognition journal cognitive neuroscience vol.3 no.1.72 - 86 1991 k delac grgic grgic generalization appearance face recognition algorithms report tr-2005 - 01 university zagreb 2005 aguerrebere capdehourat fernandez lecumberry improved face recognition algorithm gabor filter adaptation automatic identification 2007 workshop j edwards cootes taylor face recognition active appearance models european conference computer vision vol.2.581 - 1998 edwards taylor active appearance models vol.23 no.6.681 - 685 2001 t ahonen hadid ainen face recognition local binary patterns eccv 2004 3021 469481 d. maturana mery a soto face recognition local binary patterns spatial pyramid histograms nearest neighbor classification 2009 conference chilean computer science society 125 - 132 marcel rodriguezheusch local binary patterns face authentication international journal image video processing facial image processing 2007 ojala pietikinen t menp multiresolution gray - scale rotation invariant texture classification local binary patterns pattern analysis machine intelligence vol.24 no.7.971 - 987 2002 wiskott fellous malsburg face recognition elastic bunch graph matching vol.19 no.7.775 - 779 1997 kotropoulos tefas pitas elastic graph matching frontal face authentication conditions vol.13 no.12 pp.1935 - 1947 2000 sharif khalid raza mohsin face recognition gabor filters journal computer science mathematics 11 ( 5 2011 w chen joo er s wu illumination compensation normalization face recognition cosine transform logarithm domain systems cybernetics 2 april 2006 su shan chen gao hierarchical global local classifiers face recognition image processing vol 18 issue 8 1885 - 1896 2009 pang zhang li liu ma novel gabor - lda based face recognition method 1 3331 springer 2004 352 - 358fukunaga introduction statistical pattern recognition academic press 1990 andrew webb recognition 2002 dekker pattern recognition image preprocessing theodoridis koutroumbas pattern recognition second edition 2003 rizvi rauss evaluation methodology face - recognition algorithms vol.22 no.10 pp.1090 - 1104 2000
| 0.500026
| 3,226
| 1,664
|
, Saving $0.1 in GPT-4.
|
18,944
|
from its invention in 1997 , the gas electron multiplier has been applied in nuclear and high energy physics experiments . over time
however , other applications have also exploited the favorable properties of gems .
the use of gems in these applications will be explained in principle and practice .
this paper reviews applications in research , beam instrumentation and homeland security .
the detectors described measure neutral radiations such as photons , x - rays , gamma rays and neutrons , as well as all kinds of charged radiation .
this paper provides an overview of the still expanding range of possibilities of this versatile detector concept .
|
the gas electron multiplier ( gem ) has been applied in many high - energy physics experiments , particularly in the zones with the highest particle rate . but
gems have many interesting properties besides their superb rate capability .
these features have been exploited in applications in other areas of research , and also outside the scientific domain .
the natural suppression of ion backflow and photon feedback makes gems suitable for photodetectors .
a gem foil itself can support a solid photoconverter , while also acting as a gas amplification stage .
efficient and cost - effective photodetectors can thus be made with virtually unlimited size and without dead zones .
the readout pattern can be tailored to the requirements of the application in terms of spatial resolution and geometry .
the principle of using a gem foil as a substrate for a converter layer has been applied to other types of neutral radiation as well ; examples will be shown of gem - based detectors for neutrons , hard x - rays and gamma rays . for detection of x - rays or neutrons ,
the gas can be used as a converter as well .
the recent development of a spherically shaped gem eliminates parallax errors associated with this method when applied to diffraction measurements or pinhole imaging . the principle will be explained .
detection of neutral radiation such as photons and neutrons relies on a conversion mechanism that yields charges in the drift volume of the detector . in the case of photons
the conversion mechanism is normally the photoelectric effect , although for x - rays of sufficiently high energy ( @xmath0 kev ) compton scattering could also play a role . for thermal neutrons
, conversion takes place via a nuclear fission reaction with an appropriate isotope , while higher energy neutrons may cause nuclear recoils .
figure [ crosssections_x - rays ] shows interaction cross sections of a selection of converter materials for x - rays , and figure [ crosssections_neutrons ] for neutrons , both as a function of energy of the incoming particle .
apart from structures that are specific for each converter , the cross sections generally decrease with increasing energy @xmath1 . for x - rays the decrease is particularly steep : @xmath2 ( with @xmath3 and @xmath4 atomic number and mass number of the absorber ) , while for thermal neutrons ( mev range ) it is inversely proportional to their velocity , or @xmath5 . ) of the photoelectrons is also plotted . ]
how a converter of neutral radiation is implemented in a gaseous detector depends on the requirements in terms of efficiency and space , time and energy resolution .
very broadly , three approaches have emerged with the converter in solid , liquid or gaseous phase .
their respective merits and limitations , along with some examples , will be discussed below .
a gas - phase converter is often an attractive choice if the gas is also suitable as a gas amplification medium , optimally a noble gas .
the main technical challenge of using a gaseous converter is the low density compared to solid or liquid phases , and thus the low stopping power .
nevertheless , gaseous converters can potentially provide the highest detection efficiencies since no primary charge is lost in the transfer mechanism .
figures [ crosssections_x - rays ] and [ crosssections_neutrons ] show that noble gases exist with cross sections of tens or even hundreds of kilobarns , be it for the lowest energies of x - rays and neutrons .
gases like xe and @xmath6he are also very costly , mandating either a recirculation system or an ultra - high vacuum compatible sealed detector . for reasons of efficiency ,
gaseous converters are often used at high pressures or with a wide drift gap .
operation of gems at a high gas pressure can be challenging ; the maximum attainable gain tends to decrease with increasing pressure ( though less so for he ) , while the the working voltages roughly scale with the pressure.@xcite another method to reach full efficiency is shown in ref . ; a triple gem detector with a 1d ( strip ) readout , where the gems are `` lied down '' as in a time projection chamber .
this way the x - rays traverse the drift region sideways , and the detector is designed to be several attenuation lengths wide to reach the desired efficiency .
fe source.@xcite the color - scaled frame in the center reveals the attainable level of detail .
right : space - resolved 5.4 kev x - ray conversions in a ne / dme ( dimethyl ether ) 80/20% gas mixture .
the reconstruction is shown , marking the conversion point with a red cross and the direction of emission of the photoelectron with a red line.@xcite ] efficiency is not always a concern , and gem - based x - ray and neutron detectors offer high count rate capability over large areas with a good spatial resolution .
figure [ x - raygem ] ( left ) shows an absorption radiography image made with a small double gem prototype and a simple @xmath7fe x - ray source ( 5.9 kev ) . on the right side of the figure are projections of x - ray conversions in a ne / dme 80/20% gas mixture .
the images on the right are made with a fine - pitch single gem ( 90 @xmath8 m between holes ) read out by a pixel chip , each gem hole aligned with a readout pixel.@xcite by resolving the conversion events spatially one can reconstruct the direction of emission of the primary photoelectron ( indicated in the figure ) , which is related to the polarization axis of the incoming photon .
the best gaseous neutron converter is @xmath6he , with a cross section that is very large for neutron interactions and negligible for gamma interactions .
it had been used with many kinds of gaseous detectors , including gems.@xcite in contrast to the heavier noble gases used for x - ray detection , @xmath6he can be used at very high pressures with a triple gem .
another converter is @xmath9bf@xmath10 , an effective quencher and therefore not suitable for high pressures . in neutron or x - ray diffraction studies , where the radiation to be detected comes from a point - like source ( the sample ) ,
an issue arises with planar gas detectors : the parallax error .
this is the error in the position reconstruction caused by the spread in depth of conversion of x - rays or neutrons in the drift region , see figure [ spherical ] .
this problem can be somewhat alleviated by using high cross section and high pressure converters , or a specially shaped entrance window .
a spherical gem detector eliminates it entirely , since radiation always enters the detector in the same direction as the drift field .
spherical gems are difficult to fabricate,@xcite but promise the ultimate diffraction imaging performance.@xcite the most familiar solid converters are the photocathodes used since long in vacuum photomultipliers .
the photocathode used most often with gas detectors is csi,@xcite a monoalkali which is only sensitive to ultraviolet light ( @xmath11 ev ) .
it is vacuum evaporated on a clean and non - reactive substrate , in practice often gold - plated copper .
csi is much less vulnerable than bialkali photocathodes to impurities in the gas ( notably oxygen and water ) and ion feedback .
csi converters can be applied to the drift electrode ( semitransparent photocathode),@xcite or directly to the top electrode of the first gem ( reflective photocathode).@xcite the quantum efficiency of a csi photocathode in a gaseous detector is limited by backscattering of the photoelectron by gas molecules . to suppress backscattering
most csi - based detectors are operated in gas mixtures rich in ch@xmath12 ( methane)@xcite or cf@xmath12,@xcite both known to absorb kinetic energy from electrons very effectively .
csi - based gaseous photodetectors are attractive for applications that demand large area coverage with minimal dead space , such as cherenkov detectors . a notable example of this is a triple gem photodetector developed for the phenix experiment at rhic.@xcite it is operated with cf@xmath12 , which also serves as the cherenkov radiator , thus obviating the need for a vuv - transparent window and maximizing photon yield .
it also runs on a slightly reversed drift field , to suppress the otherwise severe background of charged particles traversing the detector as well .
visual range bialkali photocathodes have also been pursued with gems .
these photocathodes are chemically reactive , and can not be exposed even briefly to air ; sub - ppm level impurities of oxygen or water in the gas dramatically reduce the lifetime of the photocathode .
in addition , they are very sensitive to photon- and ion - induced secondary effects.@xcite the former issue can be alleviated by coating the photocathode with thin films ( few hundred ) of nai or csi , but such protected photocathodes have quantum efficiencies of a few percent at most.@xcite alternatively , the detector must be made ultra - high vacuum compatible by sealing and choice of materials . regarding the ion and photon feedback issues , gems have rather benign properties .
photon feedback is suppressed because the gas avalanches take place inside the narrow gem holes , and most avalanche photons are produced in the last gem of a cascade , these photons are absorbed by the gems or the readout board .
gems also suppress ion feedback by attracting ions to the various electrodes before they can flow all the way back to the photocathode ; depending on operational parameters , roughly 99% of ions are intercepted in this way .
solid converters exist also for neutrons and even for x - rays .
for thermal neutrons @xmath13li and especially @xmath9b can be used , applied to the cathode and the gem electrodes .
the fission products are an @xmath14 particle of @xmath15 mev and either a triton ( for @xmath13li ) or a lithium ion ( for @xmath9b ) , isotropically emitted in opposite directions .
the li ion , due to its low energy and high charge state , will rarely escape the converter ; therefore many conversions do not lead to detection . to have at least the @xmath14 escape the solid , the layer thickness is optimized to @xmath16m.@xcite one such layer only has an efficiency of a few percent , so many detectors use multiple boron - coated gems operating with a gain close to unity , and only the last gem amplifying.@xcite a similar tactic of having cascaded unity gain stages of converter gem foils is used in ref . with a 3 @xmath8 m gold layer as a converter for high energy x - rays .
figure [ crosssections_x - rays ] shows that gold has a high cross section , and that from about 100 kev photon energy the photoelectron has a good chance of escaping the gold layer ( right scale ) .
this detector has an efficiency of around a percent at 141 kev .
higher energy neutrons are also difficult to detect efficiently ; beyond 10 kev all fission cross sections are below 10 barn . at such energies normally hydrogen - rich materials ( paraffine plates , polyethylene foils )
are used to provoke nuclear recoil .
the recoiling proton has an energy @xmath17 , with @xmath18 the neutron energy and @xmath19 the recoil angle .
figure [ crosssections_neutrons ] ( to the right scale ) shows the csda range of recoil protons from head - on neutron collisions ( @xmath20 ) . for high - flux neutron sources like reactors
, detectors do not need to be efficient as long as they are insensitive to gamma rays.@xcite liquid converters are used in cryogenic two - phase detectors for radiation that interacts only by the weak force ( neutrinos , wimps ) , and therefore needs a lot of mass to be detected at all .
they are also proposed for hard x - ray applications where detection efficiency is paramount , such as positron emission tomography . to maximize the mass , and minimize the probability of primary electron capture , high purity ,
heavy noble liquids are used : ar , kr or xe .
ionization charge in the liquid can be extracted to the gas by an electric field , and then amplified by gems.@xcite the operation of multiple gem cascades in the high gas densities in a cryostat can be so difficult that at a certain density the maximum gain drops below that of a single gem.@xcite solutions to this are sought in adding a quencher ( e.g. ch@xmath12 ) or using noble mixtures .
the necessity to work in a cryostat and the difficult operational conditions for a gas detector will probably prevent liquid converters from becoming a mainstream solution for many applications .
but the combination of a large mass and a high sensitivity to weakly ionizing conversions makes this concept uniquely suited to rare event applications such as dark matter searches .
gems have found various applications in beam instrumentation .
the dafne collider in frascati used triple gem detectors for luminosity measurements.@xcite this is done either by counting photons emitted in forward direction from single bremsstrahlung events in the interaction point , or by tracking bhabha - scattered electrons and positrons ( see figure [ bi ] , left ) ; the rates of both these processes are proportional to the luminosity .
some beam facilities use gem detectors as time projection chambers ( tpc),@xcite i.e. with the gem foils parallel to the beam axis and measuring one transverse profile directly while accessing the other projection by drift time measurement of the ionization .
such tpc mode profilers are attractive as the beam crosses only thin windows and gas , but not gem foils and a readout structure ; moreover one detector measures location and direction of each particle ( imperative in the fair fragment separator , ref . ) .
single gem detectors are used as transverse profile monitors in the antiproton decelerator at cern ( see figure [ bi ] , right),@xcite and triple gem detectors will be installed for the same purpose in all higher energy beam lines in the other experimental areas at cern .
in a development funded by the us department of homeland security , large gems are used to scan cargo for nuclear contraband .
the method of muon tomography uses cosmic ray muons as a probe to locate high - z materials such as fissionable nuclei , by reconstructing scattering centers.@xcite two stations of large area gem trackers are placed on all sides around a container , and incoming and outgoing muons are tracked ; the point of closest approach is considered to be the scattering center .
a close concentration of scattering centers with wide scattering angles could indicate the presence of uranium or plutonium .
if the sample is exposed for long enough , also materials with lower z such as lead and even iron blocks can be identified and their shapes reconstructed .
the detector concepts and applications described and cited above are only samples of the enormous amount of work done , and still being done , on development of gaseous detectors based on the gas electron multiplier . in trying to give a most comprehensive overview of non - hep gem development
i have only scratched the surface of this exciting field .
the reader is encouraged to look up the references and the references in those papers , for a more in - depth look at any specific application .
|
gas electron multiplier ( gem ) applied in high - energy physics experiments particularly highest particle rate gems have interesting properties rate capability exploited in other areas research outside scientific domain suppression of ion backflow photon feedback makes gems suitable for photodetectors gem foil solid photoconverter gas amplification stage efficient cost - effective photodetectors made with unlimited size without dead zones readout pattern tailored to requirements spatial resolution geometry gem foil for converter layer applied to other neutral radiation examples gem - based detectors for neutrons hard x - rays gamma rays for detection x - rays neutrons gas used as converter development spherically shaped gem eliminates parallax errors diffraction measurements pinhole imaging detection of neutral radiation photons neutrons relies on conversion mechanism charges in drift volume detector photons conversion photoelectric effect for compton scattering for thermal neutrons conversion via nuclear fission higher energy neutrons cause nuclear recoils figure [ crosssections_x - rays shows converter materials for x -_neutrons neutrons function of energy incoming particlestructures specific for each converter cross sections decrease with increasing energy for x - rays decrease steep atomic number mass number absorber thermal neutrons inversely proportional to velocity photoelectrons plotted converter of neutral radiation in gaseous detector depends on efficiency space time energy resolution three approaches emerged converter in solid liquid gaseous phase merits limitations examples discussed below gas - phase converter attractive if gas suitable as gas amplification medium noble gas challenge gaseous converter low density low stopping power gaseous converters provide highest detection efficiencies no primary charge lost in transfer figures crosssections_x - rays_neutrons show noble gases exist with cross sections of tens or hundreds of kilobarns lowest energies x - rays neutrons gases like xe and @xmath6he costly recirculation system or ultra - high vacuum sealed detector gaseous converters used at high pressures wide drift gap operation at high gas pressure challenging maximum gain with increasing pressure working voltages scale with pressure method to reach full efficiency shown in ref .triple gem detector 1d strip readout gems lied down time projection chamber x - rays traverse drift region sideways detector designed several attenuation lengths wide desired efficiency color - scaled frame reveals attainable detail space - resolved 5.4 kev x - ray conversions ne / dme 80/20% gas mixture reconstruction conversion point red cross direction emission photoelectron red line efficiency concern gem - based x - ray neutron detectors offer high count rate good spatial resolution absorption radiography image small double gem prototype simple @xmath7fe x - ray source 5.9 kev projections x - ray conversions ne / dme 80/20% gas mixture images fine - pitch single gem 90 m read pixel chip gem hole aligned readout pixel resolving conversion events spatially reconstruct direction emission primary photoelectron related polarization axis incoming photon best gaseous neutron converter @xmath6he cross section large for neutron interactions negligible for gamma interactions used with many gaseous detectors including gems @xmath6he used high pressures with triple gemconverter is @xmath9bf@xmath10 effective quencher not suitable for high pressures neutron x - ray diffraction studies radiation from point - like source issue arises with planar gas detectors parallax error error position reconstruction by spread depth conversion x - rays neutrons in drift region problem alleviated high cross section high pressure converters specially shaped entrance window spherical gem detector eliminates it radiation enters same direction drift field spherical gems difficult to fabricate promise ultimate diffraction imaging performance solid converters are photocathodes in vacuum photomultipliers photocathode csi monoalkali sensitive to ultraviolet light vacuum evaporated on clean non - reactive substrate gold - plated copper csi less vulnerable to impurities ion feedback csi converters applied to drift electrode or top electrode quantum efficiency csi photocathode limited by backscattering photoelectron by gas molecules csi detectors in gas mixtures rich in ch@xmath12 methane absorb kinetic energy from electrons effectivelycsi - based gaseous photodetectors attractive for large area coverage minimal dead space cherenkov detectors example is triple gem photodetector for phenix experiment at rhic operated with cf@xmath12 serves as cherenkov radiator obviating vuv - transparent window maximizing photon yield runs on reversed drift field suppress charged particles visual range bialkali photocathodes pursued with gems chemically reactive exposed to air sub - ppm level impurities oxygen reduce lifetime sensitive to photon- ion - induced secondary effects alleviated by coating photocathode with thin films of nai or csi quantum efficiencies few percent detector must ultra - high vacuum compatible by sealing choice materials ion photon feedback issues gems have benign properties photon feedback suppressed gas avalanches inside narrow gem holes absorbed by gems readout board gems suppress ion feedback ions to electrodes before 99% ions intercepted solid converters exist for neutrons x - rays for thermal neutrons @xmath13li and @xmath9b can used applied to cathode gem electrodesfission products are @xmath14 particle of @xmath15 mev triton or lithium ion emitted opposite directions li ion low energy high charge rarely escape converter conversions lead detection @xmath14 escape solid layer thickness to @xmath16m one layer efficiency few percent detectors use multiple boron - coated gems gain close to unity last gem amplifying cascaded unity gain stages converter gem foils used 3 @xmath8 m gold layer converter for high energy x - rays gold high cross section from 100 kev photon energy photoelectron gold layer detector efficiency percent at 141 kev higher energy neutrons difficult to detect beyond 10 kev fission cross sections below 10 barn hydrogen - rich materials provoke nuclear recoil recoiling proton energy @xmath17 @xmath18 neutron energy @xmath19 recoil angle crosssections_neutrons range recoil protons from head - on neutron collisions for high - flux neutron sources detectors need efficient insensitive to gamma raysliquid converters used in cryogenic two - phase detectors for radiation weak force mass proposed for hard x - ray applications detection efficiency positron emission tomography to maximize mass minimize primary electron capture high purity heavy noble liquids used : ar kr xe ionization charge liquid extracted to gas by electric field amplified by gems operation of multiple gem cascades in high gas densities in cryostat difficult maximum gain drops below single gem solutions in adding quencher or noble mixtures necessity cryostat difficult operational conditions for gas detector prevent liquid converters mainstream solution large mass high sensitivity to weakly ionizing conversions makes concept suited to rare event applications dark matter searches gems applications in beam instrumentation dafne collider in used triple gem detectors for luminosity measurements counting photons from events or tracking bhabha - scattered electrons and positrons rates proportional to luminosity some beam facilities use gem detectors as time projection chambers gem foils parallel to beam axis profile measurement ionizationtpc mode profilers attractive beam crosses thin windows gas not gem foils readout structure one detector measures location direction each particle imperative fair fragment separator single gem detectors used transverse profile monitors in antiproton decelerator at cern figure@xcite triple gem detectors installed in higher energy beam lines other experimental areas cern development funded us department homeland security large gems scan cargo for nuclear contraband muon tomography uses cosmic ray muons locate high - z materials fissionable nuclei reconstructing scattering centers two stations large area gem trackers container incoming outgoing muons tracked closest approach scattering center close concentration of scattering centers indicate presence uranium plutonium sample exposed long materials lower z lead iron blocks identified shapes reconstructed detector concepts applications samples of work gaseous detectors based gas electron multiplier overview non - hep gem development scratched surface field reader encouraged look up references for in - depth look specific application
| 0.507504
| 3,241
| 1,550
|
, Saving $0.1 in GPT-4.
|
18,946
|
we calculate the production cross sections for @xmath0 , @xmath1 and @xmath2 in @xmath3 annihilation through one virtual photon in the framework of perturbative qcd with constituent quarks .
the calculated cross sections for @xmath0 and @xmath1 production are roughly in agreement with the recent belle data . the helicity decomposition for @xmath4 meson production is also calculated .
the fraction of the @xmath5 final state in @xmath6 process is found to be 65% .
the fraction of @xmath7 production is 100% and @xmath8 is forbidden in @xmath3 annihilation through one virtual photon .
we further consider @xmath3 annihilation through two virtual photons , and then find the fraction of @xmath9 in @xmath10 process to be about 91% .
pacs number(s ) : 12.40.nn , 13.85.ni , 14.40.gx understanding the @xmath11 processes observed by belle + kui - yong liu department of physics , peking university , beijing 100871 , people s republic of china and department of physics , liaoning university , shenyang 110036 , people s republic of china + zhi - guo he and yu - jie zhang department of physics , peking university , beijing 100871 , people s republic of china + kuang - ta chao china center of advanced science and technology ( world laboratory ) , beijing 100080 , people s republic of china and department of physics , peking university , beijing 100871 , people s republic of china recently , heavy meson production in @xmath3 annihilation has become a very interesting subject both experimentally and theoretically .
for instance , for charmonium production in @xmath3 annihilation at the b - factory energy @xmath12gev , there are large differences between the experimental data @xcite and the calculated cross sections for both exclusive processes @xcite and inclusive processes @xcite . even by including the effects of @xmath3 annihilation into two photons in the exclusive double - charmonium production @xcite and inclusive charmonium production @xcite
, the large discrepancies still exist @xcite . moreover , most recently the belle collaboration has measured @xcite the charmed meson pair @xmath13 production in @xmath3 annihilation and also found a large differences between observed data and theoretical predictions@xcite .
the measured cross sections are @xmath14pb and @xmath15pb , which are , however , lower than those predicted in ref.@xcite by an order of magnitude ( see @xcite for the comparison ) .
the belle measurements of the exclusive d meson pair production in @xmath3 annihilation could be another challenge to the theoretical studies . in order to understand these production processes , in this letter
we will present a calculation in the framework of perturbative qcd with constituent quarks .
namely , we will treat the charmed mesons @xmath16 as bound states of a constituent charmed quark and a constituent light antiquark , and the virtual photon will couple to the charm quark , which will subsequently emit a light quark pair with constituent quark masses through a virtual gluon ( see the upper diagram in fig .
[ fey ] ) .
the virtuality of the virtual gluon could be large enough for the application of perturbative qcd .
in addition , the case of the virtual photon coupled to the light quark will also be considered ( see the lower diagram in fig .
[ fey ] ) . in the following
we will report our calculated results for both the total cross sections and the helicity decomposed cross sections for these charmed meson pair production in @xmath3 annihilation at @xmath12gev , .
following the method in ref .
@xcite , the amplitude for producing the heavy quark @xmath17 -light antiquark @xmath18 bound - state @xmath19 is given by @xmath20 where @xmath21 and @xmath22 represents the short - distance interaction producing the q and @xmath23 in a specific bound - state . *
k * is the relative momentum between q and @xmath23 .
@xmath24 is the bethe - salpeter bound state wave - function .
@xmath25 , up to second order in k , is given by @xmath26 where @xmath27 is for spin - singlet state and @xmath28 is for spin - triplet state .
for the s - wave state , we have @xmath29 . after integrating over *
k * , the amplitude @xmath30 is related to the origin of the radial wave - function @xmath31 @xmath32 using eq .
( [ amp]-[origin ] ) , the calculation of the cross section for the process showed in fig .
[ fey ] is straightforward .
we get the cross section as follows @xmath33 where @xmath34 , @xmath35 is the angle between @xmath36 and @xmath37 .
the meson mass m equals @xmath38 in the leading oeder non - relativistic approximation . for the @xmath6 process
, @xmath39 reads @xmath40.\end{aligned}\ ] ] for the @xmath41 process , one should replace @xmath42 with @xmath43 in the phase space integration .
@xmath39 is given by @xmath44 for the @xmath45 process , @xmath46 is as follows @xmath47 the mandelstam variables are defined as @xmath48 @xmath49 we notify that for @xmath41 process , the formula of mandelstam variables t and u are a little different from eq . ( [ t ] ) and eq .
( [ u ] ) because of the mass difference between @xmath50 and @xmath51 .
as the difference is small , the change for the cross section is negligible . for simplicity of the module of amplitude
, we still use the definition in eq .
( [ t ] ) and eq .
( [ u ] ) . in the numerical calculation ,
the input parameters are as follows @xmath52 for the coulomb - plus - linear potential case , the value of the wave function at the origin for charmonium can be found e.g. in @xcite . with @xmath53 gev , for the s - wave charmonium
it could be given by @xmath54 we then use the potential scaling rules to get a rough estimate for wave function at the origin for the charmed meson .
we fix the constituent c - quark mass at 1.6 gev . the cross sections for @xmath13 , @xmath55 and @xmath56
are found to be @xmath57
@xmath58 @xmath59 we also calculate the polarized @xmath13 and @xmath55 production .
the polarized cross section can be calculated by defining the longitudinal polarization vector as follows @xcite @xmath60 where @xmath61 and @xmath62 .
the polarized modules of amplitude for @xmath63 is listed in eq .
[ onephoton ] @xmath64 the corresponding cross sections are @xmath65 using the results in eq .
( [ sgdsds ] ) and ( [ pol1 ] ) , we get @xmath66 for @xmath67 case , the longitudinal cross section for one photon process must be zero , since it is forbidden by parity conservation and angular momentum conservation .
the effective @xmath68 vertex in fig [ fey ] only can have the form as @xmath69 where @xmath70 represents the field of the virtual photon , @xmath71 represents the field of the @xmath72 meson and @xmath73 represents the field of the @xmath74 meson . in the momentum space ,
the effective vertex is as follow @xmath75 if we choose the center - of - mass frame of the @xmath3 , the formula in eq.([int ] ) becomes @xmath76 because the space component of the longitudinal polarization vector of the @xmath77 meson is parallel to the momentum of the @xmath77 meson , from eq.([ppp ] ) , one knows that the longitudinally polarized @xmath77 meson can not contribute to the process listed in fig .
[ fey ] .
the longitudinal @xmath4 only comes from two photons process , as listed in fig .
[ twofey ] .
the modules of amplitude for @xmath78 and @xmath79 are listed , respectively , in eq .
( [ twodds ] ) and eq .
( [ twopol ] ) .
@xmath80 @xmath81 the corresponding cross sections are @xmath82 @xmath83 then one can get the ratio of cross section for @xmath84 to total cross section as follows @xmath85 in summary , motivated by the measurement of the @xmath86 cross - sections @xcite , we calculate the cross - sections for @xmath13 , @xmath55 and @xmath56 in @xmath3 annihilation through one photon .
the calculated cross - sections are roughly in agreement with the experimental data .
the fraction of the @xmath87 final state in the @xmath88 reaction is also calculated , the ratio of 65% is in some deviation from the belle data , which is @xmath89 @xcite .
moreover , for the @xmath55 production case , in ref .
@xcite , it is claimed that @xmath90 is saturated by @xmath91 final state ( @xmath92 , in good agreement with the predictions of ref .
@xcite . under our analysis ,
the @xmath93 final state is forbidden by parity conservation and angular momentum conservation .
if the @xmath94 process is further considered , the fraction of the @xmath95 final state in @xmath96 process is 90.8% .
|
the authors thank j.p.ma , c.meng and z.z.song for useful discussions . this work was supported in part by the national natural science foundation of china , and the education ministry of china .
p. cho and k. leibovich , phys .
d 54 * , 6990 ( 1996 ) ; f. yuan , c.f .
qiao , and k.t .
chao , phys . rev . *
d 56 * , 321 ( 1997 ) ; _ ibid _ , 1663 ( 1997 ) ; s. baek , p. ko , j. lee , and h.s .
song , j. korean phys . soc . * 33 * , 97 ( 1998 ) ; k.y.liu , z.g.he and k.t.chao , hep - ph/0301218 .
|
authors thank j.p.ma c.meng z.song discussions work supported national natural science foundation education ministry cho leibovich phys . 54 6990 1996 ) yuan qiao chao phys . rev. 56 321 ( 1997 ) 1663 ( 1997 ) s baek ko j lee song korean .. 33 97 ( 1998 ) k.y.liu z.g.he k.t.chao hep - ph/0301218
| 0.068167
| 183
| 97
|
, Saving $0.0 in GPT-4.
|
18,948
|
modern detectors such as atlas use pressurized drift tubes to minimize diffusion and achieve high coordinate accuracy . however , the coordinate accuracy depends on the exact knowledge of converting measured times into coordinates .
linear space - time relationships are best for reconstruction , but difficult to achieve in the @xmath0 field . previous mixtures , which contained methane or other organic quenchers , are disfavored because of ageing problems . from our studies of nitrogen and carbon dioxide ,
two mixtures with only small deviations from linearity were determined and measured . scaling laws for different pressures and magnetic fields
are also given .
gaseous detectors ; pressurized drift tubes ; gas mixtures
|
since the invention of geiger counters , the simplicity of proportional tubes has been attractive . however , the inhomogeneous electric field @xmath0 poses a problem for accurate spatial measurements because the drift velocities depend on electric field @xcite .
this means a complicated relation between the measured time and the radius inferred for reconstruction .
a linear relation with small correction provides accurate tracking and was previously achieved by mixtures with methane @xcite .
the search for an optimized drift gas will be discussed in terms of the atlas monitored drift tube ( mdt ) system , which uses 370 000 drift tubes in 1 194 chambers with an expected spatial resolution of 80 @xmath1 m @xcite . while the originally proposed gas mixture ar : ch@xmath2:n@xmath3 ( 91:5:4)% met this resolution requirement , it was found that mixtures with hydrocarbon admixtures such as methane are prone to ageing @xcite .
the mixture ar : co@xmath3 ( 93:7)% was subsequently used because of its resistance to ageing . to achieve high accuracy in coordinate reconstruction , it is important to keep corrections small .
this equates to having a linear space - time relation , so that the electron mean drift velocity is nearly independent of electric field . also , in large systems operating for long periods of time , the drift gas must have high tolerance for cumulative contamination by nitrogen from air , whereas oxygen is usually removed by purifiers .
surprisingly , the effects of small amounts of nitrogen are significant @xcite , but can be used advantageously by using nitrogen as an intentional admixture in the gas mixture @xcite . as seen in fig .
[ fig : space - time ] , the space - time relation for the original atlas mixture ar : ch@xmath2:n@xmath3 ( 91:5:4)% is very linear unlike the relation for the current test mixture of ar : co@xmath3 ( 93:7)% .
= 3.5 in knowledge of properties of electron drift in gaseous detectors @xcite will allow for a systematic search for a gas mixture which improves coordinate accuracy . to avoid ageing , it is important to find a mixture with a linear space - time relation which does not include a hydrocarbon mixture .
to determine the principle features of the gases without distortion from the cylindrical geometry , a setup with uniform electric and magnetic fields is chosen ( see @xcite for a more complete description ) .
the setup consists of a drift chamber in the field of the former mit cyclotron magnet .
a nitrogen laser produces ionization at @xmath4 in the chamber .
the electrons drift under the influence of a uniform electric field through a wire mesh and into a proportional chamber as shown in fig .
[ fig : side ] . displacing the laser by @xmath5 with a mirror , the velocity parallel to the electric field
@xmath6 is obtained .
the deflection by the magnetic field is calculated from the `` center of gravity '' of charge induced on pick - up strips behind the wires as seen in fig .
[ fig : top ] .
differential measurements eliminate the influence of the amplification gap on the measured times .
the magnet can produce fields from @xmath7 t with @xmath8 homogeneity over the chamber volume .
the chamber has a thick quartz window and can reliably hold pressures to 3 bar , as well as be pumped down to 0 bar absolute pressure before a measurement .
to establish regularities and simplify scaling laws , electron drift velocities and magnetic deflection angles were measured in a low admixture argon gas p10 , ar : ch@xmath2 ( 90:10)% , for different drift electric fields , magnetic fields , and pressures as shown in figs . [ fig : p10_data ] . for relatively small magnetic field values , the total drift velocity @xmath9 will be approximately constant .
hence , we expect @xmath10 which is verified in fig .
[ fig : vbscale ] .
similarly , because the lorentz force is proportional to the magnetic field , the scaling for the magnetic deflection angles is expected to be @xmath11 as demonstrated in fig .
[ fig : abscale ] . for different pressures @xmath12 ,
one expects a behavior governed by the mean free path of electrons in the gas , @xmath13 , and therefore scaling with @xmath14 as verified in figs .
[ fig : pscale ] .
[ fig : arco2_data ] displays the drift features of ar : co@xmath3 ( 93:7)% measured in our setup at 3 bar .
the non - linearity of the corresponding space - time relation in fig .
[ fig : arco2_rt ] is a result of the change of drift velocity close to the drift tube wall , in the @xmath15 kv / cm range .
these low velocities are responsible for long times at large radius . the improvement of the ar : co@xmath3 ( 93:7)% mixture is based on considering the electron - gas interaction cross - sections of admixture gases ( figs .
[ fig : xsecs ] ) . due to quantum mechanical effects , these cross - sections are a function of energy .
for example , the cross - section of argon has a minimum at about 0.23 ev , meaning that when electrons have this energy , they interact less strongly with the ar atoms .
this explains the maximum in drift velocity of gas mixtures containing argon ( figs .
[ fig : p10_data ] ) .
carbon dioxide has a large inelastic cross - section at low energy which tends to keep the mean electron energy low and around that of the argon cross - section minimum @xcite .
this strongly increases non - linearity , but the smaller average time between collisions leads to smaller angles . to obtain a more constant electron velocity at low electric field , the amount of carbon dioxide was reduced .
the addition of nitrogen to a mixture of argon and carbon dioxide was advantageous at higher electric fields because nitrogen has a large elastic cross - section .
this helps to diminish the effect of the minimum in the argon cross - section ( fig .
[ fig : n2_xsec ] ) .
thus , the addition of nitrogen should flatten the drift velocity curve and straighten the space - time relation .
the negative effect is a modest increase in deflection angle .
the data in figs . [ fig : goodgases ] demonstrate the predicted features from the discussion above . figs .
[ fig:94_2_4_dat ] and [ fig:92_6_2_dat ] show mixtures which do not contain any hydrocarbon admixture .
the magnetic deflection angles @xmath16 are slightly higher than the angles in fig .
[ fig : arco2_data ] but the velocities lead to much better space - time curves as demonstrated in figs .
[ fig:94_2_4_rt ] and [ fig:92_6_2_rt ] by adapting the measured data to a cylindrical geometry .
to see the benefits of a linear drift gas , a simple model consisting of a two - layer set of drift tubes is considered ( fig . [ fig:2tubes ] ) .
muon track 1 is the actual path of the muon , but due to non - linearities in the space - time relation of the gas , this track will be incorrectly reconstructed . at 60@xmath17 from vertical , muon track 2 is also affected by these non - linearities .
[ fig:3tubes ] shows the systematic errors when three layers of drift tubes are used .
the third layer helps to pull the reconstructed muon track 1 back to vertical , but the reconstructed muon track 2 continues to suffer from the incorrectly predicted radii . using the space - time curves from figs .
[ fig : arco2_rt ] , [ fig:94_2_4_rt ] , and [ fig:92_6_2_rt ] , horizontal deviations in the muon track reconstruction were calculated for muons impinging vertically and at 60@xmath17 from vertical .
these errors are shown in figs .
[ fig : errors ] .
it is clear that the reconstruction error in a gas is strongly related to the linearity of its space - time relation .
we show that simple relations can be used to scale mean drift velocity and magnetic deflection angle data for magnetic fields @xmath18 1.2 t and pressures @xmath18 3 bar .
transforming measured data in homogenous fields to a cylindrical geometry lead to a gas mixture with a nearly linear space - time relation .
with knowledge of gas admixtures , definite improvements over the present atlas mdt test mixture ar : co@xmath3 ( 93:7)% were found
. ar : n@xmath3:co@xmath3 ( 94:2:4)% gives roughly a factor three improvement and ar : n@xmath3:co@xmath3 ( 92:6:2)% has an order of magnitude smaller corrections and may provide a chance to improve accuracy in the large atlas detector .
999 u. becker et al .
consistent measurements comparing the drift features of noble gas mixtures .
_ , a421:54 , 1999 . + j.j .
kirchner , senior thesis 2000 .
`` drift gas optimization for cylindrical geometries with application to the largest detector to date . ''
atlas muon spectrometer : technical design report .
cern - lhcc-97 - 22 g. herten .
university of freiburg , private communication , 1998 .
m. kollefrath et al .
ageing studies for the atlas - monitored drift tubes .
_ , a419:351 , 1998 . m. aleksa and w. riegler .
non - linear mdt drift gases like ar / co@xmath3 .
atl - muon-98 - 268 .
u. j. becker , s. c. nahn , j. p. rodin , and b. r. smith .
effect of n-2 contamination on drift chambers in magnetic fields .
_ , a351:583 - 584 , 1994 .
e. fortunato , u. becker , and r. dinner .
understanding the impact of additives with large inelastic cross - sections on drift chamber performance .
_ , a421:278 , 1999
. drift gas r&d homepage . `
http://cyclotron.mit.edu/drift/ ` .
u. becker et al .
calibration setup for drift chamber gases .
_ , a306:194 , 1991 .
s. f. biagi .
monte carlo simulation of electron drift and diffusion in counting gases under the influence of electric and magnetic fields .
_ , a421(1 - 2):234 , 1999 . and university of liverpool , private communication .
|
invention geiger counters simplicity proportional tubes attractive inhomogeneous electric field @xmath0 problem accurate spatial measurements drift velocities depend on field complicated relation between measured time radius inferred for reconstruction linear relation small correction accurate tracking achieved by mixtures methane search optimized drift gas atlas monitored drift tube system uses 370 000 drift tubes 1 194 chambers expected spatial resolution 80 @xmath1 m @xcite proposed gas mixture ar : ch@xmath2:n@xmath3 ( 91:5:4)% met resolution requirement mixtures methane prone to ageing mixture ar : co@xmath3 ( 93:7)% used resistance to ageing high accuracy reconstruction keep corrections small linear space - time relation electron mean drift velocity independent of electric field large systems drift gas high tolerance for contamination by nitrogen oxygen removed by purifiers effects small amounts nitrogen significant used intentional admixture gas mixture relation original atlas mixture@xmath2:n linear unlike current test mixture ar : co@xmath3 ( 93:7)%3.5 knowledge electron drift in gaseous detectors @xcite systematic search gas mixture coordinate accuracy avoid ageing important find mixture linear space - time relation hydrocarbon mixture determine principle features gases setup with uniform electric magnetic fields chosen see @xcite description setup drift chamber cyclotron magnet nitrogen laser produces ionization at @xmath4 electrons drift uniform electric field through wire mesh into proportional chamber fig displacing laser with mirror velocity parallel to electric field @xmath6 obtained deflection magnetic field calculated from center of gravity charge pick - up strips behind wires differential measurements eliminate influence amplification gap measured times magnet fields from @xmath7 @xmath8 homogeneity over chamber volume chamber thick quartz window hold pressures to 3 bar pumped down to 0 bar before measurement electron drift velocities magnetic deflection angles measured in low admixture argon gas p10@xmath2 ( 90:10)% for different drift electric fields magnetic fields pressures small magnetic field values total drift velocity @xmath9 constant expect @xmath10 verified in fig .lorentz force proportional to magnetic field scaling for magnetic deflection angles @xmath11 fig . different pressures @xmath12 behavior by mean free path electrons gas @xmath13 scaling with @xmath14 figs arco2_data displays drift features of ar : co@xmath3 ( 93:7)% at 3 bar non - linearity space - time relation change drift velocity close to drift tube wall @xmath15 kv / cm range low velocities for long times at large radius improvement ar : co@xmath3 ( 93:7)% mixture electron - gas interaction cross - sections of admixture gases cross - sections function of energy cross - section of argon minimum 0.23 ev electrons interact less with ar atoms explains maximum drift velocity of gas mixtures argon carbon dioxide large inelastic cross - section at low energy mean electron energy low argon - increases non - linearity smaller average time between collisions smaller angles constant electron velocity at low electric field carbon dioxide reduced addition nitrogen to argon carbon dioxide advantageous at higher electric fields large elastic cross - sectioneffect minimum argon cross - section fig n2_xsec addition nitrogen flatten drift velocity curve straighten space - time relation negative effect modest increase deflection angle data in figs demonstrate predicted features figs:94_2_4_dat:92_6_2_dat show mixtures hydrocarbon admixture magnetic deflection angles @xmath16 slightly higher than arco2_data velocities lead to better space - time curves_2_4 adapting data to cylindrical geometry linear drift gas simple model two - layer set drift tubes considered fig:2tubes muon track 1 actual path muon non - linearities space - time relation gas incorrectly reconstructed at 60@xmath17 from vertical muon track 2 affected non - linearities fig:3tubes shows systematic errors when three layers of drift tubes used third layer reconstructed muon track 1 back to vertical muon track 2 incorrectly predicted radii space - time curves figs arco2_6_2_rt horizontal deviations in muon track reconstruction calculated for muons impinging vertically at 60@xmath17 from verticalerrors shown in figs reconstruction error in gas related to space - time relation relations scale drift velocity magnetic deflection angle for fields 1.2 t pressures 3 bar transforming data to cylindrical geometry to gas mixture nearly linear space - time relation improvements over atlas mdt test mixture ar : co@xmath3 ( 93:7)% found n@xmath3:co ( 94:2:4)% factor three improvement ( 92:6:2)% smaller corrections may improve accuracy in large atlas detector u becker et measurements drift features of noble gas mixtures a421:54 1999 kirchner 2000 drift gas optimization for cylindrical geometries largest detector atlas muon spectrometer technical design report-97 - university of freiburg 1998 kollefrath ageing studies for atlas - monitored drift tubes a419:351 1998 aleksa riegler non - linear mdt drift gases like ar / co@xmath3-98 - effect of n-2 contamination on drift chambers in magnetic fields a351:583 - 584, 1994dinner impact additives cross - sections drift chamber performance a421:278 1999 drift gas r&d homepage http://cyclotron.mit.edu/drift becker calibration drift chamber gases a306:194 1991 biagi simulation electron drift diffusion gases electric magnetic fields a421(1 - 2):234 1999 university liverpool communication
| 0.349084
| 2,332
| 1,146
|
, Saving $0.1 in GPT-4.
|
18,970
|
we propose a scheme for generating su(2 ) adiabatic geometric phases in a circuit consisting of three capacitively coupled flux - biased josephson phase qubits .
|
when slowly changing , external controls that govern adiabatic evolution of a quantum system return to their original values , the phase of system s wave function acquires a purely geometric contribution independent of both system s energy and duration of the adiabatic process .
this @xmath0 contribution , initially discovered by berry @xcite , mathematically interpreted by simon @xcite , and later generalized to non - abelian @xmath1 operations by wilczek and zee , has been the source of many interesting developments in various fields of chemistry and physics @xcite , such as molecular and spin dynamics , optics , fractional quantum hall effect , various branches of condensed matter physics @xcite , and others , such as , for example , the field of quantum information processing @xcite . of particular interest to us
is the possibility of observing _ non - abelian _ geometric phases ( su(2 ) , in our case ) in superconducting circuits with josephson junctions @xcite .
such circuits are currently considered as promising candidates for scalable quantum computing architectures @xcite .
even though in this paper we consider a definite physical system ( the so - called capacitively coupled flux biased josephson phase qubits @xcite ) , our analysis may apply equally well to any quantum computing architecture whose dynamics is described by the hamiltonian given in eq .
( [ eq : hint_2couplers ] ) .
this very simple hamiltonian has properties that make the corresponding system ideally suitable for actual realization of non - abelian geometric phases .
the most important of these is the presence of two doubly degenerate subspaces , one of which , @xmath2 , _ can _ support non - abelian phase , and the other , @xmath3 , _
cannot_. experimentally then , @xmath3 may be used as fiducial , reference subspace relative to which various interferometric experiments involving @xmath2 could be performed . to recall how geometric phases appear in quantum mechanics and to fix our notation ,
let us consider a quantum system whose hamiltonian depends on the time @xmath4 via several controllable parameters @xmath5 , @xmath6 .
it is assumed that @xmath7 forms an iso - degenerate family of hamiltonians ( no level crossings as @xmath8 varies ) @xcite .
let the instantaneous energy eigenbasis @xmath9 within a give degenerate subspace be chosen , [ eq : hat ] h((t))_a((t))=e((t))_a((t ) ) , a = 1,2 ,
, n. at @xmath10 , prepare the system in one of the energy eigenstates , @xmath11 , and let it evolve according to the schrdinger equation , [ eq : schrodpsi ] id_a(t)/dt = h((t))_a(t ) .
then , in accordance with the adiabatic theorem , at some later time @xmath4 , the state @xmath12 will be a linear superposition of various @xmath13 belonging to the same degenerate subspace .
therefore , in general , [ eq : psi ] _
a(t ) e^-i_0^t e((t))dt _ b _ b((t ) ) u_ba((t ) ) , where the first factor on the right is the usual dynamical phase , and @xmath14 is the unitary matrix representing additional , purely geometric `` rotation . ''
the @xmath14 is the sought for non - abelian geometric phase .
it is given by the path - ordered exponential , u((t ) ) = p \{-_0^t _
i a_i((t ) ) ^i(t ) dt } , where [ eq : adiabaticconnection ] _ cb _ c()|/^i|_b()is the so - called _ adiabatic connection _ , also known as the @xmath15-valued gauge potential . in general ,
when @xmath16 traces a closed loop @xmath17 in the parameter space , the system picks up a nontrivial geometric phase ( the _ holonomy _ ) , u_c = p \{-_i a_i ( ) d^i } 0 , independent of the speed with which the loop had actually been traversed ( as long as it was done adiabatically ) . in the next section
we describe a multi - qubit solid state quantum computing architecture capable of supporting such a phase .
one system that leads to nontrivial , su(2 ) holonomies consists of three capacitively coupled josephson phase qubits @xcite whose effective hamiltonian in the rotating wave approximation is given by ( cf .
@xcite ) [ eq : hint_2couplers ] h(b_x , b_y ) & = & ( 1/2 ) [ b_x(^x_1+^x_2)+b_y(^y_1+^y_2 ) + & & + g ( ^x_3^x_2+^y_3 ^y_2 + ^x_3^x_1+^y_3 ^y_1 ) + & & + j ( ^x_2^x_1+^y_2 ^y_1 ) ] , where , in polar coordinates , @xmath18 , @xmath19 . here ,
qubits 1 and 2 experience the same magnetic field produced by identical microwave driving on both qubits .
this microwave drive is the parameter @xmath20 that will undergo adiabatic change . for future use
we define & & a ( 1/2)(-b^2 + 6g^2)/ , + & & a
( 1/2)(b^2 + 6g^2)/>0 , + & & k b^4 - 2g^2b^2 + 8g^4>0 , + & & l ( -b^2 + 4g^2 ) .
the corresponding hamiltonian matrix @xmath21 has six different eigenvalues , two of which are doubly degenerate .
the non - degenerate ones are @xmath22 $ ] .
their corresponding eigenkets are rather complicated , each leading to the same @xmath0 berry phase @xmath23 on a single precession of the field , and will not be needed in what follows .
the degenerate eigenvalues that _ will _ be needed are @xmath24 , with \ { ( -b^2 + 4g^2)|000+b^2 e^2i|011 + & & -2gbe^i|100}/ , + & & -b^2(b^2 - 2g^2)e^-2i|100 + & & + k|111}/. a straightforward calculation based on eq .
( [ eq : adiabaticconnection ] ) then gives the adiabatic connection within the @xmath25 subspace , da(b , ) & = & i\ { [ 2b^2(b^2 + 2g^2)/k](^z/2 ) + & & - ( 2gb^3a / k ) ( ^x3+^y 3 ) } d + & & - i(2gb^2a/k ) ( ^x 3- ^y 3 ) db . + here , the pauli matrices operate within the @xmath25 `` geometric '' subspace and are different from the sigma - matrices originally used to describe the qubits in the circuit . notice that in the course of adiabatic evolution we are not allowed to take any of the limits @xmath26 , @xmath27 , or @xmath28 , since each breaks the requirement of iso - degeneracy . also notice that @xmath29 appears nowhere in @xmath25 , @xmath30 , or @xmath31 , so the geometric phase is not sensitive to the precise value of @xmath29 .
nevertheless , the presence of @xmath32 is crucial here : it guarantees separation of the @xmath25 subspace from the rest of the hilbert space .
such ( at least , partial ) robustness against possible imperfections in the coupling is important since our ability to implement _ multidimensional _ geometric phases relies on the exact degeneracy of the underlying energy subspace .
however , in order to have the exact degeneracy of @xmath30 , we also require that the coupling @xmath33 be the same for @xmath34 and @xmath35 .
this is a very important requirement , not easily achievable experimentally ( unless tunable coupling is available ) .
additionally , since @xmath36 _ does _ appear explicitly in eq .
( [ eq : states ] ) , we require good control over @xmath36 , which is not a problem experimentally . in a typical experiment , even for long times , the magnetic field ( the microwave drive ) can easily be controlled @xcite .
we also point out that the sequence of operations generating non - abelian phases must be short compared to the decoherence and dephasing times . on the other hand
, system s evolution must remain adiabatic compared to the couplings @xmath33 and @xmath29 and the magnetic field @xmath36 . in a typical experiment ,
@xmath33 is on the order of 20 mhz , or @xmath37 ns , so the entire operation would be several hundred nanoseconds which is comparable to the presently achievable decoherence times
. however , with stronger couplings up to @xmath38 mhz and @xmath39 ns it is possible to perform an adiabatic operation in several tens of ns @xcite .
let us now fix a basis @xmath40 at @xmath41 and initialize the system in some state @xmath42 .
we may then trace a closed loop @xmath17 in the parameter space by performing the following sequence of operations : \(1 ) begin , if needed , by adiabatically changing the field from @xmath43 to @xmath44 along the radial direction in the @xmath45-plane ( no precession ) .
the system will pick up a phase , & & u_y = e^-i ( b_0,b_1 ) ( ^y/2 ) , + & & ( b_0,b_1 ) 2 _ b_0^b_1 ( 2gb^2a/k ) db .
\(2 ) perform adiabatic precession at @xmath44 , b_x(t ) = b_1 _ 0
t , b_y(t ) = b_1 _ 0 t .
if the field makes @xmath46 revolutions of total duration @xmath47 , the accumulated phase will be [ eq : u ] u_xz & = & _ 1 \ { ( 2an ) + & & + i ( 2an ) } _ b = b_1 , + which represents a rotation by angle @xmath48 about the axis @xmath49{\arrowvert}_{b = b_1}$ ] that lies in the @xmath50-plane of the bloch sphere ( constructed with respect to @xmath25 ) .
the set of gates that can be generated this way is shown in fig .
[ fig:1 ] .
\(3 ) bring the field back to its original value .
this will result in additional contribution to the phase , @xmath51 .
the full holonomy is then [ eq : generalholonomy ] u_c = ( u_y)^-1u_xzu_y = u_xz ( u_y)^2 .
to demonstrate how this non - abelian scheme works in simple situations , let us find a basis in which a useful gate , such as a hadamard , can be made in a single revolution of the effective magnetic field .
we want @xmath52 , @xmath53 , and @xmath54 , possibly up to an insignificant u(1 ) factor .
first , notice that the choice @xmath55 does not work as can be seen from fig .
[ fig:1 ] .
we therefore introduce a new basis , | & : = & |_1(b)+ |_2(b ) , + angle @xmath56 .
setting @xmath53 and changing to the new basis gives [ eq : u1bbeta ] u_xz(b , ) & = & -(2a ) -
i(2a ) + & & \ { [ ( l / k)2 + ( 2gb^3/k)2]^z + & & - [ ( l / k)2- ( 2gb^3/k)2]^x } .
+ it is then straightforward to check that by choosing b&= & g , + _ h & = & ( ) + & & - , with @xmath57 , and thus @xmath58 , @xmath59 , @xmath60 , and @xmath61 , we get a hadamard gate , @xmath62 . on the other hand , by choosing same @xmath36 and setting @xmath63 , we get another basis , in which @xmath64 .
other important gates , such as @xmath65 and various phase gates , can also be generated in a similar manner .
we emphasize that the specially designed basis is only `` special '' in the sense that it allows a given gate ( say , a hadamard ) to be generated by following a particularly simple path in the parameter space here , by making a _ single _ turn of the adiabatically precessing in the @xmath45-plane field .
in summary , we have shown how capacitively coupled tripartite superconducting qubit system may support non - commuting su(2 ) geometric holonomies .
the non - abelian character of the holonomies is due to the inter - qubit coupling .
if we treat the relevant degenerate subspace as a `` geometric '' qubit , then , with a proper choice of the computational basis , any of the standard single - qubit gates used in quantum information processing can be generated by the adiabatic transport alone .
see , e.g. , a. tomita , r. y. chiao , phys .
lett . * 57 * , 937 ( 1986 ) ; c. a. mead , rev .
phys . * 64 * , 51 ( 1992 ) ; d. arovas , j. r. schrieffer , and f. wilczek , phys .
53 , 722 ( 1984 ) ; h. koizumi , t. hotta , y. takada , phys .
lett . * 80 * , 4518 ( 1998 ) .
l. faoro , j. siewert , and r. fazio , phys .
rev . lett . *
90 * , 028301 ( 2003 ) ; m. cholascinski , phys .
* 94 * , 067004 ( 2005 ) ; v. brosco , r. fazio , f. w. j. hekking , and a. joye , phys .
100 * , 027002 ( 2008 ) .
|
changing external controls adiabatic evolution quantum system return to original values system s wave function acquires geometric contribution independent of energy duration adiabatic process @xmath0 contribution discovered by berry interpreted by simon generalized to non - abelian @xmath1 operations by wilczek and zee source of developments in chemistry physics molecular spin dynamics optics fractional quantum hall effect condensed matter physics quantum information processing interest possibility observing non - abelian geometric phases in superconducting circuits with josephson junctions circuits promising candidates for scalable quantum computing architectures capacitively coupled flux biased josephson phase qubits @xcite analysis may apply to any quantum computing architecture by hamiltonian in eq . hamiltonian properties system suitable for realization non - abelian geometric phases important presence of two doubly degenerate subspaces one @xmath2 can support non - abelian phase other @xmath3 cannot @xmath3 used as fiducial reference subspace interferometric experiments involving @xmath2recall geometric phases quantum mechanics fix notation consider quantum system hamiltonian depends time @xmath4 controllable parameters assumed @xmath7 iso - degenerate family hamiltonians no level crossings @xmath8 varies instantaneous energy eigenbasis @xmath9 degenerate subspace chosen h((t))_a(=e((t)_a((t a = 1,2 n @xmath10 prepare system energy @xmath11 evolve schrdinger equation id_a(t)/dt = h((t))_a(t ) adiabatic theorem later time state @xmath12 linear superposition @xmath13 same degenerate subspace psi a(t ) e^-i_0^t e((t))dt _ b _((t u_ba((t ) first factor right usual dynamical phase @xmath14 unitary matrix additional geometric rotation @xmath14 non - abelian geometric phase given path - ordered exponential u((t ) ) = p \{-_0^t _ a_i((t ) ) ^i(t ) dt()|/^i|_b( adiabatic connection @xmath15-valued gauge potential @xmath16 traces loop @xmath17 system picks up nontrivial geometric phase holonomy u_c = p d^i 0 independent speed multi - qubit solid state quantum computing architecture phase system nontrivial holonomies three capacitively coupled josephson phase qubits @xcite hamiltonian rotating wave approximation_2couplers h(b_x b_y ) = ( 1/2 ) b_x(^x_1+^x_2)+b_y(^y_1+^y_2 ) ^x_3^x_2+^y_3 ^y_2 ^x_3^x_1+^y_3 ^y_1 ^x_2^x_1+^y_2 ^y_1 polar coordinates @xmath18 @xmath19 qubits 1 and 2 experience same magnetic field microwave driving microwave drive parameter @xmath20 adiabatic change define ( 1/2)(-b^2 + 6g^2)/ 1/2)(b^2 + 6g^2)/>0^4 - 2g^2b^2 + 8g^4>0 -b^2 + 4g^2 hamiltonian matrix @xmath21 six eigenvalues two doubly degeneratenon - degenerate @xmath22 eigenkets complicated leading same @xmath0 berry phase @xmath23 single precession not needed degenerate eigenvalues needed are @xmath24 ( -b^2 + 4g^2)|000+b^2 e^2i|011 -2gbe^i|100} -b^2(b^2 - 2g^2)e^-2i|100|111}/ calculation eq adiabaticconnection gives adiabatic connection @xmath25 subspace [ 2b^2(b^2 + 2g^2)/k](^z/2 ) ( 2gb^3a / k ) ^x3+^y 3 ) i(2gb^2a/k ) ( ^x 3- ^y 3 ) pauli matrices operate @xmath25 geometric subspace different from sigma - matrices adiabatic evolution not allowed limits @xmath26 @xmath27 @xmath28 breaks requirement iso - degeneracy @xmath29 in @xmath25 @xmath31 geometric phase not sensitive to value @xmath29 presence @xmath32 crucial guarantees separation @xmath25 subspace from hilbert spacepartial robustness against imperfections coupling important multidimensional geometric phases relies on exact degeneracy underlying energy subspace degeneracy @xmath30 coupling @xmath33 same for @xmath34 @xmath35 important requirement not easily achievable experimentally unless tunable coupling @xmath36 in eq . control over @xmath36 not problem experimentally magnetic field controlled @xcite sequence of operations generating non - abelian phases short compared to decoherence dephasing times system s evolution remain adiabatic compared to couplings @xmath33 @xmath29 magnetic field @xmath36 typical experiment @xmath33 20 mhz or @xmath37 ns operation several hundred nanoseconds comparable to decoherence times with stronger couplings @xmath38 mhz @xmath39 ns possible to perform adiabatic operation in several tens of ns @xcite fix basis @xmath40 at @xmath41 initialize system in @xmath42 trace closed loop @xmath17 in parameter space by sequence operations adiabatically changing field from @xmath43 to @xmath44 radial direction in @xmath45-planesystem up phase u_y = e^-i ( b_0,b_1 ) ( ^y/2 ) b_0,b_1 ) 2 _ b_0^b_1 ( 2gb^2a/k ) db perform adiabatic precession at @xmath44 b_x(t ) = b_1 _ 0 t b_y(t ) = b_1 _ 0 t field makes @xmath46 revolutions accumulated phase u_xz = _ 1 2an + i ( 2an ) b = b_1 rotation angle @xmath48 axis @xmath49{b = b_1} @xmath50-plane bloch sphere gates shown fig . bring field back original value additional contribution phase @xmath51 full holonomy u_c = ( u_y)^-1u_xzu_y = u_xz ( u_y)^2 non - abelian scheme find basis useful gate single revolution magnetic field want @xmath52 @xmath53 @xmath54 insignificant u(1 ) factor choice @xmath55 work introduce new basis = |_1(b)+ |_2(b ) + angle @xmath56 setting @xmath53 new basis gives eq u1bbeta ] u_xz(b & = -(2a ) - i(2a ) + ( l / k)2 + ( 2gb^3/k)2]^z + - l / k)2- 2gb^3/k)2]^x } check choosing b&= g h = - @xmath57 @xmath58 get hadamard gate @xmath62 choosing @xmath36 setting @xmath63 another basis @xmath64 other gates @xmath65 phase gates generated similar specially designed basis allows gate hadamard simple path single turn adiabatically precessing @xmath45-plane field capacitively coupled tripartite superconducting qubit system non - commuting geometric holonomies non - abelian character due inter - qubit coupling treat degenerate subspace geometric qubit proper choice computational basis standard single - qubit gates quantum information processing generated adiabatic transport see a. tomita r. y. chiao , phys . lett . * 57 * , 937 ( 1986 ) c. a. mead , rev . .64 51 1992 ). arovas schrieffer f. wilczek phys 53 722 1984 ) h. koizumi. hotta takada phys 80 4518 1998 ) l. faoro j. siewert r. fazio phys . 90 028301 2003 ) cholascinski 94 067004 2005 ) v. brosco r. fazio hekking. joye 100 027002 2008 )
| 0.496402
| 3,241
| 1,806
|
, Saving $0.1 in GPT-4.
|
18,977
|
in wide double white dwarf ( dwd ) binaries , in which the co - eval wds evolve independently , the more massive , faster - evolving wd can be used to obtain a main - sequence lifetime for the less - massive wd . by converting this lifetime into an initial mass for the less - massive wd , and combining it with the spectroscopically derived mass for this wd , one can constrain the initial - final mass relation ( ifmr ) . however , the number of known and well - characterized dwds is small , severely limiting their usefulness for this analysis . to obtain new constraints on the ifmr , we search for wide dwds in the sloan digital sky survey ( sdss ) data release 9 .
we find 65 new candidate systems , thereby raising the number of known wide dwds to 142 .
we then engage in a spectroscopic campaign to characterize these pairs , identifying 32 da / da pairs , two da / db pairs , four da / dah candidate pairs , a previously unidentified candidate triple wd system , and five da / dc wds .
we present a reanalysis of the constraint on the ifmr placed by @xcite using the dwd pg 0922@xmath0162 , and finish by discussing how it could be expanded to a generic set of wide dwds .
|
@xcite constrained the ifmr using the wide dwd pg 0922@xmath0162 .
these authors compared the more massive wd ( 0.8ex1.10 m@xmath1 ) to similarly massive wds in open clusters for which an initial ( zams ) mass @xmath2 had been published , thereby obtaining @xmath3 m@xmath1 for this wd .
@xcite converted this mass into a pre - wd lifetime of 42@xmath486 myr , to which they added the cooling age @xmath5 of the massive wd to derive a system age of @xmath6 myr .
these authors then used the less massive wd in pg 0922@xmath0162 to constrain the ifmr : they derived a pre - wd lifetime for this 0.79 m@xmath1 wd of @xmath7 myr by subtracting its @xmath5 from the system age , and obtained @xmath8 m@xmath1 for its progenitor .
the @xcite result is one of the most stringent constraints on the ifmr , and is one of the reasons @xcite anchored his semi - empirical ifmr at @xmath9 m@xmath1 and @xmath10 m@xmath1 . in principle ,
if a reasonable estimate of the system age can be determined from the more massive wd , this method can be applied to _ any _ wide dwd .
the @xcite study has not been widely replicated , however . until recently , there were @xmath1135 known wide dwds ; many of these lacked spectra , and even those with spectra were ill - suited to this analysis because of large @xmath5 uncertainties .
in @xcite we identified 11 new dwds selected by searching for common proper motion ( @xmath12 ) companions to spectroscopically confirmed sdss wds .
this pilot study illustrated the robustness of our method for selecting dwds .
our tests to separate random alignments from high - confidence pairs indicated that wide dwds could be identified without spectroscopy , using sdss photometry and a minimum @xmath12 cut instead . here , we present the findings of our expanded search for dwds in the sdss data release 9 .
we identified 65 systems , bringing the total number of candidate wide dwds to 142 .
we then discuss how spectroscopic follow - up may allow us to use these dwds to constrain the ifmr .
we first searched for dwds by matching proper motions of wd candidates in the sdss dr9 . from dr9
s @xmath13@xmath14 primary photometric objects , we selected those classified as stars that matched our photometric and @xmath12 quality constraints ( @xmath15 mag , @xmath16 mag , @xmath17 mas yr@xmath18 , @xmath19 mas yr@xmath18 ) . to include both hydrogen - atmosphere da wds and helium - atmosphere db wds in this search , we used a liberal color constraint , selecting those stars with @xmath20 and @xmath21 .
the left panel of figure [ fig : dr9_search ] shows the @xmath22 versus @xmath23 colors of the @xmath11@xmath24 sdss objects that met our quality constraints and fell within this region of color space .
our @xmath17 mas yr@xmath18 criterion should eliminate nearly all qsos .
contaminating main - sequence stars and subdwarfs are more difficult to remove , as these objects may overlap with wds in color and may have @xmath17 mas yr@xmath18 .
however , wds can be effectively separated from blue stars in a reduced proper motion ( h@xmath25 ) diagram .
the right panel in figure [ fig : dr9_search ] is h@xmath25 versus @xmath26 for the objects in our sample .
we used the dashed line in the right panel of figure [ fig : dr9_search ] , adapted from @xcite , to separate subdwarfs from wds , thereby reducing our sample to @xmath1134,000 objects .
next , we searched for @xmath12 matches .
a match occurs when two wds had an angular separation @xmath27 , and , following @xcite , a matching parameter @xmath28 . , where @xmath29 is the difference in @xmath12 in right ascension ( @xmath30 ) and declination ( @xmath31 ) , and @xmath32 is the error in @xmath12 .
] we identified 57 candidate dwds , and selected the 36 pairs with @xmath33 as high - probability dwd candidates ; 13 had previously been identified .
we added four pairs at larger @xmath34 but with @xmath35 mas yr@xmath18 ; with such large common @xmath12 these are unlikely to be random alignments .
the number of new candidate common @xmath12 dwds is 27 .
dhital et al .
( in prep . )
search sdss for photometrically resolved , small @xmath34 pairs of low - mass stars .
these authors identify @xmath134@xmath36 pairs with @xmath37@xmath410@xmath38 and argue that wide pairs can be efficiently identified without having to match @xmath12 .
similarly , @xcite identified a set of wide sdss dwds with @xmath39 based only on photometry .
we began our photometric search for dwds by applying the more stringent color - color constraint described in @xcite to obtain candidate wds : without @xmath12 measurements , subdwarfs and qsos become a significant source of contamination .
@xcite estimated that 17% of the objects falling within this color - color region are qsos .
however , this was based on a @xmath40 mag sample of objects with sdss spectra .
our sample extends to @xmath41 , and we expected qsos to be a more significant contaminant .
we therefore added the additional constraint that objects with @xmath42 should have @xmath43 . of the surviving objects , we selected the 43 pairs with @xmath44 as high - confidence candidate dwds .
five of these were previously known , so that we have 38 new , photometrically selected , candidate dwds . among the previously known wide dwds
are the 11 systems identified in @xcite and 36 systems identified elsewhere in the literature . to that sample
we add 27 common @xmath12 systems and 38 identified by their small @xmath34 .
@xcite found 53 wide dwds in sdss and spectroscopically confirmed 26 of these ( one additional pair was found to be a contaminant ) .
thirty of the 53 dwds are new , and 11 of these are spectroscopically confirmed . in total
, we therefore have a sample of 142 candidate and confirmed wide dwds , including 19 @xcite new candidate pairs and the 11 these authors have confirmed spectroscopically .
over 13 half nights between 2012 sep and 2013 sep , we observed 34 dwds with the 3.5-m telescope at apache point observatory , nm - m telescope is operated by the astrophysical research consortium . ] with the dual imaging spectrograph in its high - resolution mode ( r @xmath45 at h@xmath46 ) . to these spectra
we add @xmath1130 spectra from sdss ( r @xmath11 1800 ) and @xmath1110 spectra taken with very large telescope ( r @xmath11 15,000 ) from the supernova progenitor survey ( d. koester , pers .
comm . ) . in total , we have 114 spectra for 97 wds in wide dwds .
our contamination rate by non - wds is extremely low ( 0.8ex5% ) : one target is an a star . to obtain @xmath47 and
log @xmath48 for these wds , we used the technique developed by @xcite and described in ( * ? ? ? * and references therein ) , which incorporates model atmospheres for wds with @xmath49 log @xmath48 @xmath50 .
the observed and theoretical spectra are normalized to a continuum set to unity , and the observed h@xmath46 to h8 lines are fit simultaneously to the synthetic spectra .
we applied the fitting formulas @xcite provide to the @xmath47 and log @xmath48 solutions to adjust from the standard mixing - length approximation to the 3d simulation results .
next , we used the @xcite models to map our @xmath47 and log @xmath48 values to @xmath5 and masses ( @xmath51 ) for each of our wds .
our fits also provided distances to the wds , determined by comparing photometric magnitudes with absolute magnitudes from the spectroscopic solutions .
in figure [ fig : pg0922 ] we reproduce one of the critical steps used by @xcite to constrain the ifmr : the conversion of stellar main - sequence lifetimes into initial masses . because the relation between lifetime and mass is steeper for longer - lived / lower - mass main - sequence stars , even a large uncertainty in the assumed @xmath2 for the more massive wd in pg 0922@xmath0162 results in a stringent constraint on the @xmath2 of the less massive wd . to adapt this method to a generic wide dwd , we must be able to estimate the @xmath2 of the more massive wd in the pair . instead of comparing to wds in clusters , as was done by @xcite
, we can use the approximate ifmrs provided by stellar evolution codes .
such theoretical relations are imperfect , primarily due to the difficulty of modeling convective overshooting and asymptotic giant branch winds . nevertheless , by varying the different prescriptions for these processes and comparing to simulations from different groups , we can estimate the uncertainty in these theoretical relations .
for the majority of the wd mass range , these uncertainties are large , leading to a wide range for @xmath2 for the more massive wd .
however , figure [ fig : pg0922 ] shows that even large uncertainties in this estimate can lead to important constraints on the ifmr .
we are in the process of computing sets of theoretical relations with mesa .
we have searched sdss dr9 for wide dwds , identifying 65 new candidate pairs . through our spectroscopic
follow - up campaign , we characterized 32 da / da pairs .
we repeat the analysis of @xcite , who constrained the ifmr using the wide dwd pg 0922@xmath0162 , obtaining nearly identical results .
this method can be expanded to other wide dwds in our catalog . with the future _ gaia _ data release , many more of these systems will likely be identified , therefore refining this method will be important in placing future constraints on the ifmr .
we thank p. bergeron for fitting the db wds in our sample and d. koester for providing us with vlt spectra of several of the wds discussed here .
we thank lars bildsten , falk herwig , silvia catalan , marcelo miller bertolami , and rodolfo montez , jr . for stimulating and helpful discussions .
mk and ag gratefully acknowledge the support of the nsf and nasa under grants ast-1312678 and nnx14af65 g , respectively . , s. j. , kepler , s. o. , koester , d. , pelisoli , i. , pec canha , v. , nitta , a. , costa , j. e. s. , krzesinski , j. , dufour , p. , lachapelle , f .-
bergeron , p. , yip , c .- w . , harris , h. c. , eisenstein , d. j. , althaus , l. , & crsico , a. 2013 , , 204 , 5 .
|
@xcite constrained ifmr dwd pg 0922@xmath0162 compared massive wd 0.8ex1.10 m@xmath1 to wds initial mass @xmath2 published @xmath3 m@xmath1 converted mass into pre - wd lifetime 42@xmath486 myr added cooling age @xmath5 system age @xmath6 myr used less massive wd 0922@xmath0162 constrain derived pre - wd lifetime 0.79 m@xmath1 wd @xmath7 myr subtracting @xmath5 system age obtained @xmath8 m@xmath1 progenitor @xcite result ifmr anchored - empirical ifmr at @xmath9 m@xmath1 @xmath10 m@xmath1 estimate system age from massive wd method applied wide dwd @xcite study not widely replicated @xmath1135 known wide dwds lacked spectra ill - suited @xmath5 uncertainties identified 11 new dwds common proper motion @xmath12 ) companions spectroscopically confirmed wds pilot study illustrated robustness method selecting dwdstests random alignments high - confidence pairs wide dwds identified without spectroscopy using sdss photometry minimum @xmath12 cut present findings expanded search for dwds sdss data release 9 identified 65 systems total candidate wide dwds to 142 discuss spectroscopic follow - up constrain ifmr searched for dwds matching motions wd candidates in sdss dr9 from @xmath13@xmath14 photometric objects selected stars photometric @xmath12 quality constraints hydrogen - atmosphere da wds helium - atmosphere db wds used liberal color constraint selecting stars with @xmath20 @xmath21 left shows @xmath22 versus @xmath23 colors of @xmath11@xmath24 sdss objects quality constraints color @xmath17@xmath18 criterion eliminate qsos contaminating main - sequence stars subdwarfs difficult to remove overlap with wds wds separated from blue stars in reduced proper motion ( h@xmath25 ) diagram panel h@xmath25 versus @xmath26 objectsused dashed line right panel figure separate subdwarfs from wds reducing sample to @xmath1134,000 objects searched for @xmath12 matches match occurs when wds angular separation @xmath27 matching parameter @xmath28 @xmath29 difference in @xmath12 @xmath32 error in @xmath12 identified 57 candidate dwds selected 36 pairs with @xmath33 high - probability candidates 13 previously identified added four pairs at @xmath34 @xmath35 unlikely random alignments new candidate common @xmath12 dwds 27 dhital et al. search sdss for resolved small @xmath34 pairs low - mass stars identify @xmath134@xmath36 pairs with @xmath37@xmath410@xmath38 wide pairs identified without match @xmath12 identified wide sdss dwds with @xmath39 based photometry began search stringent color - color constraint @xcite obtain candidate wds without @xmath12 measurements subdwarfs qsos contamination estimated 17% objects region are qsos based on @xmath40 mag sample spectrasample extends to @xmath41 expected qsos significant contaminant added constraint objects with @xmath42 should have @xmath43 selected 43 pairs with @xmath44 high - confidence candidate dwds five previously known 38 new photometrically selected candidate dwds known 11 systems in @xcite 36 systems elsewhere literature 27 common @xmath12 systems 38 small @xmath34 @xcite found 53 wide dwds in sdss spectroscopically confirmed 26 one additional pair contaminant of 53 dwds new 11 spectroscopically confirmed total sample 142 candidate confirmed wide dwds 19 @xcite new candidate pairs 11 confirmed spectroscopically over 13 half nights between 2012 2013 sep observed 34 dwds with 3.5-m telescope at apache point observatory dual imaging spectrograph high - resolution @xmath1130 spectra from sdss @xmath1110 spectra large telescope supernova progenitor survey 114 spectra for 97 wds in wide dwds contamination rate by non - wds low ( 0.8ex5% ) one target star@xmath47 @xmath48 wds used technique @xcite incorporates model atmospheres for wds with @xmath49 @xmath50 observed theoretical spectra normalized continuum unity h@xmath46 to h8 lines fit to synthetic spectra applied fitting formulas @xcite @xmath47 @xmath48 standard mixing - length to 3d simulation used @xcite models map @xmath47 @xmath48 values to @xmath5 @xmath51 ) for wds provided distances to wds comparing photometric magnitudes with absolute magnitudes spectroscopic solutions figure @xcite conversion stellar main - sequence lifetimes into initial masses relation between lifetime mass steeper for longer - lived lower - mass main - sequence stars large uncertainty in @xmath2 massive wd constraint on @xmath2 less massive wd adapt method generic wide dwd estimate @xmath2 of more massive wd pair instead comparing wds clusters use approximate ifmrs stellar evolution codes theoretical relations imperfect due modeling convective overshooting asymptotic giant branch windsvarying prescriptions comparing simulations estimate uncertainty in theoretical relations majority of wd mass range uncertainties large leading wide range for @xmath2 massive wd figure pg0922 shows large uncertainties lead to constraints on ifmr computing theoretical relations with mesa searched sdss dr9 for wide dwds 65 new candidate pairs spectroscopic follow - campaign characterized 32 da / da pairs repeat analysis of @xcite constrained ifmr using wide dwd pg 0922@xmath0162 nearly identical results method can be expanded to other wide dwds future gaia data release more systems likely identified refining method important future constraints on ifmr thank p. bergeron db wds d. koester vlt spectra of wds thank lars bildsten falk herwig silvia catalan marcelo miller bertolami rodolfo montez for discussions mk ag acknowledge support of nsf nasa under grants ast-1312678 nnx14af65 g kepler koester pelisoli pec canha nitta costa krzesinski dufour lachapellebergeron p. yip harris h. eisenstein d. j. althaus l. crsico 2013 204 5 .
| 0.42842
| 2,625
| 1,369
|
, Saving $0.1 in GPT-4.
|
18,978
|
ss433 is a jet emitting x - ray binary surrounded by the w50 radio nebula .
the ss433/w50 system is an excellent laboratory for studying relativistic jet interaction with the surrounding interstellar medium . in this context
, part of the w50 nebula has been mapped with isocam at 15@xmath0 m .
i will show the results particularly on the w50 west lobe , and on 2 emitting zones detected with iras who have also been observed in millimetre wavelength ( co(1 - 0 ) transition ) , and for one of them by spectroscopy with isolws and isosws between 2 and 200 @xmath0 m .
|
ss433 is an x - ray binary probably composed of a high - mass star and a neutron star , with a 13 days binary period .
the system emits relativistic ( 0.26c ) jets showing a 162.5 days precession observed at subarcsecond scale in radio till from ss433 . at large scale these jets are observed in x - ray begining at @xmath1 ( 14pc ) from ss433 , and they are responsible for the unusual elongated shape of w50 ( @xmath2 ) , the possible supernova remnant radio nebula around ss433 .
we mapped at 15@xmath0 m with , the infrared camera on board of the infrared space observatory ( iso ) , a small part of the eastern lobe where an x - ray knot lies , the north - east quarter of the central circular part of w50 , and nearly all the western lobe .
there is no particular 15@xmath0 m emission in the observed east parts of w50 , and no correlation was found between the ir images and the corresponding ones in x - ray ( with rosat and asca ) and radio ( at 20 cm ) , both for the central field and for the x - ray knot area .
this is not surprising as the central part of w50 must have been swept away from its material by the supernova explosion , and the eastern lobe is described as faint in radio and less dense than the western one by dubner et al .
the x - ray knot , the brightest knot seen by rosat at 0.12.4kev and called `` e2 '' by safi - harb and gelman ( 1997 ) , is coincident with an optical filament and is probably due to shocks with the supernova remnant ( safi - harb and petre 1999 ) , but it is not visible at 15@xmath0 m with isocam sensitivity .
the western lobe map at 1416@xmath0 m ( see fig.1 ) shows two main emitting regions aligned with the relativistic jet direction predicted by the kinematic model ( margon 1984 and references there in ) based on the radio compact jets observations , and seen at large scale in x - ray ( see fig.2 ) .
the western x - ray lobe was observed with rosat ( 0.12.4kev ) by brinkmann et al .
( 1996 ) , and with rosat and asca ( 0.59kev ) by safi - harb and gelman ( 1997 ) who could not conclude if its emission is thermal or not .
it is only partly coincident with the nearest isocam emission region from ss433 ( see fig.2 ) .
its soft x - ray emission fades and its hard x - ray one disappears where the second emitting region begins .
this farest ir emitting region from ss433 coincides with the radio `` ear '' emission at the western edge of w50 .
+ these two isocam emitting regions correspond to ir knots observed with iras at 12 , 25 , 60 and 100@xmath0 m by band ( 1987 ) , and named `` knot 2 '' for the nearest region from ss433 and `` knot 3 '' for the farest ( see fig.3 ) .
the @xmath5 per pixel isocam spatial resolution enables to reveal their structure for the first time .
the 15@xmath0 m knots emission is diffuse with punctual or not `` hot spots '' . + no emission from the co(1 - 0 ) transition line at 115ghz
is observed between ss433 and `` knot 2 '' , as in ir at 15@xmath0 m in the isocam image .
two emitting regions are coincident with the two iras knots as shown in fig.3 ( data kindly provided by durouchoux , private communication ) .
their doppler velocity is @xmath6km.s@xmath7 which corresponds to the same distance as w50 .
their shapes are similar to the isocam shapes , so the ir and millimetre emissions are unlikely coincident by chance but must be physically linked .
so the observed isocam emissions are due to regions lying inside w50 .
+ m image .
the iras knots locations are indicated .
`` knot 2 '' and `` knot 3 '' are emitting regions in both ir and millimetre with similar shapes .
`` knot 6 '' lies just at the border of w50 and was not observed at millimetre wavelengths.,width=453 ] `` knot 3 '' was observed with isosws and isolws , respectively the short and long - wavelength spectrometers on board of the iso satellite .
sws observation consists in several small wavelength - range spectra between 2 and 40 @xmath0 m , which do not reveal any emission lines when the flux is not under the detection limit .
the lws continuum spectrum , between 40 and 200 @xmath0 m , is consistent above 60@xmath0 m with optically thin or optically thick thermal emission from dust at @xmath8k . below 60@xmath0
m , the spectrum is flatter due to an additionnal component thermal or not .
+ interpretation of the two knots emission is uncertain due to the lack of observations in near and mid - infrared wavelengths where it could be thermal or not .
the oberved ir emission could be due to dust regions heated by young stars still embedded in their molecular birth clouds .
these regions could be crossed by the relativistic western jet , which then could heat the dust with collisions between its energetic particles and the denser material of these clouds .
otherwise , the mid - infrared emission could be of synchrotron nature , coming from the very energetic particles of the jet , reaccelerated by shocks with the western lobe denser medium .
these particles would lose their energy by synchrotron radiation in x - ray , then in ir as they travel further from ss433 .
+ more multi - wavelength observations , are planed : in near - infrared in order to reveal shocked regions or young star regions , in millimetre in order to map the whole western lobe and to know the molecular clouds limits , in x - ray with xmm - newton to distinguish between thermal and non thermal emission and thanks to the better spatial resolution to compare precisely the x - ray images with the other wavelengths ones .
these new data will help to better understand the emission mecanisms from these large scale relativistic jets , and they could also help understanding extragalactic jets from agn as there are larger scales replica . brinkmann w. 1996 , a&a , 312 , 306 .
dubner , g.m .
1998 , apj , 116 , 1842 .
band , d.l .
1987 , pasp , 99 , 1269 .
margon , b. 1984 , araa 22 , 507 .
safi - harb , s. & gelman , h. 1997 , apj , 483 , 868 .
safi - harb , s. & petre , r. 1999 , apj , 512 , 784 .
|
ss433 x - ray binary high - mass star neutron star 13 days binary period emits relativistic ( 0.26c ) jets 162.5 days precession subarcsecond scale radio from ss433 large scale jets x - ray @xmath1 ( 14pc ) from ss433 responsible for elongated shape of w50 ( @xmath2 ) possible supernova remnant radio nebula around mapped at 15@xmath0 m infrared camera small eastern lobe x - ray knot north - east quarter central circular part w50 western lobe no 15@xmath0 m emission east parts w50 no correlation between ir images x - ray radio central field x - ray knot area central part w50 swept by supernova explosion eastern lobe faint in radio less dense western x - ray knot brightest rosat 0.12.4kev `` e2 '' - coincident with optical filament due to shocks supernova remnant not visible at 15@xmath0 m with isocam sensitivity western lobe map at 1416@xmath0 m fig.shows two emitting regions with jet direction kinematic model 1984 radio jets observations large x - ray fig.2 western x - ray lobe observed with rosat 0.12.4kev brinkmann 1996 asca 0.59kev safi - harb gelman 1997 emission thermal partly coincident with nearest isocam emission region from ss433 soft x - ray emission fades hard x - ray disappears second region begins farest ir region from ss433 coincides with radio ear emission western edge w50 two isocam regions correspond to ir knots observed at 12 25 60 100@xmath0 m by band 1987 named knot 2 knot 3 farest @xmath5 per pixel isocam resolution structure 15@xmath0 m knots emission diffuse hot spots no emission from co(1 - 0 transition line at 115ghz between ss433 knot 2 15@xmath0 m two emitting regions coincident with iras knots fig.3 durouchoux doppler velocity @xmath6km.s@xmath7 same distance as w50 shapes similar to isocam shapes ir millimetre emissions unlikely must physically linkedobserved isocam emissions due to regions inside w50 knots locations indicated knot 2 3 emitting regions ir millimetre similar shapes knot 6 at border w50 not observed at millimetre wavelengths knot 3 observed with isosws isolws spectrometers iso satellite sws observation small wavelength range spectra between 2 40 @xmath0 m emission lines under detection limit lws continuum spectrum between 40 200 @xmath0 m consistent above 60@xmath0 m with thin or thick thermal emission from dust at @xmath8k below 60@xmath0 m spectrum flatter additionnal component thermal interpretation two knots emission uncertain lack of observations in near mid - infrared wavelengths ir emission due to dust regions heated by young stars crossed by western jet heat dust mid - infrared emission synchrotron from energetic particles jet reaccelerated by shocks western lobe medium particles lose energy by radiation in x - ray ir from ss433multi - wavelength observations near - infrared reveal shocked young star millimetre map western lobe molecular clouds limits x - ray xmm - newton distinguish thermal non thermal emission better spatial resolution compare x - ray images new data understand emission large scale relativistic jets extragalactic jets brinkmann 1996 a&a , 312 , 306 dubner 1998 apj 116 , 1842 band 1987 pasp 99 , 1269 margon 1984 araa 22 , 507 safi - harb gelman 1997 apj 483 , 868 safi - harb petre 1999 apj 512 , 784
| 0.264876
| 1,545
| 805
|
, Saving $0.0 in GPT-4.
|
18,982
|
a complete numerical solution of the evolution equation for parton multiplicities in quark and gluon jets with initial conditions at threshold is presented .
data on both hadron and jet multiplicities in @xmath0 annihilation are well described with a common normalization , giving further support to the picture of local parton hadron duality .
predictions for lep - ii energies are presented .
furthermore we study the sensitivity to the cutoff parameter @xmath1 and the scale of @xmath2 . * perturbative qcd description of mean jet and * * particle multiplicities in @xmath0 annihilation * sergio lupia and wolfgang ochs _ max - planck - institut fr physik _ _ ( werner - heisenberg - institut ) _ _ fhringer ring 6 , d-80805 mnchen , germany _ * abstract *
|
perturbative qcd calculations give a good description of data on jet observables as far as a scale of few gev s is involved in the process . for instance , in @xmath0 annihilation the dependence of the mean jet multiplicity on the resolution parameter @xmath3 defined in the durham algorithm is well reproduced by qcd calculations in absolute normalizations down to @xmath4 , i.e. to a scale of a few gev s , when leading and next - to - leading terms in @xmath5 are resummed and a matching with the full two - loop result is performed@xcite . in the softer region with scales of the order of 1 gev or less , deviations from purely perturbative predictions are visible and this is usually explained in terms of purely non perturbative hadronization effects . however , following the idea of a soft hadronization mechanism @xcite , a simple picture of hadronization , known as local parton hadron duality @xcite , has been indeed formulated , where the same perturbative description of qcd parton cascade is stretched down to small scales of a few hundred mev for the transverse momentum cutoff @xmath1 , and then parton predictions are directly compared to hadron distribution up to an overall normalization factor .
the interesting feature of this picture is that it is surprisingly successful in describing the phenomenology of hadron production , as far as sufficiently inclusive observables , like particle multiplicity or inclusive energy spectra , are concerned @xcite .
even though both parton multiplicities and jet multiplicities are described with the same type of evolution equation , two different sets of parameters , and in particular , two different normalization factors , were needed so far to describe phenomenologically the experimental results on the two observables . here
we show that both observables can be described in an unified way , if the complete qcd master equation which describes the evolution of a parton cascade is exactly solved .
we refer to @xcite for further details on this calculation .
the perturbative qcd picture gives a probabilistic description of the production process of a multiparton final state in terms of a parton cascade .
formally , the physical information about this process is entirely contained in the evolution equation for the generating functional of the multiparton final state @xcite ; in its more general formulation , this equation correctly takes into account angular ordering , energy conservation and the running coupling at the one - loop order ; the choice of the thansvere momentum as the variable which enters in the coupling incorporate at least part of higher order effects . the infrared cutoff @xmath6 also provides one with a natural regularization of the infrared singularity in the running coupling . by appropriate differentiation of the equation for the generating functional , a coupled system of two evolution equations for the mean parton multiplicities @xmath7 and @xmath8 in quark and
gluon jets can be derived @xcite : @xmath9 \nonumber \\
\frac{d{{\mathcal n}_q}(\eta)}{d\eta } = \int_{z_c}^{1-z_c } dz \frac{\alpha_s(\tilde k_\perp)}{2\pi }
\phi_{qg}(z ) \label{eveq}\\ \{{{\mathcal n}_g}(\eta+\ln z ) + { { \mathcal n}_q}(\eta+\ln ( 1-z))-{{\mathcal n}_q}(\eta)\ } \nonumber.\end{gathered}\ ] ] the @xmath10 are the ap splitting functions for the process @xmath11 , @xmath12 and @xmath13 are the numbers of colours and flavours respectively , @xmath14 , where @xmath15 , with @xmath16 the hard scale of the process ( @xmath17 in @xmath0 annihilation ) and @xmath18 the maximum angle between the outgoing partons .
@xmath19 is the one - loop running coupling , given by @xmath20 with @xmath21 and a smooth matching of the running through the heavy quark thresholds@xcite .
the argument of @xmath2 is chosen to be the `` durham '' transverse momentum @xmath22 the boundaries of the integral over the parton momentum fractions @xmath23 are determined by the lower cutoff @xmath24 and given by @xmath25 . since @xmath26 , one finds @xmath27 and then @xmath28 .
the coupled system of evolution equations must of course be supplemented by a suitable set of initial conditions ; they are fixed at threshold to be : @xmath29 this master equation contains the correct leading and next - to - leading terms in an @xmath30 expansion , but it has been obtained by using approximations valid in the limit of soft emission ( for instance , the definition of @xmath31 given in ( [ kperp ] ) comes from the durham definition of @xmath32 in the limit of small @xmath23 . ) . in other words ,
non - logarithmic terms have been neglected in the derivation of the master equation , and these terms give a non - negligible contribution in the region of small @xmath33 ( i.e. , poor resolution ( large @xmath3 ) or low @xmath34 energy ( small @xmath16 ) ) . to improve the description in this region ,
the contribution of @xmath35 in ( [ eveq ] ) has been replaced by the explicit result for @xmath36 partons in @xmath35@xcite : @xmath37 where @xmath38 is obtained by taking the first iteration of ( [ eveq ] ) with the initial conditions ( [ init ] ) and the full @xmath35 contribution is given by : @xmath39 where @xmath40 ( @xmath41 ) denote the quark ( antiquark ) and @xmath42 the gluon momentum fractions ( @xmath43 = 4/3 ) .
the average jet multiplicity at @xmath16 = 91 gev as a function of the resolution parameter @xmath44 , defined via the durham algorithm , is shown in figure 1@xcite ( lower data points ) .
also shown in the lower part of the figure is the theoretical prediction in absolute normalization of the jet multiplicity at the same @xmath34 energies of 91 gev , as obtained from ( [ nepem ] ) .
the predictions depend on the single parameter @xmath45 only , so we can use the lep-1 data on jet multiplicity to fix the best value of the qcd scale @xmath45 .
the best value of @xmath45 turns out to be @xmath46 mev , in qualitative agreement with previous results within the mlla framework@xcite .
the main improvement of our new approach in comparison to the old results is that we can now describe experimental data down to very small values of the resolution parameter @xmath3 ; therefore , after having properly taken into account the effects of energy conservation , the validity of the perturbative picture can be extended well below the scale of 2 - 3 gev which was usually claimed to be the soft scale where hadronization effects beyond perturbative qcd take place . in the figure the predictions on the jet multiplicity at lep-2 @xmath34 energies are also shown .
these curves could be compared with new data recently collected at cern . after having fixed the first parameter @xmath45
, we can now ask ourselves whether it is possible to describe also the @xmath34 energy dependence of hadron multiplicity within the same framework . in this case , we can still choose two free parameters , the hadronic scale related to the @xmath32 cutoff @xmath1 and the normalization parameter @xmath47 , which relates parton and hadron multiplicities as @xmath48 .
it turns out that a common description is indeed possible , with parameters given by @xmath47 = 1 and @xmath49 ( i.e. , @xmath50 507 mev ) .
figure 1 ( upper data points ) shows the data on hadron multiplicities from @xmath17 = 1.6 ( only pions ) up to 172 gev @xcite taken as @xmath51 as a function of the resolution parameter @xmath52 , together with the perturbative predictions of ( [ nepem ] ) with the aforementioned parameters .
it is clear from the figure that the perturbative approach can describe quantitatively the hadron multiplicity even at very small @xmath34 energies , thus extending again the range of validity of the perturbative picture .
we refer to @xcite for a more detailed comparison of our new numerical results with previous analytical approximate solutions .
let us stress that a common description of both hadron and jet multiplicities is possible with the common normalization @xmath53 , which is a natural value , since it provides the correct boundary conditions at threshold for both hadrons and jets .
it is interesting to study the dependence of our results on the infrared cutoff @xmath1 ; one could indeed stop the parton evolution at a larger scale of the order of 1 - 2 gev and then fill the gap between partonic predictions and experimental data using purely nonperturbative hadronization models , as implemented in the most used monte carlo models .
the perturbative predictions for the parton multiplicity with different values of the infrared cutoff @xmath1 are shown in fig .
notice that in our picture most of the particles ( @xmath54 ) are produced in the very last stage of the evolution for 0.5<@xmath1<1 gev , where monte carlo models already stopped the perturbative phase .
a different value of @xmath1 also changes the energy dependence of the predicted parton multiplicity .
it is indeed remarkable that the right energy dependence of particle multiplicity can be reproduced with a small value of the infrared cutoff @xmath1 and a normalization factor @xmath47 = 1 .
a residual correlation among the two parameters exists , so a variation of one of the two parameters within 30% can be accomodated by adjusting the other one .
it is important to stress that the evolution variable @xmath14 in ( [ eveq ] ) is given by the ratio of the two dimensional scales which enter in the problem , i.e. , the external scale @xmath16 and the resolution scale @xmath55 .
therefore , the same evolution equation controls both the @xmath34 energy dependence of the cluster multiplicity , with clusters defined at a given resolution ( where @xmath16 varies and @xmath55 is fixed ) , and the resolution dependence of the jet multiplicity at a fixed hard scale @xmath16 ( where @xmath16 is fixed and @xmath55 varies ) .
there is indeed only one place where the two scales enter separately and not through their ratio , namely the expression of the running coupling @xmath2 , where only @xmath16 ( and @xmath45 ) but not @xmath55 appears .
therefore , if one would switch off the running of the coupling , the equation would depend only on the dimensionless variable @xmath33 and there would be no difference at all between jet and hadron multiplicities .
it is then clear that the difference between the two multiplicities entirely comes from the running of the coupling .
notice that this difference goes up to a factor 10 in the region of large @xmath3 ( i.e. , small @xmath34 energy for hadron multiplicity ) , and this factor is within this picture completely related to the increased coupling at small transverse momentum .
this result further confirms previous results on energy spectra@xcite .
the effect of the running of the coupling is visible not only in the difference between the two curves , in particular at large values of @xmath3 , but it is also directly visible in the strong rise of the jet multiplicity in the high resolution region ( low @xmath3 ) ( see fig .
2 ) . indeed , the jet multiplicity increases roughly by a factor 3 if one lowers the resolution cutoff from 0.9 down to 0.5 gev , as expected by the quick growing of the running coupling close to the landau singularity ( which is however screened by the @xmath55 cutoff ) .
such results are qualitatively consistent with expectations from the double log approximation@xcite .
the numerical solution of the coupled system of evolution equations ( [ eveq ] ) provides one with new results on the mean multiplicity @xmath56 in gluon jets , and then also for the ratio of hadron multiplicities in quark and gluon jets , @xmath57 .
this observable has received a lot of attention both theoretically and experimentally .
theoretically , different predictions were derived for the mean parton multiplicity in a full hemisphere of the gluon jet produced by a primary @xmath58 colour singlet state .
the asymptotic value of @xmath59 = 9/4 has been successively reduced to smaller values , by including next - to - leading order and even part of higher order correction ( see @xcite for a discussion of this point ) .
experimentally , a completely inclusive configuration similar to the theoretical predictions has recently been realized in the decay @xmath60 by the cleo collaboration @xcite and in @xmath36 jets with nearly parallel @xmath61 and @xmath62 recoiling against the gluon by the opal collaboration@xcite . by numerically solving the evolution equation ( [ eveq ] ) with initial condition ( [ init ] ) ( without any finite order correction term yet ) ,
the prediction for the ratio @xmath59 is further reduced with respect to the previous approximate calculations and can describe the opal data for jets of 40 gev very well .
one fails , however , to reproduce the cleo data for jets of about 5 gev .
this failure could be due to an important contribution from the fixed order correction term , not yet included so far .
all results we have shown so far have been obtained by using the durham - inspired definition of transverse momentum given in ( [ kperp ] ) . with this method ,
a value of the parameter @xmath63 consistent with the previous finding from the energy moments @xcite has been found ; however , the scale @xmath45 ( or , equivalently , @xmath1 ) has turned out to be larger than the value of @xmath64 250 mev used in the description of energy spectra@xcite . in the latter case
, the alternative definition of @xmath65 has been used . to check whether this difference plays an important role , an alternative calculation with this different definition of the transverse momentum has been performed . as shown in fig . 3
, a good description of experimental data is indeed possible also in this case , but with a lowered scale @xmath66 gev and the same @xmath63 parameter .
the remaining difference to the earlier @xmath45 comes from having taken the new scale @xmath67 instead of @xmath68 in the new calculation .
therefore , the new results presented here are completely consistent with previous studies of the energy spectra .
the complete qcd evolution equations for quark and gluon jets has been numerically solved . by including also the full @xmath35 correction for @xmath0 annihilation ,
a common description of the resolution dependence of jet multiplicity at lep-1 and of the @xmath34 energy dependence of hadron multiplicity in the whole @xmath34 energy range has been achieved with two free parameters only and an overall normalization factor consistent with 1 .
the ratio of hadron multiplicity in gluon and quark jets at lep-1 is described as well . for such inclusive observables the perturbative description turned out to be valid also in extreme kinematical domains , thus extending the region of validity of the perturbative approach supplemented by the local parton hadron duality picture .
further tests of this picture and , in particular , of its validity for soft particles and for less inclusive observables are certainly needed ; some of them are discussed in @xcite .
one of us ( s.l . ) would like to thank giulia pancheri and the whole organizing committee for the nice atmosphere created at the conference .
|
perturbative qcd calculations data jet observables scale few gev s in @xmath0 annihilation dependence mean jet multiplicity on resolution parameter @xmath3 durham algorithm reproduced by qcd calculations in normalizations to @xmath4 scale few gev s leading terms in @xmath5 resummed matching with full two - loop result performed in softer region scales 1 gev or less deviations from perturbative predictions visible explained non perturbative hadronization effects following soft hadronization mechanism local parton hadron duality formulated perturbative description of qcd parton cascade stretched to small scales few hundred mev for transverse momentum cutoff @xmath1 parton predictions compared to hadron distribution normalization factor picture successful in describing phenomenology hadron production inclusive observables particle multiplicity energy spectra parton multiplicities and jet multiplicities described same evolution equation two different sets parameters normalization factors needed to describe experimental results on two observables both observables described if complete qcd master equation evolution parton cascade solved refer to @xcite for further detailsperturbative qcd picture probabilistic production process multiparton final state parton cascade physical information in evolution equation for generating functional multiparton final state @xcite equation angular ordering energy conservation running coupling at one - loop order choice thansvere momentum variable coupling higher order effects infrared cutoff @xmath6 provides natural regularization of infrared singularity in running coupling differentiation equation generating functional coupled system two evolution equations for mean parton multiplicities @xmath7 and @xmath8 in quark gluon jets derived @xcite @xmath9 \nonumber\mathcal n}_q}\eta\eta = \int_{z_c}{1-z_c }\alpha_s\pi}(z\mathcal n\eta+ @xmath10 are ap splitting functions for process @xmath11 @xmath12 @xmath13 are numbers of colours flavours @xmath14 @xmath15 @xmath16 hard scale of process @xmath17 @xmath18 maximum angle between outgoing partons@xmath19 one - loop running coupling @xmath20 @xmath21 smooth matching heavy quark thresholds argument @xmath2 durham '' transverse momentum @xmath22 boundaries integral parton momentum fractions @xmath23 determined by lower cutoff @xmath24 @xmath25 @xmath26 finds @xmath27 @xmath28 coupled evolution equations supplemented initial conditions fixed at threshold @xmath29 master equation contains correct leading next - - leading terms @xmath30 expansion obtained approximations valid limit soft emission definition @xmath31 from durham definition @xmath32 small @xmath23 non - logarithmic terms neglected derivation master equation non - negligible contribution region small @xmath33 poor resolution low @xmath34 energy contribution @xmath35 [ eveq replaced by explicit result @xmath36 partons @xmath35 @xmath37 @xmath38 obtained first iteration ( [ eveq ] ) initial conditions full @xmath35 contribution @xmath39 @xmath40 @xmath41 quark antiquark @xmath42 gluon momentum fractions @xmath43 = 4/3 )average jet multiplicity at @xmath16 = 91 gev function of resolution parameter @xmath44 defined via durham algorithm shown in figure 1@xcite lower data points theoretical prediction normalization of jet multiplicity at @xmath34 energies of 91 gev obtained from nepem predictions depend on parameter @xmath45 lep-1 data jet multiplicity to fix best value qcd scale @xmath45 best value @xmath46 mev agreement with previous results mlla framework@xcite improvement describe experimental data small values resolution parameter @xmath3 validity of perturbative picture extended below scale 2 - 3 gev hadronization figure predictions on jet multiplicity at lep-2 @xmath34 energies shown curves compared with new data at cern fixed first parameter @xmath45 describe @xmath34 energy dependence of hadron multiplicity same framework choose two free parameters hadronic scale related to @xmath32 cutoff @xmath1 and normalization parameter @xmath47 parton hadron multiplicities @xmath48 common description possible with parameters by @xmath47 = 1 and @xmath49 @xmath50 507 mev )figure 1 shows data hadron multiplicities from @xmath17 = 1.6 up to 172 gev @xcite @xmath51 function of resolution parameter @xmath52 perturbative predictions nepem parameters perturbative approach hadron multiplicity at small @xmath34 energies extending range validity refer to @xcite for detailed comparison new results with common description hadron and jet multiplicities with normalization @xmath53 natural value boundary conditions study dependence on infrared cutoff @xmath1 stop parton evolution at larger scale 1 - 2 gev fill gap between predictions experimental data using nonperturbative hadronization models perturbative predictions for parton multiplicity with different values infrared cutoff @xmath1 shown in fig . particles @xmath54 produced last stage evolution for 0.5<@xmath1<1 gev carlo models stopped perturbative phase different value of @xmath1 changes energy dependence predicted parton multiplicity right energy dependence particle multiplicity reproduced with small value infrared cutoff @xmath1 and normalization factor @xmath47 = 1 residual correlation among two parameters exists variation within 30% accomodated by adjusting otherevolution variable @xmath14 given by ratio of two dimensional scales external scale @xmath16 and resolution scale @xmath55 same evolution equation controls @xmath34 energy dependence of cluster multiplicity resolution and resolution dependence of jet multiplicity at fixed hard scale @xmath16 one place where two scales enter separately not through ratio expression running coupling @xmath2 where only @xmath16 @xmath45 not @xmath55 appears if switch off running coupling equation on dimensionless variable @xmath33 no difference between jet and hadron multiplicities difference multiplicities from running coupling difference up to factor 10 in region of large @xmath3 small @xmath34 energy for hadron multiplicity related to increased coupling at small transverse momentum confirms results on energy spectra@xcite effect of running coupling visible in difference between two curves at large values of @xmath3 in strong rise of jet multiplicity in high resolution region ( low @xmath3 ) fig . 2jet multiplicity increases factor 3 lowers resolution cutoff from 0.9 to 0.5 gev expected by quick growing running coupling close to landau singularity screened by @xmath55 cutoff results consistent with double log approximation@xcite numerical solution coupled system evolution equations provides new results on mean multiplicity @xmath56 in gluon jets ratio hadron multiplicities in quark gluon jets @xmath57 observable received attention theoretically experimentally different predictions derived for mean parton multiplicity in full hemisphere gluon jet primary @xmath58 colour singlet state asymptotic value of @xmath59 = 9/4 reduced to smaller values including next - order higher order correction experimentally inclusive configuration realized in decay @xmath60 @xmath36 jets @xmath61 @xmath62 recoiling against gluon solving evolution equation with initial condition without finite order correction term prediction for ratio @xmath59 reduced opal data for jets of 40 gev fails to reproduce cleo data for jets of 5 gev failure due to contribution fixed order correction termresults obtained durham - inspired definition transverse momentum kperp ) value parameter @xmath63 consistent with previous finding energy moments @xcite found scale @xmath45 larger than @xmath64 250 mev energy spectra@xcite alternative definition of @xmath65 used check difference alternative calculation with definition performed . 3 good description experimental data possible with lowered scale @xmath66 gev same @xmath63 parameter remaining difference to earlier @xmath45 from new scale @xmath67 instead of @xmath68 new results consistent with previous studies energy spectra complete qcd evolution equations for quark gluon jets numerically solved full @xmath35 correction for @xmath0 annihilation common description of resolution dependence of jet multiplicity at lep-1 @xmath34 energy dependence of hadron multiplicity achieved with two free parameters normalization factor consistent with 1 ratio of hadron multiplicity in gluon quark jets at lep-1 described perturbative description valid in extreme kinematical domains extending region of validity perturbative approach local parton hadron duality picture further tests picture validity for soft particles less inclusive observables needed discussed in @xcite thank giulia pancheri organizing committee for nice atmosphere conference
| 0.560692
| 3,461
| 1,806
|
, Saving $0.1 in GPT-4.
|
18,988
|
how does the submm galaxy population detected by scuba fit into galaxy evolution ? how do these rare starbursting systems , which contribute significantly to high redshift star - formation , relate to other galaxy populations ?
deep radio observations have been most useful for studying these systems , but still leave a significant fraction of the population unidentified . now with the deep irac and mips images from the goods _ spitzer _ legacy program and a re - analysis of the deep radio data , we are able to identify counterparts for a large fraction of scuba galaxies in goods - n .
all of these counterparts are detected by _
spitzer _ . given the vast multi - wavelength data in this field , we can study the spectral energy distributions ( seds ) of these systems and determine what is fueling their intense infrared luminosities . a rest - frame
composite optical - to - radio sed for all spectroscopically identified submm sources shows that the average scuba galaxy is consistent with models of ultraluminous starburst galaxies , although cooler than those observed locally .
because of this , the submm flux alone consistently overestimates @xmath0 when using spectral templates which obey the local ulirg temperature - luminosity relation . the wide range of 24/850 micron flux ratios as a function of redshift indicates the presence of strong mid - ir features , to be confirmed with deep irs spectroscopy .
the irac colours of the submm systems provide useful redshift constraints , since , at these redshifts , irac samples the stellar bump .
the _ spitzer _
photometry of this large sample of submm galaxies has allowed us to put constraints on many of the outstanding issues in submm astronomy .
|
the submillimetre common user bolometer array ( scuba , holland et al .
1999 ) on the james clerk maxwell telescope ( jcmt ) is efficient at finding high redshift dusty galaxies in blank - field extragalactic surveys .
these galaxies are ultraluminous , and are known to contribute significantly to the star - formation budget at high redshift ( e.g. lilly et al . 1999
; chapman et al . 2005 ) .
however a general understanding of the submm population is severely limited by the small number of known scuba sources , the large beam size at 850@xmath1 m , and their faintness at other wavelengths .
enormous progress has been made using radio observations to localize the submm sources ( e.g. ivison et al .
2000 ; smail et al .
2000 ; barger et al .
at least @xmath2 of currently known 850@xmath1 m galaxies have no radio counterpart in some of the deepest radio observations and therefore deep observations at other wavelengths are crucial .
no other scuba field has the extensive multiwavelength coverage of the great observatories origins deep survey ( goods ) northern field .
in addition to the vla radio imaging ( richards 2000 ; morrison et al . in prep ) , deep _ hubble space telescope _ ( _ hst _ ) imaging in four bands ( giavalisco et al . 2004 ) and the _ chandra _ 2 msec image ( alexander et al .
2003 ) , goods boasts the deepest observations taken in the infrared with irac and mips on the _ spitzer space telescope _
( dickinson et al . in preparation )
. goods - n is also home to a large amount of scuba data taken by several groups ( hughes et al .
1998 ; barger , cowie , & richards 2000 ; borys et al .
2003 ) , which have been combined into one large 850@xmath1 m ` super - map ' ( borys et al .
2003 , 2004 ; pope et al .
; irac @xmath3 m ; mips @xmath4 m ; and radio @xmath5ghz . all images are @xmath6 arcsec and the black circle is centred on the scuba position with a 7 arcsec radius .
the smaller black / white circle indicates the submm counterpart .
submm galaxies are quite faint at other wavelengths , but deep mips data are extremely valuable for identification . ,
width=288 ] we have identified 35 secure @xmath7 m sources in the goods - n submm super - map ( borys et al . 2003 ; pope et al . 2005 ) .
using all multi - wavelength data , unique counterparts are found for 94 per cent ( 33 out of 35 ) of these submm sources .
26 out of 35 are detected above @xmath8 in the new morrison et al .
reduction of the 1.4@xmath9ghz data and _ all _ of the counterparts are detected with irac and mips .
[ fig : postage ] shows multi - wavelength images of four of our submm sources .
m flux for submm counterparts in goods - n .
right : the @xmath10 ratio as a function of redshift for submm sources in goods - n .
the dashed curve is an sed template from chary & elbaz 2001 ( ce01 ) models , the solid curve is a modified ce01 template which includes additional extinction from draine ( 2003 ) , the dash - dot curve is the observed sed of arp220 and the dash - dot - dot curve is mrk231 , an ir - luminous agn .
the shaded region represents the region where the 9.7@xmath1 m silicate feature passes through the 24@xmath1 m passband .
, width=480 ] both scuba and _ spitzer _ are able to select distant star - forming galaxies which contribute significantly to the cosmic infrared background . in blank field surveys , scuba is primarily sensitive to the thermal dust emission from ultra - luminous galaxies at high redshift . while _
spitzer _ also detects these galaxies , its sensitivity is such that it detects galaxies over a wider range of luminosity and galaxy type .
the left panel of fig .
[ fig : comb1 ] shows the mips flux distribution for our @xmath7 m selected sample .
the vertical dashed lines indicate the 3@xmath11 limits of several other _ spitzer _
surveys : gto shallow survey of the bootes field ( e. le floch priv .
communication ) , fls , swire ( d. farrah priv .
communication ) and the gto deep survey of the lockman hole east region ( egami et al .
the gto shallow survey of the bootes field is deep enough to detect 25 per cent of the scuba galaxies . with the mips depth of the first look survey ( fls ) , or swire ( lonsdale et al .
2004 ) , we would detect 40 per cent of our submm counterparts . in the right panel of fig .
[ fig : comb1 ] , the @xmath10 ratio is plotted as a function of redshift for the sample of submm sources in goods - n as compared to several models .
the generally lower @xmath10 ratios for the submm sources suggest that they have higher levels of extinction , especially in the mid - ir , than the local ulirgs which were been used to construct these models .
in particular , the silicate absorption feature at 9.7@xmath1 m may be attenuating the 24@xmath1 m flux .
) , the circles are at high redshift ( @xmath12 ) and the triangles have unknown redshift .
crosses are sources which contain an agn , as indicated by the presence of hard x - rays .
right : composite sed for the goods - n submm sources with spectroscopic redshifts .
irac through radio photometry data are plotted .
the solid curve is a modified ce01 model for a cool starburst galaxy , where we have applied additional extinction using the draine ( 2003 ) models to minimize scatter relative to the data points .
the dash - dot curve is a ce01 model with the same luminosity but a different peak wavelength .
this template does not have any additional extinction and is a poor fit to the mid - ir and submm data points .
, width=480 ] at the redshifts of these submm galaxies , the irac channels are sampling the rest - frame near - ir , which is sensitive to direct emission from stars .
if these galaxies are not dominated by an agn at these wavelengths then the irac colours should show an indication of the @xmath13 m local peak of the @xmath14 stellar sed . in the left panel of fig .
[ fig : comb2 ] , we plot an irac - based colour - magnitide diagram , specifically @xmath15 as a function of @xmath16 , for the submm sources and the goods - n field galaxies .
the redshift of the submm source is indicated by the symbol type .
we see that @xmath17 provides a clear transition in this irac colour for the submm sources , due to the filters moving over the stellar peak .
the sources which lack redshift information are all consistent with the colours of the higher redshift submm sources .
there seems to be no strong colour distinction between the sources with and without a hard x - ray detection , although the former are generally brighter at @xmath18 m .
the right panel of fig .
[ fig : comb2 ] shows a composite sed for the submm sources in our sample which have spectroscopic redshifts , as compared to several models .
the main conclusion to be drawn from this plot is that high redshift submm galaxies appear to have different sed shapes from those observed locally for galaxies of similar luminosities .
a major contribution to this difference could be the temperature of the dust , but it is important to realize that this just means an sed peaking at longer wavelengths . the best - fit submm sed ( solid curve in fig .
[ fig : comb2 ] ) peaks at @xmath19 m ( t@xmath20@xmath21k ) , while a typical local ulirg template from ce01 ( dash - dot curve in right panel of fig .
[ fig : comb2 ] ) of the same luminosity peaks at @xmath22 m ( t@xmath20@xmath23k ) .
this result emphasizes the strong selection effects , both locally and at high redshift .
our knowledge of local ulirgs is not immune to selection effects , since it is dominated by results from iras which may preferentially select galaxies with warmer seds ( peaking at shorter wavelengths ) .
similarly at high redshift , 850@xmath1 m imaging preferentially selects galaxies which peak at longer wavelengths , and therefore comparing the two samples becomes problematic .
m flux and the redshift .
the left - hand axis is the estimated ir luminosity using data at 24@xmath1 m , @xmath7 m and @xmath5ghz .
, width=268 ] using the ce01 models , we have estimated the ir luminosity by fitting to the templates : 1 ) the @xmath7 m flux and the redshift , and 2 ) the @xmath4 m , @xmath7 m and @xmath5ghz flux and the redshift . fig .
[ fig : lum ] compares the infrared luminosity ( lir ) as estimated these two ways , by integrating from 81000@xmath1 m under the best - fit modified ce01 template . filled circles and squares denote submm sources with spectroscopic and photometric redshifts , respectively .
the crosses denote sources which contain an agn , as indicated by the presence of hard x - rays .
the top axis shows the corresponding star formation rate ( sfr ) using the expression in kennicutt ( 1998 ) .
using templates based on local ulirgs with a fixed luminosity - temperature relation ( ce01 ) , the submm flux will typically overestimate the luminosity .
this effect is most dramatic for less luminous submm objects which tend to lie at lower redshifts where the 850@xmath1 m window samples even further from the ir sed peak . the median ir luminosity ( using radio , submm and infrared flux ) for our sample is l@xmath24=@xmath25 , which corresponds to a sfr of @xmath26m@xmath27 .
using the deep _ spitzer _ legacy images and a re - reduction of the vla radio data , we find secure counterparts for a large sample of submm galaxies in goods - n .
the 24@xmath1 m to 850@xmath1 m flux density ratio as a function of redshift is low compared to models , suggesting that the silicate absorption feature at 9.7@xmath1 m may be attenuating the 24@xmath1 m flux .
a composite rest - frame sed shows that the submm sources peak at longer wavelengths than those of local ulirgs .
this demonstrates the strong selection effects , both locally and at high redshift , which may lead to an incomplete census of the ulirg population .
we determine the ir luminosity @xmath28 m ) by fitting models and find that the submm flux alone consistently overestimates @xmath0 when using spectral templates which obey the local ulirg temperature - luminosity relation .
the shorter _ spitzer _ wavelengths sample the stellar bump at the redshifts of the submm sources , and we find that the _ spitzer _
photometry alone provides a model independent estimate of the redshift .
more details on this work will be presented in pope et al .
( 2006 ) .
ap would like to thank the conference organizers for the opportunity to present this work .
this work was supported by the natural sciences and engineering research council of canada .
support for goods , part of the _ spitzer space telescope _
legacy science program , was provided by nasa through contract number 1224666 issued by jpl , caltech , under nasa contract 1407 .
alexander d.m . , et al . , 2003 ,
aj , 126 , 539 barger a.j . , et al . , 2000 ,
aj , 119 , 2092 borys c. , et al . , 2003 , mnras , 344 , 385 borys c. , et al . , 2004 ,
mnras , 355 , 485 chapman s.c . , et al . , 2005 , apj , 622 , 772 chary r. , elbaz d. , 2001 , apj , 556 , 562 draine b.t . , 2003 , ara&a , 41 , 241 egami e. , et al . , 2004 ,
apjs , 154 , 130 giavalisco m. , et al . , 2004 , apj , 600 , l93 holland w.s . , et al . , 1999 , mnras , 303 , 659 hughes d.h .
et al . , 1998 , nature , 394 , 241 ivison r.j .
, et al . ,
2000 , mnras , 315 , 209 kennicutt r.c . , 1998 , ara&a , 36 , 189 lilly s.j . , et al . , 1999 , apj , 518 , 641 lonsdale c. , et al . , 2004 , apjs , 154 , 54 pope a. , et al . , 2005 , mnras , 358 , 149 pope a. , et al . ,
2006 , mnras , submitted smail i. , et al .
, 2000 , apj , 528 , 612 richards e.a . , 2000 , apj , 533 , 611
|
submillimetre common user bolometer array ( scuba holland 1999 ) on james clerk maxwell telescope efficient at finding high redshift dusty galaxies in - field extragalactic surveys these galaxies ultraluminous contribute to star - formation budget at high redshift lilly 1999 chapman 2005 understanding of submm population limited by small number known scuba sources large beam size at 850@xmath1 m faintness at other wavelengths progress using radio observations to localize submm sources ivison 2000 smail @xmath2 of known 850@xmath1 m galaxies have no radio counterpart in deepest radio observations deep observations at other wavelengths crucial no other scuba field has extensive multiwavelength coverage of great observatories origins deep survey northern field to vla radio imaging deep hubble space telescope imaging chandra _ 2 msec image goods boasts deepest observations in infrared with irac and mips on spitzer space telescope home to large amount of scuba data taken by several groups combined into one large 850@xmath1 m ` super - map 'irac @xmath3 m mips @xmath4 m radio @xmath5ghz images @xmath6 arcsec black circle scuba position 7 arcsec radius smaller white circle submm counterpart submm galaxies faint other wavelengths deep mips data valuable identification identified 35 secure @xmath7 m sources goods - n submm super - map borys 2003 pope 2005 unique counterparts 94 per cent 33 out of 35 sources 26 out of 35 detected above @xmath8 morrison et al 1.4@xmath9ghz data counterparts detected with irac mips fig - wavelength images four submm sources counterparts - @xmath10 ratio redshift submm sources dashed curve template chary elbaz 2001 solid modified ce01 template extinction draine 2003 dash - dot curve sed arp220 mrk231 ir - luminous shaded region 9.7@xmath1 m silicate feature passes through 24@xmath1 m passband scuba spitzer select distant star - forming galaxies cosmic infrared background scuba sensitive to thermal dust emission ultra - luminous galaxies high redshift_ spitzer _ detects galaxies over wider range luminosity galaxy type left panel fig . shows mips flux distribution for @xmath7 m sample vertical dashed lines indicate 3@xmath11 limits of other _ spitzer _ surveys gto shallow survey bootes field swire gto deep survey shallow survey 25 per cent scuba galaxies mips depth of first look survey swire 40 per cent submm counterparts right panel fig @xmath10 ratio function of redshift for sample submm sources in goods - n lower @xmath10 ratios submm sources suggest higher levels extinction especially mid - ir than local ulirgs silicate absorption feature at 9.7@xmath1 m may 24@xmath1 m flux circles at high redshift ( @xmath12 ) triangles have unknown redshift crosses are sources contain agn indicated by presence hard x - rays right : composite sed for goods - n submm sources with spectroscopic redshifts irac radio photometry data plottedsolid curve modified ce01 model cool starburst galaxy applied additional extinction draine ( 2003 ) models minimize scatter dash - dot curve ce01 model same luminosity different peak wavelength template additional extinction poor fit mid - ir submm data points redshifts submm galaxies irac channels sampling rest - frame near - ir sensitive to direct emission stars if galaxies not dominated agn irac colours show @xmath13 m local peak @xmath14 stellar sed left irac - based colour - magnitide diagram @xmath15 function @xmath16 submm sources goods - n field galaxies redshift submm source indicated by symbol type @xmath17 clear transition irac colour due filters moving over stellar peak sources lack redshift information consistent with colours higher redshift submm sources no strong colour distinction sources with without hard x - ray detection former brighter at @xmath18 m right panel composite sed submm sources spectroscopic redshifts compared models conclusion high redshift submm galaxies different sed shapes similar luminositiesmajor contribution difference temperature dust means sed peaking at longer wavelengths best - fit submm sed peaks at @xmath19 m ( t@xmath20@xmath21k ) typical local ulirg template ce01 peaks at @xmath22 m (@xmath23k ) emphasizes strong selection effects locally high redshift knowledge local ulirgs not immune to selection effects dominated by results iras select galaxies warmer seds shorter wavelengths high redshift 850@xmath1 m imaging selects galaxies longer wavelengths comparing samples problematic flux redshift left axis estimated ir luminosity using data at 24@xmath1 m @xmath7 m @xmath5ghz estimated ir luminosity by fitting templates @xmath7 m flux redshift @xmath4 m m @xmath5ghz flux redshift fig . compares infrared luminosity estimated integrating from 81000@xmath1 m under best modified ce01 template filled circles squares denote submm sources with spectroscopic photometric redshifts crosses denote sources agn hard x - raystop axis shows star formation rate kennicutt 1998 templates local ulirgs fixed luminosity - temperature relation submm flux luminosity dramatic for less luminous submm objects lower redshifts 850@xmath1 m window samples further from ir sed peak median ir luminosity sample l@xmath24=@xmath25 corresponds sfr @xmath26m@xmath27 deep _ spitzer _ images re - reduction vla radio data secure counterparts large sample submm galaxies in goods - n 24@xmath1 m to 850@xmath1 m flux density ratio redshift low silicate absorption feature at 9.7@xmath1 m 24@xmath1 m flux - submm sources peak longer wavelengths local ulirgs strong selection effects incomplete census ulirg population ir luminosity @xmath28 m models submm flux overestimates @xmath0 spectral templates ulirg temperature - luminosity shorter _ spitzer _ wavelengths sample stellar bump at redshifts submm sources _ spitzer _ photometry provides model independent estimate redshift details in pope et al . ( 2006 ) conference organizerssupported natural sciences engineering research council canada spitzer space telescope legacy science program nasa contract 1224666 jpl caltech nasa contract 1407 alexander d.m 2003 126 , 539 barger a.j 2000 119 , 2092 borys c. 2003 mnras 344 , 385 2004 mnras 355 , 485 chapman s.c 2005 apj 622 , 772 chary r elbaz d. 2001 apj 556 , 562 draine b 2003 ara&a 41 , 241 egami e. 2004 apjs 154 , 130 giavalisco m. 600 , l93 holland w.s 1999 mnras 303 , 659 hughes d.h 1998 394 , 241 ivison r.j 2000 mnras 315 , 209 kennicutt r.c 1998 36 , 189 lilly s.j 1999 518 , 641 lonsdale c. 2004 apjs 154 , 54 pope a. 2005 mnras 358 , 149 2006 smail i.2000 apj 528 612 richards e.a 533 611
| 0.495626
| 3,072
| 1,599
|
, Saving $0.1 in GPT-4.
|
18,990
|
the atacama large millimeter / submillimeter array ( alma ) is an international effort to construct an instrument capable of matching the exquisite imaging properties of optical space telescopes at millimeter and submillimeter wavelengths .
alma science will transform our vision of the cold , dusty , and gaseous universe , from extrasolar planets to the youngest galaxies .
|
the atacama large millimeter / submillimeter array , alma , is the largest new facility for long wavelength astronomy .
it will be a large array of telescopes on a high , dry plain in the atacama desert of northern chile .
alma is a joint venture of the european southern observatory ( eso ) and spain , the national radio astronomy observatory ( nrao ) of associated universities inc . , funded by the u.s .
national science foundation with support from the national research council of canada , and the national institutes of natural sciences of japan with the academia sinica of taiwan , in cooperation with the republic of chile .
the total projected cost of alma , based on the rebaseline of the project completed in late 2005 , is @xmath01 billion current euros .
alma will consist of up to 64 12-m antennas , an additional 12 7-m antennas for mapping extended emission ( the atacama compact array ) , and 4 enhanced 12-m antennas capable of total power observing .
alma will ultimately cover all atmospheric windows at wavelengths from 3 mm to 350@xmath1 m .
alma is currently under construction at llano de chajnantor , near the historic town of san pedro de atacama .
it shares the site with several existing and future millimeter and submillimeter facilities .
construction highlights of the past year include the completion of a road from the operations support facility at 2900 m to the telescope site that wide enough to transport the antennas
. the array operations site technical building is nearly complete at the 5000 meter level ( 16,570 ft ) , and is the largest steel - frame building in the world at this altitude .
the alma test facility , an interferometer composed of two antenna prototypes , is being tested at the vla site .
antenna contracts have been awarded by the partners , and the first 12-m antenna is due in chile in 2007 .
alma will be a mighty leap forward in capability , with an order of magnitude gain in sensitivity over current millimeter arrays in the northern hemisphere , and the potential for two orders of magnitude gain in imaging resolution and fidelity , at a high , dry site suited to submillimeter observing .
the alma level - one design goals exemplify the types of projects that will drive this transformational instrument .
these goals are : 1 ) to detect co in an l * galaxy at z=3 ; 2 ) to image molecular lines in a protoplanetary disk with a resolution of 1 au out to a distance of 150 pc ; and 3 ) to obtain high fidelity imaging at 0@xmath2.1 to match hst , jwst , or ao imaging .
alma will allow us to study the gas in
normal " galaxies at redshifts at which galaxies should be significantly different from the present , in the gas ages . "
closer to home , alma will enable study of the birth of planetary systems , allowing imaging of the nearest protoplanetary disks with 1 au spatial resolution and sufficient spectral resolution to resolve motions on planet scales within a gaseous protoplanetary disk . the science capabilities of alma span all fields of astronomy .
* @xmath3 alma and planet formation . * at its highest resolution of 5mas , alma will easily detect thermal dust continuum emission from protoplanetary or debris disks out to the nearest star clusters at distances of 150 pc .
it will be able to image the thermal emission from very young jupiter - mass protoplanets out to 100 pc . * @xmath3 alma and molecular gas . * alma will image emission from lines of the over 140 molecules currently detected in space , a list that includes organic molecules of biological interest , including amino acids .
in addition to astrochemistry , studies of molecular abundances and excitation in interstellar clouds will provide diagnostics for interstellar physics , from shocks to gas dynamics , allowing the study of star formation and the feedback of star formation on molecular clouds . * @xmath3 alma and nearby galaxies .
* alma will image molecular clouds in galaxies to give us a new view of galactic structure , galaxy interactions and galaxy mergers , and star formation on galactic scales .
alma will probe the gas dynamics within a few parsecs of supermassive black holes in the centers of galaxies . at its highest resolution ,
alma can directly resolve structures of 50 au ( @xmath0600 schwarzschild radii ) in sgr a*. * @xmath3 alma and the solar system . *
the submillimeter array in hawaii recently detected the thermal emission from pluto and charon : while charon s surface is the expected 50 k for this distance from the sun , pluto s temperature is a chilly 38 k ; sublimation of surface ice is suspected . with its unprecedented spatial resolution and sensitivity
, alma will be able to image surface features on the outer planets , in addition to asteroids , dwarf planets and icy kuiper belt objects .
alma will easily detect and perhaps even resolve the most distant object known in the solar system , ub313 .
the composition , structure , and kinematics of planetary atmospheres will also be within alma s reach .
* @xmath3 alma and the distant universe . * alma will be a unique eye on the early universe .
actively star - forming galaxies , such as arp 220 , can be detected easily in co to z=10 .
images of gas and dust emission will allow us to study many properties of primeval galaxies , such as structure , dynamical masses , and gas masses . while the hubble deep field contains many nearby galaxies and few distant ones ,
the alma deep field is the opposite : to a given brightness , simulations show that galaxies beyond z=1.5 are a hundred times more numerous than nearby galaxies .
after the first antenna arrives in chile in 2007 , there will be an extended period of system integration , verification , and commissioning . early science , " when alma is first opened to the community ,
is scheduled to begin in 2010 , when the array has 1216 antennas .
alma reaches full capability , with all antennas and receiver bands , in 2012 .
more alma information and an alma cam are available at http://www.alma.cl .
|
atacama large millimeter submillimeter array largest new facility for long wavelength astronomy high dry plain atacama desert northern chile joint venture european southern observatory spain national radio astronomy observatory universities funded by u.s national science foundation national research council canada national institutes natural sciences japan academia sinica taiwan republic chile projected cost alma @xmath01 billion euros 64 12-m antennas additional 12 7-m antennas 4 enhanced 12-m antennas power all atmospheric windows at wavelengths 3 mm to 350@xmath1 m under construction at llano de chajnantor near historic town san pedro de atacama shares site with existing future millimeter submillimeter facilities construction road from operations support facility 2900 m to telescope site antennas array operations site technical building nearly complete at 5000 meter level largest steel - frame building at this altitude alma test facility two antenna prototypes tested at vla site antenna contracts awarded first 12-m antenna due in chile in 2007alma leap forward capability order magnitude gain sensitivity over millimeter arrays northern hemisphere potential for two orders magnitude gain imaging resolution fidelity high dry site submillimeter observing alma design goals detect co in l * galaxy at z=3 image molecular lines in protoplanetary disk resolution 1 au distance 150 pc obtain high fidelity imaging at 0@xmath2.1 match hst jwst ao imaging alma study gas in normal galaxies at redshifts alma study birth of planetary systems imaging nearest protoplanetary disks with 1 au spatial resolution sufficient spectral resolution motions planet scales gaseous protoplanetary disk science capabilities alma span all fields astronomy alma planet formation highest resolution 5mas thermal dust emission from protoplanetary disks nearest star clusters at distances 150 pc thermal emission from young jupiter - mass protoplanets to 100 pc alma molecular gas emission from over 140 molecules detected space organic molecules amino acids studies molecular abundances excitation in interstellar clouds diagnostics for interstellar physics gas dynamics study star formation feedback on molecular clouds@xmath3 alma nearby galaxies alma molecular clouds galaxies galactic structure interactions mergers star formation gas dynamics black holes centers highest resolution alma resolve structures of 50 au @xmath0600 schwarzschild radii sgr a alma solar system submillimeter array hawaii detected thermal emission from pluto charon charon s surface 50 k pluto s temperature 38 k sublimation surface ice suspected unprecedented spatial resolution alma surface features outer planets asteroids dwarf planets icy kuiper belt objects alma detect resolve distant object ub313 composition structure kinematics planetary atmospheres within alma s reach @xmath3 alma distant universe alma unique eye on early universe actively star - forming galaxies arp 220 detected in co to z=10 images gas dust emission study properties primeval galaxies structure dynamical masses gas masses hubble deep field nearby galaxies few distant alma deep field opposite galaxies beyond z=1.5 hundred times more numerous nearby after first antenna in chile 2007 extended period system integration verification commissioningearly science alma opened community begin 2010 array 1216 antennas reaches full capability all antennas receiver bands 2012 more alma information alma cam http://www.alma.cl
| 0.260683
| 1,319
| 654
|
, Saving $0.0 in GPT-4.
|
18,993
|
we report here preliminary results from a survey of nearby seyfert galaxies using the epic ccds on board _ xmm - newton_. the total sample consists of 28 seyfert galaxies , and constitute a well - defined , complete ( @xmath0@xmath112.5 mag ) , and volume - limited ( d@xmath222 mpc ) sample of seyfert galaxies in the northern ( @xmath3 ) hemisphere .
the survey has been initiated in june , 2001 , and we report here the results for the 6 objects analyzed so far , namely : ngc3185 , ngc3486 , ngc3941 , ngc4138 , ngc4565 , and ngc5033 . the main goal of this survey is to obtain a better and unbiased understanding of the `` typical '' seyfert x - ray spectrum ( e.g. the distribution of their absorption column density ) in the local universe .
this is crucial to verify the predictions and , thus , to validate unified models , and is a fundamental parameter of synthesis models for the x - ray background .
a companion poster ( paper ii : l. foschini et al . , these proceedings ) illustrates how this survey will also allow a comprehensive spectral study of the brightest ( highest - luminosity ) off - nuclear sources in the galaxies .
|
important emphasis in research on active galactic nuclei ( agns ) in recent years has been in the area of unified models ( e.g. antonucci 1993 ) .
these models try to explain the observed differences between broad ( seyfert 1s - like ) and narrow ( seyfert 2s - like ) optical emission - line agns by invoking obscuration ( from an optically and geometrically thick torus ) and viewing angle effects rather than intrinsic physical differences .
a privileged energy band for such studies is the hard ( e@xmath4 2 kev ) x - ray band , where continuum photons are less affected by absorption and where imprinted features ( e.g. the photoelectric absorption cut - off , the fluorescent fek line ) allow to probe the physics of the agns nuclear regions , and their surroundings . while there is increasing consensus on the validity of these models , at least for those that unify nearby `` classical '' seyferts , questions remain on the `` typical '' seyfert galaxy x - ray spectrum .
this is particularly true for lower - luminosity objects and for the detailed relationship between their x - ray versus optical appearance and classification . in particular ,
several open questions remain , such as whether the x - ray spectra of all nearby seyferts are consistent with unified models and whether the x - ray spectra of low - luminosity seyferts are consistent with that of higher luminosity ones . also , precise knowledge of the distribution of column densities and the geometry of the putative molecular torus , of the origin of fek emission lines , and of the shape of the x - ray luminosity function of local seyfert galaxies once extended to its fainter end , is still lacking .
answers to the above questions are also crucial to put tighter constraints on synthesis models of the xrb and to understand the evolution of `` seyfert - like '' agns with cosmic time ( e.g. comastri et al .
1995 , gilli et al .
these models usually assume the validity of unified models and suggest that a combination of unabsorbed ( seyfert 1-type ) and absorbed ( seyfert 2-type ) agns may account for most of the x - ray background ( xrb ) .
but in fact , major uncertainties remain in the assumed @xmath5 distributions , luminosity functions of both types of objects and their evolution with cosmic time . the definition of the spectral properties of a complete and , _ bona fide _
, unbiased sample of nearby seyfert galaxies is , thus , desired to address both the issues of unified models of agns and synthesis models of the xrb .
hard x - ray samples of nearby seyfert galaxies available to date ( e.g. from _ ginga _ , _ asca _ and _ bepposax _ ; smith & done 1996 , turner et al .
1998 , bassani et al .
199 ) have been essentially biased towards the most x - ray luminous , and less absorbed agns . moreover , the poor spatial resolution of the pre-_chandra _ and pre-_xmm - newton _
telescopes left unresolved issues such as a proper estimate of stellar / starburst processes and/or x - ray binaries contributions to the total x - ray emission of low - luminosity ( l@xmath6 @xmath1 10@xmath7erg / s ) seyfert galaxies .
significant improvements have been obtained by ho et al .
( 2001 ) using the acis ccds on board _ chandra _ , who can address for the first time the x - ray properties of llagns ( with 2 - 10 kev luminosities ranging from less than 10@xmath8 to 10@xmath9 erg / s ) in nearby seyferts , liners and liners / hii transition nuclei .
these authors detected a compact , pointlike nuclear source in @xmath1062% of their initial sample of 24 ( out of 41 ) nearby galaxies .
however , the brief `` snapshots '' exposures used in the chandra survey will make it difficult to obtain detailed spectral information at energies greater than 2 kev .
given the above arguments , we have initiated an _
xmm - newton _ x - ray survey of all known northern seyfert galaxies with d@xmath222 mpc using the revised - ames catalog of bright galaxies ( sandage & tamman 1981 ) spectroscopically classified by ho , filippenko & sargent ( 1997 ) according the classical definition of seyfert galaxies ( veilleux & osterbrock , 1987 ) .
the final sample contains 28 galaxies ( see table 1 ) and is the deepest and most complete local sample of seyfert galaxies .
the goal of this survey is to obtain a better , and unbiased , understanding of their `` typical '' x - ray spectrum .
this high - throughput ( especially for energies @xmath42 kev ) _ xmm - newton _ survey is complementary to the arcsecond - resolution _ chandra _ survey performed by l. ho , e.d .
feigelson , and collaborators .
our team has been awarded @xmath10 250 ks of epic guarantee time , and exposures of 5 , 10 , 15 and 20 ks ( with a typical value of 10 ks ) were requested in order to obtain at least @xmath10 1000 source counts - l@xmath11 correlation of serlemitsos et al .
( 1997 ) . ] . to date
, observations have been performed for about half of the galaxies , and data are available for 6 of them . here
we report on the preliminary results obtained for this subsample .
the data were processed and screened with the science analysis software ( sas ; version 5.2 ) using standard procedures .
the latest known calibration files and response matrices released by the epic team have been used .
data from mos1/2 and pn were combined in the spectral analysis .
@xmath12x - ray morphology class following the criteria given in ho et al .
this classification indicates 4 classes of x - ray sources where ( i ) the nucleus dominates the total x - ray emission ; ( ii ) the nucleus is comparable in brightness to off - nuclear sources in the galaxy ; ( iii ) the nucleus is embedded in diffuse emission ; and ( iv ) the nucleus is absent .
we are grateful to matteo guainazzi and silvano molendi for helpful discussions on data reduction procedures .
we gratefully acknowledge partial support funding from the italian space agency ( asi ) . this work is based on observations obtained with _ xmm - newton _ , an esa science mission with instruments and contributions directly funded by esa member states and the usa ( nasa ) .
this research has made use of the nasa / ipac extragalactic database ( ned ) which is operated by the jet propulsion laboratory , california institute of technology , under contract with the national aeronautics and space administration .
|
emphasis in research on active galactic nuclei unified models antonucci 1993 ) models explain differences between broad narrow optical emission - line agns obscuration viewing angle effects physical differences privileged energy band for is hard ( e@xmath4 2 kev ) x - ray band photons less affected by absorption imprinted features fluorescent fek line physics of agns nuclear regions increasing consensus on validity of models questions remain on typical seyfert galaxy x - ray spectrum for lower - luminosity objects relationship between x - ray versus optical appearance classification open questions remain x - ray spectra of all seyferts with unified models low - luminosity seyferts higher luminosity precise knowledge of distribution of column densities geometry of molecular torus origin of fek emission lines shape of x - ray luminosity function of local seyfert galaxies lacking answers crucial to constraints on synthesis models of xrb understand evolution of seyfert - like agns with cosmic time comastri et al 1995 gilli et al .models assume validity unified models suggest combination unabsorbed and absorbed agns account for x - ray background major uncertainties remain in assumed @xmath5 distributions luminosity functions of objects evolution with cosmic time definition of spectral properties of complete unbiased sample nearby seyfert galaxies desired to address issues unified models agns synthesis models xrb hard x - ray samples of nearby seyfert galaxies biased towards most x - ray luminous less absorbed agns poor spatial resolution of pre-_chandra pre- - newton telescopes left unresolved issues estimate of stellar / starburst processes x - ray binaries contributions to total x emission of low - luminosity seyfert galaxies improvements obtained by ho et al . 2001 using acis ccds x - ray properties of llagns with 2 - 10 kev luminosities less than to in nearby seyferts detected compact pointlike nuclear source in @xmath1062% of initial sample of 24 out of 41 nearby galaxiesbrief exposures in chandra survey difficult detailed spectral information at energies than 2 kev initiated xmm - newton x - ray survey of northern seyfert galaxies with d@xmath222 mpc using revised - ames catalog galaxies classified by ho filippenko sargent 1997 classical definition seyfert galaxies final sample contains 28 galaxies table 1 deepest complete local sample goal understanding of typical x - ray spectrum high - throughput @xmath42 kev survey complementary to - resolution chandra survey by ho feigelson collaborators team awarded @xmath10 250 ks epic guarantee time exposures of 5 10 15 20 ks requested obtain @xmath10 1000 source counts correlation serlemitsos et 1997 observations performed for half of galaxies data available for 6 on preliminary results for subsample data processed screened with science analysis software 5.2 standard procedures latest calibration files response matrices by epic team used data from mos1/2 and pn combined in spectral analysis @xmath12x - ray morphology class criteria ho et al .classification indicates 4 classes x - ray sources nucleus dominates emission comparable to off - nuclear sources embedded in diffuse emission iv absent grateful to matteo guainazzi silvano molendi for discussions data reduction procedures acknowledge partial support funding italian space agency work based on observations xmm - newton esa science mission funded by esa member states usa nasa research nasa / ipac extragalactic database operated jet propulsion laboratory california institute of technology contract national aeronautics space administration
| 0.262408
| 1,498
| 723
|
, Saving $0.0 in GPT-4.
|
19,018
|
@xcite presented a flexible and efficient method to model the stellar kinematics of anisotropic axisymmetric and spherical stellar systems .
the spherical formalism could be used to model the line - of - sight velocity second moments allowing for essentially arbitrary radial variations in the anisotropy and general luminous and total density profiles . here
we generalize the spherical formalism by providing the expressions for all three components of the projected second moments , including the two proper motion components
. a reference implementation is now included in the public jam package available at http://purl.org/cappellari/software . [ firstpage ] galaxies : elliptical and lenticular , cd galaxies : evolution galaxies : formation galaxies : kinematics and dynamics galaxies : structure
|
in @xcite we used the @xcite equations to derive the projected second velocity moments for an anisotropic axisymmetric or spherical stellar system for which both the luminous and total densities are described via the multi - gaussian expansion ( mge , @xcite ) .
we called the technique the jeans anisotropic modelling ( jam ) method and provided a reference software implementation ( in idl and python ) .
an implementation in the c language was provided by @xcite . in an addendum @xcite we gave explicit expression for the six projected second moments , including both proper motions and radial velocities , for the axisymmetric case ( see also @xcite ) .
all projected components can be written using a single numerical quadrature and without using special functions . in this short note
we do the same for the spherical case , namely we provide explicit expression for the three components of the projected second velocity moments .
we adopt identical notation and coordinates system as in @xcite , and we refer the reader to that paper for details and definitions .
we assume spherical symmetry and constant anisotropy for each individual mge component .
the jeans equation can then be written ( * ? ? ?
* equation 4.215 ) @xmath0 where @xmath1 for symmetry and we defined @xmath2 .
we use equation ( 19 ) of @xcite which provide the projection expressions for all three components of the velocity second moments , including the proper motions ( see also * ? ? ?
we then follow the same steps and definitions as @xcite to write all three projected second velocity moments as follows @xmath3 \ , { \mathrm{d}}r,\end{aligned}\ ] ] where ( i ) @xmath4 for the line - of - sight velocity ( ii ) @xmath5 for the radial proper motion , measured from the projected centre of the system , and ( iii ) @xmath6 for the tangential proper motion , respectively and we defined @xmath7 @xmath8 @xmath9 integrating by parts one of the two integrals disappears and all three projected second moments can still be written as in equation ( 42 ) of @xcite @xmath10 as shown in , when using the mge parametrization , the evaluation of this expression requires a single numerical quadrature and some special functions . for the line - of - sight component the expression for @xmath11 was given by equation ( 43 ) of @xcite rcl[eq : f_los ] _
los(w ) & = & ( see also * ? ? ?
* ) , where @xmath12 is the gamma function ( * ? ? ?
* equation 6.1.1 ) and @xmath13 is the incomplete beta function ( * ? ? ?
* equation 6.6.1 ) , for which efficient routines exist in virtually any language .
the corresponding expressions to use for the radial and tangential proper motion components are rcl[eq : f_pmr ] _
pmr(w ) & = & , @xmath14\!\!.\ ] ] specific expressions can be obtained for @xmath15 , where the @xmath13 function is divergent , but in real applications it is sufficient to perturb @xmath16 by an insignificant amount to avoid the singularity . in the isotropic limit
all three components become equal @xmath17 and reduces to equation ( 29 ) of @xcite .
here we apply the general spherical jeans solution with constant anisotropy to derive an actual solution for a stellar system in which both the luminous density and the total one are described by the mge parametrization . in this case the surface brightness @xmath18 , the luminosity density @xmath19 and the total density @xmath20 for each individual gaussian are given by @xcite @xmath21 @xmath22 @xmath23 the mass of a gaussian contained within the spherical radius @xmath24 is given by equation ( 49 ) of @xcite @xmath25,\ ] ] with @xmath26 the error function ( * ? ? ?
* equation 7.1.1 ) .
the projected second velocity moments for the whole mge model , summed over all the @xmath27 luminous and @xmath28 massive gaussians , for any of the three velocity second moment components , are still given by equation ( 50 ) of @xcite @xmath29\ !
{ \mathrm{d}}r,\ ] ] where @xmath30 is given by , @xmath31 is given by , and @xmath32 is obtained by replacing the @xmath16 parameter in ([eq : f_pmt ] ) with the anisotropy @xmath33 of each luminous gaussian component of the mge . the formalism presented in this section
was implemented in an updated version of the public jam package ( see footnote 1 ) .
profile . we used 20 gaussians and the mge_fit_1d routine to describe the profile in the range @xmath34 with a maximum relative error of about 0.2% .
the resulting mge model contains 99.998% of the analytic total mass . ] as a function of radius , normalized by the half - light radius @xmath35 , for a range of anisotropies @xmath16 , for spherical models with a central black hole mass @xmath36 of 0.5% of the total mass .
the _ top panel _ is for a @xcite @xmath37 surface brightness profile , while the _ bottom panel _ is for a ` cored ' luminosity density profile , with asymptotically constant nuclear density .
the three adopted anisotropies @xmath16 were chosen to correspond to axial ratios of the velocity ellipsoid of @xmath38 , 1 and @xmath39 respectively .
here @xmath4 , pmr or pmt for the line - of - sight , the radial or tangential proper motions respectively .
the presence of a core _ enhances _ the observable effects of @xmath16 variations and _ reduces _ the ability of the proper motions to measure @xmath16 , especially for @xmath40 .
this makes the determination of mass profiles more challenging in cored than in cusped luminosity profiles.,title="fig : " ] as a function of radius , normalized by the half - light radius @xmath35 , for a range of anisotropies @xmath16 , for spherical models with a central black hole mass @xmath36 of 0.5% of the total mass .
the _ top panel _ is for a @xcite @xmath37 surface brightness profile , while the _ bottom panel _ is for a ` cored ' luminosity density profile , with asymptotically constant nuclear density .
the three adopted anisotropies @xmath16 were chosen to correspond to axial ratios of the velocity ellipsoid of @xmath38 , 1 and @xmath39 respectively .
here @xmath4 , pmr or pmt for the line - of - sight , the radial or tangential proper motions respectively .
the presence of a core _ enhances _ the observable effects of @xmath16 variations and _ reduces _ the ability of the proper motions to measure @xmath16 , especially for @xmath40 .
this makes the determination of mass profiles more challenging in cored than in cusped luminosity profiles.,title="fig : " ] as an illustration of the general behaviour of the second moments , we used the python version of the mge_fit_1d one - dimensional fitting routine in the mge_fit_sectors package ( * ? ? ?
* see footnote 1 ) to obtain an accurate mge description of a @xcite @xmath37 profile ( ) .
we then used the spherical jam_sph_rms routine in the jam package ( see footnote 1 ) to calculate the predicted velocity second moments for different ( here constant ) anisotropies , using .
the model assumes that mass follows light except for the presence of a central black hole with mass @xmath41 , where @xmath28 is the total mass of the system .
the fractional value is the typical observed one from @xcite .
the resulting predicted second velocity moment profiles are shown in the top panel of .
the bottom panel is like the top one , for a ` cored ' profile @xmath42 with asymptotically constant luminosity density at small radii .
for the line - of - sight component , illustrates the well known mass - anisotropy degeneracy : the profile changes significantly at fixed @xmath36 . if the anisotropy is unknown , @xmath36 can not be measured from these spherical models . however , using proper motions one can constrain the anisotropy directly and consequently measure @xmath36 using the second velocity moments alone @xcite .
the bottom panel also shows that models are more challenging for more shallow inner profiles due to the reduced sensitivity of the ratio @xmath43 to @xmath16 variations . in all three components
are plotted in the same units as for the radial velocity . in a real application of the method ,
the velocities of the proper motion components need to be converted into proper motions units , using the distance of the system .
the distance is a free model parameter and this allows one to measure kinematical distances ( e.g. * ? ? ?
* ; * ? ? ?
* ; * ? ? ?
* ) . by assigning different anisotropies @xmath33 to the different gaussians
one can describe essentially arbitrary smooth radial variations of the anisotropy ( e.g. * ? ? ?
while , by using different gaussians for the luminous and total density , one can describe general dark halo profiles ( e.g. * ? ? ?
* ) . in practice ,
for spherical geometry , one can perform a high - accuracy mge fit to some parametric description of the dark and luminous profiles , using the mge_fit_1d fitting program of ( * ? ? ?
* see footnote 1 ) as shown in .
proper motion data have the fundamental advantage over the line - of - sight quantities that they allow one to break , using the velocity second moments alone , the mass - anisotropy degeneracy affecting the recovery of mass profiles in spherical systems @xcite .
the proposed formalism is becoming useful to model the growing number of proper motion data becoming available .
these are now being provided mainly by the hubble space telescope ( e.g. * ? ? ?
in the near future proper motion data for the milky way satellites will also be provided by the gaia spacecraft , while in the more distant future a major step forward in proper motion determinations will be made by euclid space mission .
i acknowledge support from a royal society university research fellowship .
this paper made use of matplotlib @xcite .
|
@xcite used equations projected second velocity moments anisotropic axisymmetric spherical stellar system luminous total densities described multi - gaussian expansion called technique jeans anisotropic modelling method provided reference software implementation idl python implementation c language @xcite addendum @xcite explicit expression six projected second moments proper motions radial velocities axisymmetric case projected components written single numerical quadrature without special functions same spherical case explicit expression three components projected second velocity moments identical notation coordinates system @xcite refer reader paper details definitions assume spherical symmetry constant anisotropy each mge component jeans equation written equation 4.215 ) @xmath0 @xmath1 symmetry defined @xmath2use equation ( 19 ) @xcite projection expressions three components velocity second moments including proper motions follow same steps definitions write three projected second velocity moments @xmath3 \mathrm{d}}r\end{aligned} @xmath4 line - of - sight velocity @xmath5 radial proper motion @xmath6 tangential proper motion defined @xmath7 @xmath8 @xmath9 integrating integrals disappears three projected second moments written equation ( 42 ) @xcite @xmath10 parametrization evaluation requires single numerical quadrature special functions line - of - sight component expression @xmath11 equation ( 43 ) @xcite rcl[eq : f_los ] _ los(w ) & = & @xmath12 gamma function @xmath13 incomplete beta function efficient routines exist any language corresponding expressions radial tangential proper motion components rcl[eq : f_pmr ] _ pmr(w ) & = & @xmath14 specific expressions @xmath15 @xmath13 function divergent perturb @xmath16 avoid singularity isotropic limit three components equal @xmath17 reduces equation ( 29 ) @xciteapply spherical jeans solution constant anisotropy solution stellar system luminous density total described by mge parametrization surface brightness luminosity density total density for each gaussian given by @xcite @xmath21 mass gaussian within spherical radius given by equation ( 49 ) @xcite @xmath25 @xmath26 error function equation 7.1.1 projected second velocity moments for mge model @xmath27 luminous massive gaussians given by equation ( 50 ) of @xcite @xmath29 @xmath30 @xmath31 @xmath32 obtained replacing @xmath16 parameter with anisotropy @xmath33 of each luminous gaussian component formalism implemented in updated version public jam package used 20 gaussians mge_fit_1d routine describe profile range @xmath34 maximum relative error 0.2% resulting mge model contains 99.998% analytic total mass function of radius normalized by half - light radius @xmath35 range of anisotropies central black hole mass 0.5% of total masstop panel @xcite @xmath37 surface brightness bottom panel cored luminosity density profile constant nuclear density three anisotropies @xmath16 correspond axial ratios velocity ellipsoid @xmath38 1 @xmath39 @xmath4 pmr pmt line - of - sight radial tangential motions presence core enhances @xmath16 variations reduces proper motions measure @xmath16 determination mass profiles challenging cored function radius normalized half - light radius @xmath35 range anisotropies @xmath16 spherical models central black hole mass @xmath36 0.5% total mass top panel @xcite @xmath37 surface brightness bottom panel cored luminosity density profile constant nuclear density three anisotropies @xmath16 correspond axial ratios velocity ellipsoid @xmath38 1 @xmath39 @xmath4 pmr pmt line - of - sight radial tangential proper motions presence core enhances effects @xmath16 variations reduces proper motions measure @xmath16 @xmath40 determination mass profiles challenging in cored cusped,title="fig : " illustration second moments used python version mge_fit_1d one - dimensional fitting routine mge_fit_sectors package accurate mge description @xcite @xmath37 profile used spherical jam_sph_rms routine package calculate predicted velocity second moments for different constant anisotropies model assumes mass follows light central black hole with mass @xmath41 @xmath28 total mass system value typical observed from @xcite resulting predicted second velocity moment profiles shown in top panel bottom panel cored profile @xmath42 constant luminosity density small radii line - of - sight component illustrates mass - anisotropy degeneracy profile changes at fixed @xmath36 anisotropy unknown @xmath36 not measured spherical models proper motions constrain anisotropy measure @xmath36 using second velocity moments alone @xcite bottom panel shows models challenging for shallow inner profiles reduced sensitivity ratio @xmath43 to @xmath16 variations three components plotted same units radial velocity velocities proper motion components converted into proper motions units using distance system distance free model parameter allows measure kinematical distancesassigning anisotropies @xmath33 to gaussians describe arbitrary radial variations * ? ? using different gaussians for luminous and total density describe dark halo profiles * ? ? ? * for spherical geometry high - accuracy mge fit to parametric description dark and luminous profiles using mge_fit_1d fitting program footnote 1 proper motion data advantage over line - of - sight quantities break velocity mass - anisotropy degeneracy affecting recovery mass profiles in spherical systems proposed formalism useful to model growing proper motion data provided by hubble space telescope future motion data for milky way satellites by gaia spacecraft by euclid space mission support from royal society university research fellowship paper matplotlib @xcite
| 0.34721
| 2,326
| 1,186
|
, Saving $0.1 in GPT-4.
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.