예제 #1
0
 def compute_partials(self, inputs, partials):
     """
     Calculate and save derivatives. (i.e., Jacobian)
     """
     self.J1, self.J2 = computepositionrotdjacobian(self.n,
                                                    inputs['r_b2g_B'],
                                                    inputs['O_AB'])
예제 #2
0
    def jacobian(self, params, unknowns, resids):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        r_e2b_I = params['r_e2b_I']
        O_BI = params['O_BI']

        self.J1, self.J2 = computepositionrotdjacobian(self.n, r_e2b_I[3:, :],
                                                       O_BI)
예제 #3
0
파일: attitude.py 프로젝트: naylor-b/CADRE
    def jacobian(self, params, unknowns, resids):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        r_e2b_I = params['r_e2b_I']
        O_BI = params['O_BI']

        self.J1, self.J2 = computepositionrotdjacobian(self.n,
                                                       r_e2b_I[3:, :],
                                                       O_BI)
예제 #4
0
    def compute_partials(self, inputs, partials):
        """
        Calculate and save derivatives. (i.e., Jacobian)
        """
        r_e2b_I = inputs['r_e2b_I']
        O_BI = inputs['O_BI']

        self.J1, self.J2 = computepositionrotdjacobian(self.n, r_e2b_I[3:, :],
                                                       O_BI)
예제 #5
0
    def compute_partials(self, inputs, partials):
        """
        Calculate and save derivatives. (i.e., Jacobian)
        """
        r_e2b_I = inputs['r_e2b_I']
        O_BI = inputs['O_BI']

        self.J1, self.J2 = computepositionrotdjacobian(self.n,
                                                       r_e2b_I[3:, :],
                                                       O_BI)
예제 #6
0
파일: comm.py 프로젝트: naylor-b/CADRE
    def jacobian(self, params, unknowns, resids):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        self.J1, self.J2 = computepositionrotdjacobian(self.n, params['r_b2g_B'],
                                                       params['O_AB'])
예제 #7
0
파일: comm.py 프로젝트: JustinSGray/CADRE
    def linearize(self):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        self.J1, self.J2 = computepositionrotdjacobian(self.n, self.r_b2g_B,
                                                       self.O_AB)
예제 #8
0
 def compute_partials(self, inputs, partials):
     """
     Calculate and save derivatives. (i.e., Jacobian)
     """
     self.J1, self.J2 = computepositionrotdjacobian(self.n, inputs['r_b2g_B'],
                                                    inputs['O_AB'])
예제 #9
0
    def provideJ(self):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        self.J1, self.J2 = computepositionrotdjacobian(self.n,
                                                       self.r_e2b_I[3:, :],
                                                       self.O_BI)
예제 #10
0
    def provideJ(self):
        """ Calculate and save derivatives (i.e., Jacobian). """

        self.J1, self.J2 = computepositionrotdjacobian(self.n, self.r_b2g_B,
                                                       self.O_AB)
예제 #11
0
    def provideJ(self):
        """ Calculate and save derivatives (i.e., Jacobian). """

        self.J1, self.J2 = computepositionrotdjacobian(self.n, self.r_b2g_B,
                                                       self.O_AB)
예제 #12
0
파일: comm.py 프로젝트: shamsheersc19/CADRE
    def jacobian(self, params, unknowns, resids):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        self.J1, self.J2 = computepositionrotdjacobian(self.n,
                                                       params['r_b2g_B'],
                                                       params['O_AB'])
예제 #13
0
파일: sun.py 프로젝트: thearn/CADRE
    def linearize(self, params, unknowns, resids):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        self.J1, self.J2 = computepositionrotdjacobian(self.n, params['r_e2s_I'],
                                                  params['O_BI'])
예제 #14
0
    def provideJ(self):
        """ Calculate and save derivatives. (i.e., Jacobian) """

        self.J1, self.J2 = computepositionrotdjacobian(self.n,
                                                       self.r_e2b_I[3:, :],
                                                       self.O_BI)