From mansingtakale at gmail.com Sat May 1 08:21:43 2021 From: mansingtakale at gmail.com (mansing takale) Date: Sat, 1 May 2021 17:51:43 +0530 Subject: [SciPy-User] Fwd: PhD position in the Netherlands; solar energy/Python In-Reply-To: References: <2076294944.9931.1618395112339.JavaMail.bbuser@fgprd-309451-198615-app002> <481b3153-21e8-4450-8710-53f38b175af7n@googlegroups.com> Message-ID: Dear Sir, Thank you for the opportunity shared in my small group of researchers. I will circulate it among the wide circle of solar-energy research group Regards On Sat, May 1, 2021 at 2:02 AM Dr. Mark Alexander Mikofski PhD < mikofski at berkeley.edu> wrote: > Hello, sharing a PhD position opening at Utrecht in Netherlands. Read more > below... > > ---------- Forwarded message --------- > From: Mark Mikofski > Date: Fri, Apr 30, 2021, 12:29 PM > Subject: Fwd: PhD position in the Netherlands; solar energy/Python > To: Mark Alexander Mikofski > > > PhD positions with Wilfried van Sark at Utrecht Netherlands > > ---------- Forwarded message --------- > From: abedw... at googlemail.com > Date: Monday, April 19, 2021 at 9:22:00 AM UTC-7 > Subject: PhD position in the Netherlands; solar energy/Python > To: pvlib-python > > > > Hello all, > > I did my MSc with Wilfried at Utrecht (the Netherlands). He's a truly > wonderful mentor with an amazing and broad grasp of the knowledge. 10/10 > would recommend doing a PhD there if you or someone you know would like to > develop solar forecasting models. They are looking for pythonistas. > > All the best, > > Abed > > > ---------- Forwarded message --------- > From: dr. Wilfried van Sark - W.G.J.H.... at uu.nl > Date: Wed, Apr 14, 2021 at 4:11 AM > Subject: Master Energy Science: Looking for PhD/junior researchers > To: > > > Dear all, > > I am looking for talented and motivated junior researchers that would be > interested to work in two projects: > > 1) ROBUST project: this recently granted project is focused on > investigating options for flexibility in local electricity grids by using > vehicle-to-grid technology in neighborhoods in Utrecht and Arnhem. We > require experience with data analysis and simulation using Python. In this > project we collaborate with WeDriveSolar and TUDelft. We have funding for > at least 44 months available. > > 2) PVObs and SolFaSi projects. Both projects deal with photovoltaic > performance and forecasting. The PVObs project aims to create a large > database of PV systems in the Netherlands in order to assess their > performance and from that determine with better accuracy the contribution > of PV to the national electricity demand. Parnters in this project are CBS > and SunData. > The SolFaSi project aims to develop PV forecasting at high time and > spatial resolutions using all-sky imagers (aka cloud cameras). We will > install three cameras at the UU campus and one at KNMI. This network allows > to construct a moving shadow field over the campus. This should be > correlated with the power generation of the 4000+ PV panels at campus > buildings. We require experience with (big) data analysis and simulation > using Python. We have funding for 24 months available. > > If you are interested, or if you know someone who may be interested, > please send me a mail at w.g.j.h.... at uu.nl > > best regards > > Wilfried > > > > _______________________________________________ > SciPy-User mailing list > SciPy-User at python.org > https://mail.python.org/mailman/listinfo/scipy-user > -- Sincerely Yours*,* *Dr. Mansing V. Takale*, Assistant Professor, Department of Physics, Shivaji University, Kolhapur-416004 India (M.S.) Contact: +91-9673041222 +91-8459483433 -------------- next part -------------- An HTML attachment was scrubbed... URL: From charlesr.harris at gmail.com Mon May 10 11:52:47 2021 From: charlesr.harris at gmail.com (Charles R Harris) Date: Mon, 10 May 2021 09:52:47 -0600 Subject: [SciPy-User] NumPy 1.20.3 release Message-ID: Hi All, On behalf of the NumPy team I am pleased to announce the release of NumPy 1.20.3. NumPy 1,20.3 is a bugfix release containing several fixes merged to the main branch after the NumPy 1.20.2 release. The Python versions supported for this release are 3.7-3.9. Wheels can be downloaded from PyPI ; source archives, release notes, and wheel hashes are available on Github . Linux users will need pip >= 0.19.3 in order to install manylinux2010 and manylinux2014 wheels. *Contributors* A total of 7 people contributed to this release. People with a "+" by their names contributed a patch for the first time. - Anne Archibald - Bas van Beek - Charles Harris - Dong Keun Oh + - Kamil Choudhury + - Sayed Adel - Sebastian Berg *Pull requests merged* A total of 15 pull requests were merged for this release. - #18763: BUG: Correct ``datetime64`` missing type overload for ``datetime.date``... - #18764: MAINT: Remove ``__all__`` in favor of explicit re-exports - #18768: BLD: Strip extra newline when dumping gfortran version on MacOS - #18769: BUG: fix segfault in object/longdouble operations - #18794: MAINT: Use towncrier build explicitly - #18887: MAINT: Relax certain integer-type constraints - #18915: MAINT: Remove unsafe unions and ABCs from return-annotations - #18921: MAINT: Allow more recursion depth for scalar tests. - #18922: BUG: Initialize the full nditer buffer in case of error - #18923: BLD: remove unnecessary flag ``-faltivec`` on macOS - #18924: MAINT, CI: treats _SIMD module build warnings as errors through... - #18925: BUG: for MINGW, threads.h existence test requires GLIBC > 2.12 - #18941: BUG: Make changelog recognize gh- as a PR number prefix. - #18948: REL, DOC: Prepare for the NumPy 1.20.3 release. - #18953: BUG: Fix failing mypy test in 1.20.x. Cheers, Charles Harris -------------- next part -------------- An HTML attachment was scrubbed... URL: From hernan.grecco at gmail.com Tue May 11 14:53:34 2021 From: hernan.grecco at gmail.com (Hernan Grecco) Date: Tue, 11 May 2021 15:53:34 -0300 Subject: [SciPy-User] ANN: rvmath 0.1 Message-ID: Hi, I am writing to announce the first release of rvmath. Briefly, it is a thin wrapper around scipy stats module that allows you to write and evaluate math expressions involving random variables. >>> import rvmath as rvm >>> x = rvm.uniform() >>> y = rvm.norm() >>> z = x + y >>> print(z.rvs(3)) Being built on top of SciPy, all continuous distributions available there are also available in this package (with the same options). NumPy functions and ufuncs are also supported out of the box. You can check the code and README: https://github.com/hgrecco/rvmath best, Hern?n -------------- next part -------------- An HTML attachment was scrubbed... URL: From andyfaff at gmail.com Wed May 12 03:53:03 2021 From: andyfaff at gmail.com (Andrew Nelson) Date: Wed, 12 May 2021 17:53:03 +1000 Subject: [SciPy-User] ANN: rvmath 0.1 In-Reply-To: References: Message-ID: On Wed, 12 May 2021, 04:54 Hernan Grecco, wrote: > Hi, > > I am writing to announce the first release of rvmath. Briefly, it is a > thin wrapper around scipy stats module that allows you to write and > evaluate math expressions involving random variables. > > >>> import rvmath as rvm > >>> x = rvm.uniform() > >>> y = rvm.norm() > >>> z = x + y > >>> print(z.rvs(3)) > > Being built on top of SciPy, all continuous distributions available there > are also available in this package (with the same options). NumPy functions > and ufuncs are also supported out of the box. > Can rvmath deal with convolutions of distributions? > -------------- next part -------------- An HTML attachment was scrubbed... URL: From hernan.grecco at gmail.com Wed May 12 13:17:51 2021 From: hernan.grecco at gmail.com (Hernan Grecco) Date: Wed, 12 May 2021 14:17:51 -0300 Subject: [SciPy-User] ANN: rvmath 0.1 In-Reply-To: References: Message-ID: Hi Andrew, I have been asked this question in two different ways. On one side the sum of two or more independent random variables is the convolution of their individual distribution. This is the example shown in the announcement (x and y are uniform and normal distribution respectively; what would have been written mathematically as `x ~ rvm.uniform()` and `y ~ rvm.uniform`) But other people asked me if you can use one random variable as a parameter of another. For example, the realization of a normal random variable is the scale of another one. I have a working version of this on my local repo. I am still not completely happy with the implementation but works. I will test it a little bit more, commit it and push it. Does this answer your question? best, Hernan best, Hern?n On Wed, May 12, 2021 at 4:53 AM Andrew Nelson wrote: > > > On Wed, 12 May 2021, 04:54 Hernan Grecco, wrote: > >> Hi, >> >> I am writing to announce the first release of rvmath. Briefly, it is a >> thin wrapper around scipy stats module that allows you to write and >> evaluate math expressions involving random variables. >> >> >>> import rvmath as rvm >> >>> x = rvm.uniform() >> >>> y = rvm.norm() >> >>> z = x + y >> >>> print(z.rvs(3)) >> >> Being built on top of SciPy, all continuous distributions available there >> are also available in this package (with the same options). NumPy functions >> and ufuncs are also supported out of the box. >> > > > Can rvmath deal with convolutions of distributions? > >> _______________________________________________ > SciPy-User mailing list > SciPy-User at python.org > https://mail.python.org/mailman/listinfo/scipy-user > -------------- next part -------------- An HTML attachment was scrubbed... URL: From charlesr.harris at gmail.com Mon May 24 13:12:59 2021 From: charlesr.harris at gmail.com (Charles R Harris) Date: Mon, 24 May 2021 11:12:59 -0600 Subject: [SciPy-User] NumPy 1.21.0rc1 has been released. Message-ID: Hi All, On behalf of the NumPy team I am pleased to announce the release of NumPy 1.21.0rc1. The highlights are - continued SIMD work covering more functions and platforms, - initial work on the new dtype infrastructure and casting, - improved documentation, - improved annotations, - the new ``PCG64DXSM`` bitgenerator for random numbers. This NumPy release is the result of 561 merged pull requests contributed by 171 people. The Python versions supported for this release are 3.7-3.9, support for Python 3.10 will be added after Python 3.10 is released. Wheels can be downloaded from PyPI ; source archives, release notes, and wheel hashes are available on Github . Linux users will need pip >= 0.19.3 in order to install manylinux2010 and manylinux2014 wheels. *Contributors* A total of 171 people contributed to this release. People with a "+" by their names contributed a patch for the first time. - @8bitmp3 + - @DWesl + - @Endolith - @Illviljan + - @Lbogula + - @Lisa + - @Patrick + - @Scian + - @h-vetinari + - @h6197627 + - @jbCodeHub + - @legoffant + - @sfolje0 + - @tautaus + - @yetanothercheer + - Abhay Raghuvanshi + - Adrian Price-Whelan + - Aerik Pawson + - Agbonze Osazuwa + - Aitik Gupta + - Al-Baraa El-Hag - Alex Henrie - Alexander Hunt + - Aliz? Papp + - Allan Haldane - Amarnath1904 + - Amrit Krishnan + - Andras Deak - AngelGris + - Anne Archibald - Anthony Vo + - Antony Lee - Atharva-Vidwans + - Ayush Verma + - Bas van Beek - Bharat Raghunathan - Bhargav V + - Brian Soto - Carl Michal + - Charles Harris - Charles Stern + - Chiara Marmo + - Chris Barnes + - Chris Vavaliaris - Christina Hedges + - Christoph Gohlke - Christopher Dahlin + - Christos Efstathiou + - Chunlin Fang - Constanza Fierro + - Daniel Evans + - Daniel Montes + - Dario Mory + - David Carlier + - David Stansby - Deepyaman Datta + - Derek Homeier - Dong Keun Oh + - Dylan Cutler + - Eric Larson - Eric Wieser - Eva Jau + - Evgeni Burovski - FX Coudert + - Faris A Chugthai + - Filip Ter + - Filip Trojan + - Fran?ois Le Lay + - Ganesh Kathiresan - Giannis Zapantis + - Giulio Procopio + - Greg Lucas + - Hollow Man + - Holly Corbett + - Inessa Pawson - Isabela Presedo-Floyd - Ismael Jimenez + - Isuru Fernando - Jakob Jakobson - James Gerity + - Jamie Macey + - Jasmin Classen + - Jody Klymak + - Joseph Fox-Rabinovitz - J?rome Eertmans + - Kamil Choudhury + - Kasia Leszek + - Keller Meier + - Kevin Sheppard - Kulin Seth + - Kumud Lakara + - Laura Kopf + - Laura Martens + - Leo Singer + - Leonardus Chen + - Lima Tango + - Lumir Balhar + - Maia Kaplan + - Mainak Debnath + - Marco Aur?lio da Costa + - Marta Lemanczyk + - Marten van Kerkwijk - Mary Conley + - Marysia Winkels + - Mateusz Sok?? + - Matt Haberland - Matt Hall + - Matt Ord + - Matthew Badin + - Matthias Bussonnier - Matthias Geier - Matti Picus - Mat?as R?os + - Maxim Belkin + - Melissa Weber Mendon?a - Meltem Eren Copur + - Michael Dubravski + - Michael Lamparski - Michal W. Tarnowski + - Micha? G?rny + - Mike Boyle + - Mike Toews - Misal Raj + - Mitchell Faas + - Mukulikaa Parhari + - Neil Girdhar + - Nicholas McKibben + - Nico Schl?mer - Nicolas Hug + - Nilo Kruchelski + - Nirjas Jakilim + - Ohad Ravid + - Olivier Grisel - Pamphile ROY + - Panos Mavrogiorgos + - Patrick T. Komiske III + - Pearu Peterson - Raghuveer Devulapalli - Ralf Gommers - Ra?l Mont?n Pinillos + - Rin Arakaki + - Robert Kern - Rohit Sanjay - Roman Yurchak - Ronan Lamy - Ross Barnowski - Ryan C Cooper - Ryan Polley + - Ryan Soklaski - Sabrina Simao + - Sayed Adel - Sebastian Berg - Shen Zhou + - Stefan van der Walt - Sylwester Arabas + - Takanori Hirano - Tania Allard + - Thomas J. Fan + - Thomas Orgis + - Tim Hoffmann - Tomoki, Karatsu + - Tong Zou + - Touqir Sajed + - Tyler Reddy - Wansoo Kim - Warren Weckesser - Weh Andreas + - Yang Hau - Yashasvi Misra + - Zolboo Erdenebaatar + - Zolisa Bleki Cheers, Charles Harris -------------- next part -------------- An HTML attachment was scrubbed... URL: