Home
last modified time | relevance | path

Searched refs:esine (Results 1 – 25 of 177) sorted by relevance

12345678

/dports/misc/libpredict/libpredict-2.0.0/src/
H A Dsgp4.c124 u, sinu, cosu, betal, rfdot, rdot, r, pl, elsq, esine, ecose, epw, in sgp4_predict() local
196 esine=temp3-temp4; in sgp4_predict()
202 rdot=XKE*sqrt(a)*esine*temp1; in sgp4_predict()
207 cosu=temp2*(cosepw-axn+ayn*esine*temp3); in sgp4_predict()
208 sinu=temp2*(sinepw-ayn-axn*esine*temp3); in sgp4_predict()
H A Dsdp4.c123 cosnok, cosu, cosuk, ecose, elsq, epw, esine, pl, in sdp4_predict() local
201 esine=temp3-temp4; in sdp4_predict()
207 rdot=XKE*sqrt(a)*esine*temp1; in sdp4_predict()
212 cosu=temp2*(cosepw-axn+ayn*esine*temp3); in sdp4_predict()
213 sinu=temp2*(sinepw-ayn-axn*esine*temp3); in sdp4_predict()
/dports/astro/py-pykep/pykep-2.6/src/third_party/cspice/
H A Ddpspce.c47 static doublereal epoch, ecose, aycof, esine, a3ovk2, tempa, tempe, bstar, in dpspce_() local
700 esine = temp3 - temp4; in dpspce_()
706 rdot = xke * sqrt(a) * esine * temp1; in dpspce_()
711 cosu = temp2 * (cosepw - axn + ayn * esine * temp3); in dpspce_()
712 sinu = temp2 * (sinepw - ayn - axn * esine * temp3); in dpspce_()
H A Dev2lin.c47 static doublereal epoch, ecose, aycof, delmo, esine, a3ovk2, tcube, cosik, in ev2lin_() local
1226 esine = temp3 - temp4; in ev2lin_()
1232 rdot = ke * temp1 * sqrt(a) * esine; in ev2lin_()
1237 cosu = temp2 * (cosepw - axn + ayn * esine * temp3); in ev2lin_()
1238 sinu = temp2 * (sinepw - ayn - axn * esine * temp3); in ev2lin_()
H A Dzzsgp4.c75 doublereal ecose, epoch, esine, etasq, inclm; in zzsgp4_0_() local
1694 esine = axnl * sineo1 - aynl * coseo1; in zzsgp4_0_()
1707 rdotl = sqrt(am) * esine / rl; in zzsgp4_0_()
1710 temp = esine / (betal + 1.); in zzsgp4_0_()
/dports/astro/pykep/pykep-2.6/src/third_party/cspice/
H A Ddpspce.c47 static doublereal epoch, ecose, aycof, esine, a3ovk2, tempa, tempe, bstar, in dpspce_() local
700 esine = temp3 - temp4; in dpspce_()
706 rdot = xke * sqrt(a) * esine * temp1; in dpspce_()
711 cosu = temp2 * (cosepw - axn + ayn * esine * temp3); in dpspce_()
712 sinu = temp2 * (sinepw - ayn - axn * esine * temp3); in dpspce_()
H A Dev2lin.c47 static doublereal epoch, ecose, aycof, delmo, esine, a3ovk2, tcube, cosik, in ev2lin_() local
1226 esine = temp3 - temp4; in ev2lin_()
1232 rdot = ke * temp1 * sqrt(a) * esine; in ev2lin_()
1237 cosu = temp2 * (cosepw - axn + ayn * esine * temp3); in ev2lin_()
1238 sinu = temp2 * (sinepw - ayn - axn * esine * temp3); in ev2lin_()
H A Dzzsgp4.c75 doublereal ecose, epoch, esine, etasq, inclm; in zzsgp4_0_() local
1694 esine = axnl * sineo1 - aynl * coseo1; in zzsgp4_0_()
1707 rdotl = sqrt(am) * esine / rl; in zzsgp4_0_()
1710 temp = esine / (betal + 1.); in zzsgp4_0_()
/dports/astro/libgal/libgal-0.5.0/sgp4/
H A Dgal_sgp4.c113 ep , esine , argpm , argpp , argpdf , pl , mrt = 0.0, in gal_sgp4() local
373 esine = axnl *sineo1 - aynl * coseo1 ; in gal_sgp4()
381 rdotl = sqrt ( am ) * esine / rl ; in gal_sgp4()
384 temp = esine / ( 1.0 + betal ) ; in gal_sgp4()
/dports/astro/xplanet/xplanet-1.3.1/src/libsgp4sdp4/
H A Dsgp4sdp4.c33 elsq,esine,ecose,epw,cosepw,x1m5th,xhdot1,tfour, in SGP4() local
201 esine = temp3-temp4; in SGP4()
207 rdot = xke*sqrt(a)*esine*temp1; in SGP4()
212 cosu = temp2*(cosepw-axn+ayn*esine*temp3); in SGP4()
213 sinu = temp2*(sinepw-ayn-axn*esine*temp3); in SGP4()
274 cosnok,cosu,cosuk,ecose,elsq,epw,esine,pl,theta4, in SDP4() local
427 esine = temp3-temp4; in SDP4()
433 rdot = xke*sqrt(a)*esine*temp1; in SDP4()
438 cosu = temp2*(cosepw-axn+ayn*esine*temp3); in SDP4()
439 sinu = temp2*(sinepw-ayn-axn*esine*temp3); in SDP4()
/dports/astro/pykep/pykep-2.6/src/third_party/libsgp4/
H A DSGP4.cpp425 double esine = 0.0; in CalculateFinalPositionVelocity() local
438 esine = axn * sinepw - ayn * cosepw; in CalculateFinalPositionVelocity()
440 double f = capu - epw + esine; in CalculateFinalPositionVelocity()
462 delta_epw = f / (fdot + 0.5 * esine * delta_epw); in CalculateFinalPositionVelocity()
483 const double rdot = kXKE * sqrt(a) * esine * temp31; in CalculateFinalPositionVelocity()
488 const double cosu = temp32 * (cosepw - axn + ayn * esine * temp33); in CalculateFinalPositionVelocity()
489 const double sinu = temp32 * (sinepw - ayn - axn * esine * temp33); in CalculateFinalPositionVelocity()
/dports/astro/py-pykep/pykep-2.6/src/third_party/libsgp4/
H A DSGP4.cpp425 double esine = 0.0; in CalculateFinalPositionVelocity() local
438 esine = axn * sinepw - ayn * cosepw; in CalculateFinalPositionVelocity()
440 double f = capu - epw + esine; in CalculateFinalPositionVelocity()
462 delta_epw = f / (fdot + 0.5 * esine * delta_epw); in CalculateFinalPositionVelocity()
483 const double rdot = kXKE * sqrt(a) * esine * temp31; in CalculateFinalPositionVelocity()
488 const double cosu = temp32 * (cosepw - axn + ayn * esine * temp33); in CalculateFinalPositionVelocity()
489 const double sinu = temp32 * (sinepw - ayn - axn * esine * temp33); in CalculateFinalPositionVelocity()
/dports/comms/gpredict/gpredict-2.2.1/src/sgpsdp/
H A Dsgp4sdp4.c30 elsq,esine,ecose,epw,cosepw,x1m5th,xhdot1,tfour, in SGP4() local
212 esine = temp3 - temp4; in SGP4()
218 rdot = xke * sqrt (a) * esine * temp1; in SGP4()
223 cosu = temp2 * (cosepw - axn + ayn * esine * temp3); in SGP4()
224 sinu = temp2 * (sinepw - ayn - axn * esine * temp3); in SGP4()
294 cosnok,cosu,cosuk,ecose,elsq,epw,esine,pl,theta4, in SDP4() local
456 esine = temp3 - temp4; in SDP4()
462 rdot = xke * sqrt (a) * esine * temp1; in SDP4()
467 cosu = temp2 * (cosepw - axn + ayn * esine * temp3); in SDP4()
468 sinu = temp2 * (sinepw - ayn - axn * esine * temp3); in SDP4()
/dports/sysutils/webmin/webmin-1.981/ldap-server/lang/
H A Dfi.auto134 browser_clone=Klooni tämä esine.
170 oadd_base=Vanhempi esine DN
171 oadd_dn=Uusi esine DN
307 eacl_base=vain tämä esine
/dports/x11-fonts/font-manager/font-manager-0.8.7/help/tr/
H A Dtr.po299 "list-add-symbolic.svg\"/> </gui> öğesine tıklayın."
347 "list-remove-symbolic.svg\"/> </gui> öğesine tıklayın."
382 "list-remove-symbolic.svg\"/> </gui> öğesine tıklayın."
509 "\"media/list-add-symbolic.svg\"/> </gui> öğesine tıklayın"
602 "\"media/list-remove-symbolic.svg\"/> </gui> öğesine tıklayın"
616 msgstr "<gui style=\"button\">Sil</gui> öğesine tıklayın"
711 "preferences-system-symbolic.svg\"/> </gui> öğesine tıklayarak <app>Yazı Tipi "
727 "öğesine tıklayın"
752 "öğesine tıklayın"
767 "\"media/preferences-system-symbolic.svg\"/> </gui> öğesine tıklayarak "
/dports/astro/p5-Astro-satpass/Astro-satpass-0.122/lib/Astro/Coord/ECI/
H A DTLE.pm2890 my $esine = $axnsl * $sineo1 - $aynsl * $coseo1;
2898 my $rdot = SGP_XKE * sqrt ($a) / $r * $esine;
2900 my $temp = $esine / (1 + sqrt (1 - $el2));
3243 my $esine = $temp3 - $temp4;
3249 my $rdot = SGP_XKE * sqrt($a) * $esine * $temp1;
3528 my $esine = $temp3 - $temp4;
3534 my $rdot = SGP_XKE * sqrt ($a) * $esine * $temp1;
6699 $emsq, $ecose, $el2, $eo1, $eccp, $esine, $argpm, $argpp,
6874 $esine= $axnl*$sineo1-$aynl*$coseo1;
6883 $rdotl= sqrt($am)*$esine/$rl;
[all …]
/dports/editors/texstudio/texstudio-4.1.2/utilities/dictionaries/
H A Dtr_TR-Turkish.aff3814 SFX 1269 0 mişçesine .
8029 SFX 2674 0 ymişçesine .
8284 SFX 2759 0 eymişçesine .
9691 SFX 3228 0 irmişçesine .
9904 SFX 3299 0 iymişçesine .
11131 SFX 3708 0 müşçesine .
12304 SFX 4099 0 rmişçesine .
13549 SFX 4514 0 nmişçesine .
14572 SFX 4855 0 ymüşçesine .
16051 SFX 5348 0 zmişçesine .
[all …]
/dports/astro/kstars/kstars-3.5.6/kstars/skyobjects/
H A Dsatellite.cpp718 … ecose, el2, eo1, ep, esine, argpm, argpp, argpdf, pl, in sgp4() local
1059 esine = axnl * sineo1 - aynl * coseo1; in sgp4()
1070 rdotl = sqrt(am) * esine / rl; in sgp4()
1073 temp = esine / (1.0 + betal); in sgp4()
/dports/textproc/opensp/OpenSP-1.5.2/po/
H A Dtr.po750 "bir PI öğesine bir başvuruya sadece PI'yi içeren bağlam içinde izin verilir"
756 "bir CDATA veya SDATA öğesine başvuruya sadece bir veri karakteri içeren bir "
763 "bir alt belge öğesine ya da bir dış veri öğesine bir başvuruya sadece bir "
770 "bir alt belge öğesine ya da bir dış veri öğesine bir başvuruya "
778 "bir PI öğesine bir başvuruya değiştirilebilir karakter verisi içinde izin "
1585 msgstr "%1 öğesine başvuru öntanımlı öğe kullanıyor"
1799 msgstr "sistem belirteci üretilemeyen için %1 öğesine başvuru"
1824 msgstr "%1 öğesine daha önceki başvuru öntanımlı öğeyi kullanmış"
2058 msgstr "harici veri öğesine başvuru"
2093 msgstr "sözcük ayracındaki parametre öğesine başvuru dahili alt küme içinde"
[all …]
/dports/print/lout/lout-3.40/hyph/
H A Dfinnish.lh220 uu1e2 % puu-esine
/dports/irc/py-limnoria/Limnoria-master-2019-09-08/plugins/Games/locales/
H A Dfi.po108 "vastauksen paremmin kuin minä.|Vastaus on var-- oooh! kiiltävä esine!"
/dports/graphics/kphotoalbum/kphotoalbum-5.8.1/po/et/docs/kphotoalbum/
H A Dimportexport.docbook135 …ina, mistõttu neile on siin ka vaste välja pakutud. Mitte mingil kujul ei esine minu andmebaasis a…
/dports/astro/marble/marble-21.12.3/src/3rdparty/sgp4/
H A Dsgp4unit.cpp1703 ep , esine , argpm, argpp , argpdf, pl, mrt = 0.0, in sgp4() local
1899 esine = axnl*sineo1 - aynl*coseo1; in sgp4()
1912 rdotl = sqrt(am) * esine/rl; in sgp4()
1915 temp = esine / (1.0 + betal); in sgp4()
/dports/astro/stellarium/stellarium-0.21.3/plugins/Satellites/src/gsatellite/
H A Dsgp4unit.cpp1658 ep , esine , argpm, argpp , argpdf, pl , mrt , in sgp4() local
1851 esine = axnl*sineo1 - aynl*coseo1; in sgp4()
1864 rdotl = std::sqrt(am) * esine/rl; in sgp4()
1867 temp = esine / (1.0 + betal); in sgp4()
/dports/comms/predict/predict-2.2.7/
H A Dpredict.c772 u, sinu, cosu, betal, rfdot, rdot, r, pl, elsq, esine, ecose, epw, in SGP4() local
948 esine=temp3-temp4; in SGP4()
954 rdot=xke*sqrt(a)*esine*temp1; in SGP4()
959 cosu=temp2*(cosepw-axn+ayn*esine*temp3); in SGP4()
960 sinu=temp2*(sinepw-ayn-axn*esine*temp3); in SGP4()
1528 cosnok, cosu, cosuk, ecose, elsq, epw, esine, pl, theta4, rdot, in SDP4() local
1678 esine=temp3-temp4; in SDP4()
1684 rdot=xke*sqrt(a)*esine*temp1; in SDP4()
1689 cosu=temp2*(cosepw-axn+ayn*esine*temp3); in SDP4()
1690 sinu=temp2*(sinepw-ayn-axn*esine*temp3); in SDP4()

12345678