Exemple #1
0
    def _update_links(self):

        self.ni = ni(material=self._cal_dts['material'],
                     author=self._cal_dts['ni_author'],
                     temp=self._cal_dts['temp'],
                     )
        self.ni.update()

        self.vel_th_e, self.vel_th_h = Vel_th(
            material=self._cal_dts['material'],
            author=self._cal_dts['vth_author'],
            temp=self._cal_dts['temp']).update()
Exemple #2
0
    def _update_links(self):

        self.ni = ni(
            material=self._cal_dts['material'],
            author=self._cal_dts['ni_author'],
            temp=self._cal_dts['temp'],
        )
        self.ni.update()

        self.vel_th_e, self.vel_th_h = Vel_th(
            material=self._cal_dts['material'],
            author=self._cal_dts['vth_author'],
            temp=self._cal_dts['temp']).update()
    def _update_links(self):

        # setting downstream values, this should change from initalisation
        # to just updating through the update function
        self.Mob = Mob(material=self.cal_dts['material'],
                       author=self.cal_dts['mob_author'],
                       temp=self.cal_dts['temp'])
        self.ni = ni(material=self.cal_dts['material'],
                     author=self.cal_dts['nieff_author'],
                     temp=self.cal_dts['temp'])
        self.ion = Ion(material=self.cal_dts['material'],
                       author=self.cal_dts['ionis_author'],
                       temp=self.cal_dts['temp'])
Exemple #4
0
    def _update_links(self):

        # setting downstream values, this should change from initalisation
        # to just updating through the update function
        self.Mob = Mob(material=self._cal_dts['material'],
                       author=self._cal_dts['mob_author'],
                       temp=self._cal_dts['temp'])
        self.ni = ni(material=self._cal_dts['material'],
                     author=self._cal_dts['nieff_author'],
                     temp=self._cal_dts['temp'])
        self.ion = Ion(material=self._cal_dts['material'],
                       author=self._cal_dts['ionis_author'],
                       ni_author=self._cal_dts['nieff_author'],
                       temp=self._cal_dts['temp'])